diff options
author | Jason Molenda <crash@cygnus> | 1996-06-26 03:22:34 +0000 |
---|---|---|
committer | Jason Molenda <crash@cygnus> | 1996-06-26 03:22:34 +0000 |
commit | 445289655a410133fd7009e02b5a7b7ee5853b28 (patch) | |
tree | 318beca9f2c89d8633675691d0703b82b309efd1 /sim | |
parent | 31884e281b5f16f7a544e6ca24d4174012cc55e9 (diff) | |
download | gdb-445289655a410133fd7009e02b5a7b7ee5853b28.zip gdb-445289655a410133fd7009e02b5a7b7ee5853b28.tar.gz gdb-445289655a410133fd7009e02b5a7b7ee5853b28.tar.bz2 |
* Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
(docdir): Removed.
* configure.in (AC_PREREQ): autoconf 2.5 or higher.
(AC_PROG_INSTALL): Added.
* configure: Rebuilt.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/arm/configure.in | 3 | ||||
-rw-r--r-- | sim/h8300/ChangeLog | 21 | ||||
-rw-r--r-- | sim/h8300/configure.in | 3 |
3 files changed, 25 insertions, 2 deletions
diff --git a/sim/arm/configure.in b/sim/arm/configure.in index 0eb7b73..a1532ea 100644 --- a/sim/arm/configure.in +++ b/sim/arm/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.3)dnl +AC_PREREQ(2.5)dnl AC_INIT(Makefile.in) AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..) @@ -9,6 +9,7 @@ AC_ARG_PROGRAM . ${srcdir}/../../bfd/configure.host AC_PROG_CC +AC_PROG_INSTALL AC_SUBST(CFLAGS) AC_SUBST(HDEFINES) AR=${AR-ar} diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index cf5e61e..c28ae44 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,24 @@ +Wed Jun 26 12:20:56 1996 Jason Molenda (crash@godzilla.cygnus.co.jp) + + * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir, + INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values. + (docdir): Removed. + * configure.in (AC_PREREQ): autoconf 2.5 or higher. + (AC_PROG_INSTALL): Added. + * configure: Rebuilt. + +start-sanitize-h8s +Tue Jun 18 16:31:10 1996 Jeffrey A. Law <law@rtl.cygnus.com> + + * compile.c (sim_load): Treat the H8/S like the H8/300H for now. + * run.c (main): Treat the H8/S like the H8/300H for now. + +end-sanitize-h8s +Fri May 24 10:35:25 1996 Jeffrey A Law (law@cygnus.com) + + * compile.c (SEXTCHAR): Clear upper bits when sign + bit is clear. + Wed May 22 22:23:37 1996 Jeffrey A Law (law@cygnus.com) * compile.c (sim_resume): Correctly handle divu. diff --git a/sim/h8300/configure.in b/sim/h8300/configure.in index aea2a8d..4969df3 100644 --- a/sim/h8300/configure.in +++ b/sim/h8300/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.3)dnl +AC_PREREQ(2.5)dnl AC_INIT(Makefile.in) AC_CONFIG_HEADER(config.h:config.in) @@ -11,6 +11,7 @@ AC_ARG_PROGRAM . ${srcdir}/../../bfd/configure.host AC_PROG_CC +AC_PROG_INSTALL AC_SUBST(CFLAGS) AC_SUBST(HDEFINES) AR=${AR-ar} |