aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1992-10-12 02:10:51 +0000
committerDavid D. Zuhn <zoo@cygnus>1992-10-12 02:10:51 +0000
commit0f8b9790a1dd940333a6ad4f3821204b14fd5bac (patch)
tree59490da23034643b1a9a7392087172c46678a8db /gas
parent1b87a1b27b0b002745b9f4c01f223cbcbe44546b (diff)
downloadgdb-0f8b9790a1dd940333a6ad4f3821204b14fd5bac.zip
gdb-0f8b9790a1dd940333a6ad4f3821204b14fd5bac.tar.gz
gdb-0f8b9790a1dd940333a6ad4f3821204b14fd5bac.tar.bz2
use sysv config for solaris2 hosting
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/configure.in5
2 files changed, 9 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 6354e04..5deaf14 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+Sat Oct 10 12:33:45 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
+
+ * configure.in: differentiate between SunOS 4 and Solaris2 for Sun4
+ hosts, use the sysv configuration for solaris2
+
Mon Oct 5 03:30:36 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
* configure.in: recognize i386-*-bsd emulation.
diff --git a/gas/configure.in b/gas/configure.in
index 5fd29a7..f406a37 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -52,9 +52,12 @@ case "${host}" in
i386-sun-sunos*)
gas_host=sun386
;;
- sparc-sun-*)
+ sparc-sun-sunos*)
gas_host=sun4
;;
+ sparc-sun-solaris2)
+ gas_host=sysv
+ ;;
*-*-ansi | *-*-ultrix | *-*-hpux | *-*-sysv*)
gas_host=${host_os}
;;