diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-18 18:14:26 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-18 18:14:26 +0000 |
commit | 83660d21a7e6a698b3397c0a7483ff9b82a11b2b (patch) | |
tree | 12cbfe84ae9d29acd6023bde74d89f4129e20e83 /readline | |
parent | e23b7b308a901a6fe3ef2b9a206e2827b2646c28 (diff) | |
download | gdb-83660d21a7e6a698b3397c0a7483ff9b82a11b2b.zip gdb-83660d21a7e6a698b3397c0a7483ff9b82a11b2b.tar.gz gdb-83660d21a7e6a698b3397c0a7483ff9b82a11b2b.tar.bz2 |
* configure.in (m88k-*-sysvr4*): Use sysdep-norm.h.
Diffstat (limited to 'readline')
-rw-r--r-- | readline/ChangeLog | 4 | ||||
-rw-r--r-- | readline/configure.in | 55 |
2 files changed, 26 insertions, 33 deletions
diff --git a/readline/ChangeLog b/readline/ChangeLog index 452f8be..9f24911 100644 --- a/readline/ChangeLog +++ b/readline/ChangeLog @@ -1,3 +1,7 @@ +Mon Jun 14 14:28:55 1993 Jim Kingdon (kingdon@eric) + + * configure.in (m88k-*-sysvr4*): Use sysdep-norm.h. + Sun Jun 13 13:04:09 1993 Jim Kingdon (kingdon@cygnus.com) * Makefile.in ({real,dist}clean): Remove sysdep.h. diff --git a/readline/configure.in b/readline/configure.in index 0766866..29b5d4a 100644 --- a/readline/configure.in +++ b/readline/configure.in @@ -13,39 +13,28 @@ files=sysdep-norm.h links=sysdep.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 - ;; + *-*-irix*) host_makefile_frag=config/mh-sysv; files=sysdep-irix.h;; + i[34]86-ncr-sysv4*) host_makefile_frag=config/mh-ncr3000 ;; + m88k-*-sysv4*) host_makefile_frag=config/mh-sysv ; + # defining POSIX_SOURCE causes stack_t to be undefined + # even though it's used in <setjmp.h> + files=sysdep-norm.h ;; + *-*-sysv4*) host_makefile_frag=config/mh-sysv4 ; files=sysdep-sysv4.h;; + *-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;; + i[34]86-*-sco3.2v4*) host_makefile_frag=config/mh-sco4; files=sysdep-sco.h ;; + i[34]86-*-sco*) host_makefile_frag=config/mh-sco; files=sysdep-sco.h ;; + i[34]86-*-isc*) host_makefile_frag=config/mh-isc ;; + m68k-apollo-sysv*) host_makefile_frag=config/mh-apollo68v ;; + *-*-sysv*) host_makefile_frag=config/mh-sysv ;; + *-*-m88kbcs) 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*) files=sysdep-obsd.h ;; + *-*-bsd*) files=sysdep-obsd.h ;; + *-*-mach*) files=sysdep-obsd.h ;; + *-*-sunos3*) files=sysdep-obsd.h ;; + *-*-ultrix2*) files=sysdep-obsd.h ;; esac # per-target: |