Add support for HP-UX; SCO; fix Solaris2.
authorPer Bothner <per@bothner.com>
Wed, 20 Jan 1993 06:47:39 +0000 (06:47 +0000)
committerPer Bothner <per@bothner.com>
Wed, 20 Jan 1993 06:47:39 +0000 (06:47 +0000)
guess-systype

index 86f2885..c55e2ac 100755 (executable)
@@ -19,8 +19,8 @@ UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
 # Note: order is significant - the case branches are not exclusive.
 
 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
-    sun4*:SunOS:5.*:*)
-       echo sparc-sun-solaris
+    sun4*:SunOS:[5-9].*:*)
+       echo sparc-sun-solaris2
        exit 0 ;;
     sun4*:SunOS:*:*)
        echo sparc-sun-sunos${UNAME_RELEASE}
@@ -37,6 +37,21 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     *:AIX:*:*)
        echo rs6000-ibm-aix
        exit 0 ;;
+    9000/31?:HP-UX:*:*)
+       echo m68000-hp-hpux
+       exit 0 ;;
+    9000/3??:HP-UX:*:*)
+       echo m68k-hp-hpux
+       exit 0 ;;
+    9000/7??:HP-UX:*:*)
+       echo hppa1.1-hp-hpux
+       exit 0 ;;
+    9000/8??:HP-UX:*:*)
+       echo hppa1.0-hp-hpux
+       exit 0 ;;
+    i[34]86:*:3.2:[2-9]*)
+       echo ${UNAME_MACHINE}-unknown-sco3.2v${UNAME_VERSION}
+       exit 0 ;;
 esac
 
 echo '(No uname command or uname output not recognized.)' 1>&2