diff options
author | David D. Zuhn <zoo@cygnus> | 1992-10-02 07:13:29 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1992-10-02 07:13:29 +0000 |
commit | d5dcef63462d85af28fb9a3d4580678ef259f86a (patch) | |
tree | 574c9b21f1165000fd28034e38094ca454413dc0 /mmalloc | |
parent | 15ae586e2edb29392c1fcc82a8d4c5fcb2a58c78 (diff) | |
download | gdb-d5dcef63462d85af28fb9a3d4580678ef259f86a.zip gdb-d5dcef63462d85af28fb9a3d4580678ef259f86a.tar.gz gdb-d5dcef63462d85af28fb9a3d4580678ef259f86a.tar.bz2 |
use canonical triple
Diffstat (limited to 'mmalloc')
-rw-r--r-- | mmalloc/ChangeLog | 23 | ||||
-rw-r--r-- | mmalloc/configure.in | 18 |
2 files changed, 32 insertions, 9 deletions
diff --git a/mmalloc/ChangeLog b/mmalloc/ChangeLog index adca17c..1954f70 100644 --- a/mmalloc/ChangeLog +++ b/mmalloc/ChangeLog @@ -1,3 +1,26 @@ +Thu Oct 1 23:34:20 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) + + * configure.in: use cpu-vendor-os triple instead of nested cases + +Sun Aug 23 11:09:46 1992 Fred Fish (fnf@cygnus.com) + + * sbrk-sup.c (__mmalloc_brk_init): Ensure base of sbrk'd region + is aligned. Bug reported by Andrew Heybey (ath@lcs.mit.edu). + +Wed Aug 19 14:49:23 1992 Ian Lance Taylor (ian@cygnus.com) + + * Makefile.in: always create installation directories. + +Mon Jul 20 21:15:44 1992 Fred Fish (fnf@cygnus.com) + + * mrealloc.c: Minor code format style changes for consistency. + +Fri Jul 3 20:25:30 1992 Fred Fish (fnf@cygnus.com) + + * attach.c, detach.c, mcalloc.c, mmalloc.c, mmtrace.c, mrealloc.c, + sbrk-sup.c: Remove "(void)" casts from function calls where the + return value is ignored, in accordance with GNU coding standards. + Tue Jun 30 16:44:41 1992 Fred Fish (fnf@cygnus.com) * mmalloc.h (struct mdesc): Add FIXME comments to point out the diff --git a/mmalloc/configure.in b/mmalloc/configure.in index af44b74..ebf6088 100644 --- a/mmalloc/configure.in +++ b/mmalloc/configure.in @@ -9,19 +9,19 @@ configdirs="" # per-host: -case "${host_os}" in - -sysv4) - host_makefile_frag=config/mh-sysv4 +case "${host}" in + mips-sgi-irix4) + host_makefile_frag=config/mh-irix4 ;; - -sunos4*) + *-sun-sunos4*) host_makefile_frag=config/mh-sunos4 ;; - -*) + i[34]86-ncr-sysv4*) + host_makefile_frag=config/mh-ncr3000 + ;; + *-*-sysv4*) + host_makefile_frag=config/mh-sysv4 ;; - esac # per-target: |