use canonical triple
authorDavid D. Zuhn <zoo@cygnus>
Fri, 2 Oct 1992 07:13:29 +0000 (07:13 +0000)
committerDavid D. Zuhn <zoo@cygnus>
Fri, 2 Oct 1992 07:13:29 +0000 (07:13 +0000)
mmalloc/ChangeLog
mmalloc/configure.in
opcodes/ChangeLog
opcodes/configure.in
readline/ChangeLog
readline/configure.in

index adca17c..1954f70 100644 (file)
@@ -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
index af44b74..ebf6088 100644 (file)
@@ -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:
index f1ea02f..7d198ec 100644 (file)
@@ -1,3 +1,7 @@
+Thu Oct  1 23:38:54 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
+
+       * configure.in: use cpu-vendor-os triple instead of nested cases
+
 Wed Sep 30 16:09:20 1992  Michael Werner  (mtw@cygnus.com)
 
        * z8k-dis.c (unparse_instr): fix bug where opcode returned was
index b69e52a..b6487a6 100644 (file)
@@ -8,110 +8,47 @@ srcname="opcodes"
 
 # per-host:
 
-case "${host_cpu}" in
-
-rs6000)        my_host=rs6000
-       ;;
-
-hppa*)
-       case "${host_vendor}" in
-       hp)
-               case "${host_os}" in
-               hpux)   my_host=hppahpux ;;
-               bsd)    my_host=hppabsd ;;
-               esac
-               ;;
-       esac
-       ;;
-mips)
-       case "${host_vendor}" in
-       dec)    my_host=decstation ;;
-       sgi)    my_host=irix3 ;;
-       esac
-       ;;
-
-m88k)
-       case "${host_vendor}" in
-       motorola)
-               my_host=delta88 ;;
-       *)
-               case "${host_os}" in
-               dgux)   my_host=dgux ;;
-               esac
-               ;;
-       esac
-       ;;
-
-m68*)
-       case "${host_vendor}" in
-       cbm)
-               case ${host_os} in
-               amigados)       my_host=amigados ;;
-               svr4)           my_host=amix ;;
-               esac
-               ;;
-       hp)     
-               case "${host_os}" in
-               hpux)   my_host=hp9000 ;;
-               bsd)    my_host=hp300bsd ;;
-               esac
-               ;;
-       sony)   my_host=news ;;
-       sun)    my_host=sun3 ;;
-       apollo) 
-               case "${host_os}" in
-               sysv*)  my_host=apollov68 ;;
-               bsd*)   my_host=apollo68 ;;
-               esac
-               ;;
-       esac
-       ;;
-
-i386 | i486)
-       case "${host_vendor}" in
-       ncr*)
-               case "${host_os}" in
-               sysv4*) my_host=ncr3000 ;;
-               esac
-               ;;
-       *)
-               case "${host_os}" in
-               go32)   my_host=go32 ;;
-               sco*)   my_host=i386v ;;
-               sysv)   my_host=i386v ;;
-               sysv4)  my_host=i386v4 ;;
-               mach)   my_host=i386mach ;;
-               msdos)  my_host=dose ;;
-               esac
-               ;;
-       esac
-       ;;
-
-sparc)
-       case "${host_os}" in
-       sunos64)        my_host=sparc-ll ;;
-       *)              my_host=sparc ;;
-       esac
-       ;;
-
-romp)  my_host=rtbsd
-       ;;
-
-a29k)  my_host=ultra3
-       ;;
-
-tahoe)
-       my_host=tahoe
-       ;;
-
-vax)
-       case "${host_os}" in
-       ultrix) my_host=vaxult ;;
-       *) my_host=vaxbsd ;;
-       esac
-       ;;
+case "${host}" in
+  a29k-nyu-sym1)          my_host=ultra3 ;;
+  hppa*-hp-bsd)           my_host=hppabsd ;;
+  hppa*-hp-hpux)          my_host=hppahpux ;;
+  i860-stratus-sysv4)     my_host=stratus ;;
+  i[34]86-*-go32)         my_host=go32 ;;
+  i[34]86-*-linux)        my_host=i386linux ;;
+  i[34]86-*-mach)         my_host=i386mach ;;
+  i[34]86-*-msdos*)       my_host=dose ;;
+  i[34]86-*-sysv*)        my_host=i386v ;;
+  i[34]86-*-sco)          my_host=i386v ;;
+  i[34]86-*-sysv4*)       my_host=i386v4 ;;
+  i[34]86-ncr-sysv4*)     my_host=ncr3000 ;;
+  m68k-apollo-bsd*)       my_host=apollo68 ;;
+  m68k-apollo-sysv*)      my_host=apollov68 ;;
+  m68k-cbm-amigados)      my_host=amigados ;;
+  m68k-cbm-sysv4*)        my_host=amix ;;
+  m68k-hp-bsd)            my_host=hp300bsd ;;
+  m68k-hp-hpux)           my_host=hp300 ;;        # renamed from hp9000
+  m68k-sony-*)            my_host=news ;;
+  m68k-sun-sunos*)        my_host=sun3 ;;
+  m88k-dg-dgux)           my_host=dgux ;;
+  m88k-harris-*)          my_host=harris ;;
+  m88k-motorola-*)        my_host=delta88 ;;
+  mips-dec-ultrix)        my_host=decstation ;;
+  mips-sgi-irix | mips-sgi-irix3) my_host=irix3 ;;
+  mips-sgi-irix4)         my_host=irix4 ;;
+  romp-ibm-bsd*)          my_host=rtbsd ;;
+  rs6000-ibm-aix)         my_host=rs6000 ;;
+  sparc-*-sysv4)          my_host=sysv4 ;;
+  sparc-*-sysv64)         my_host=sysv4-ll ;;
+  sparc-sun-solaris2)     my_host=solaris2 ;;
+  sparc-sun-sunos*)       my_host=sparc ;;
+  sparc-sun-sunos64)      my_host=sparc-ll ;;
+  tahoe-*-*)              my_host=tahoe ;;
+  vax-dec-bsd*)           my_host=vaxbsd ;;
+  vax-dec-ultrix*)        my_host=vaxult ;;
+  we32k-*-*)              my_host=we32k ;;
 esac
 
+
 # Set up to make a link between the host's include file and "sysdep.h".
 files="../bfd/hosts/${my_host}.h"
 
index 5eada80..88da886 100644 (file)
@@ -1,3 +1,7 @@
+Thu Oct  1 23:44:14 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
+
+       * configure.in: use cpu-vendor-os triple instead of nested cases
+
 Wed Sep 30 12:58:57 1992  Stu Grossman  (grossman at cygnus.com)
 
        * readline.c (rl_complete_internal):  Cast alloca to (char *) to
index 1faa350..0766866 100644 (file)
@@ -12,47 +12,40 @@ srcname="the readline library"
 files=sysdep-norm.h
 links=sysdep.h
 
-case "${host_os}" in
-solaris*|sysv4*)
-       host_makefile_frag=config/mh-sysv4
-       case "${host_vendor}" in
-       ncr*)
-               host_makefile_frag=config/mh-ncr3000
-               ;;
-       esac
-       ;;
-
-scosysv*)
-       host_makefile_frag=config/mh-sco
-       files=sysdep-sco.h
-       ;;
-
-m88kbcs | sysv*)
-       host_makefile_frag=config/mh-sysv
-       case "${host_vendor}" in
-       apollo)
-               host_makefile_frag=config/mh-apollo68v ;;
-       esac
-       ;;
-
-linux)
-       host_makefile_frag=config/mh-posix
-       ;;
-aix*)
-       host_makefile_frag=config/mh-sysv
-       case "${host_cpu}" in
-       rs6000) files=sysdep-aix.h
-       esac
-       ;;
-
-irix*)
-       host_makefile_frag=config/mh-sysv
-       files=sysdep-irix.h
-       ;;
-
-newsos* | mach*)
-       files=sysdep-obsd.h
-       ;;
+case "${host}" in
+  i[34]86-ncr-sysv4*)
+    host_makefile_frag=config/mh-ncr3000
+    ;;
+  mips-sgi-irix*)
+    host_makefile_frag=config/mh-sysv
+    files=sysdep-irix.h
+    ;;
+  *-sun-solaris*| *-*-sysv4*)
+    host_makefile_frag=config/mh-sysv4
+    ;;
+  i[34]86-*-sco)
+    host_makefile_frag=config/mh-sco
+    files=sysdep-sco.h
+    ;;
+  m68k-apollo-sysv*)
+    host_makefile_frag=config/mh-apollo68v 
+    ;;    
+  m88k-motorola-m88kbcs | *-*-sysv*)
+    host_makefile_frag=config/mh-sysv
+    ;;
+  i[34]86-*-linux)
+    host_makefile_frag=config/mh-posix
+    ;;
+  rs6000-ibm-aix*)
+    host_makefile_frag=config/mh-sysv
+    files=sysdep-aix.h
+    ;;
+  *-ibm-aix*)
+    host_makefile_frag=config/mh-sysv
+    ;;
+  m68k-sony-news* | *-*-mach* | *-*-bsd*)
+    files=sysdep-obsd.h
+    ;;
 esac
 
 # per-target: