* config.guess: Check for ptx.
authorJim Kingdon <jkingdon@engr.sgi.com>
Thu, 3 Mar 1994 02:35:28 +0000 (02:35 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Thu, 3 Mar 1994 02:35:28 +0000 (02:35 +0000)
ChangeLog
config.guess

index c662f46fd3ec84aa8de23b032bf84c9835292a6a..d9bc1c29be21a6c764719e7550c0ba28e20750b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Mar  2 13:28:48 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * config.guess: Check for ptx.
+
 Mon Feb 28 16:46:50 1994  Kung Hsu  (kung@mexican.cygnus.com)
 
        * config.sub: Add os9k checking.
index 7bed19666bd52d6aab6d64b80cef887609bdf223..6d26cab978f110ef8cf7374deab019ea8b8f3b70 100755 (executable)
@@ -159,6 +159,12 @@ EOF
     9000/8??:4.3bsd:*:*)
        echo hppa1.0-hp-bsd
        exit 0 ;;
+    hp7??:OSF1:*:* | hp8?7:OSF1:*:* )
+       echo hppa1.1-hp-osf
+       exit 0 ;;
+    hp8??:OSF1:*:*)
+       echo hppa1.0-hp-osf
+       exit 0 ;;
     C1*:ConvexOS:*:* | convex:ConvexOS:C1:*)
        echo c1-convex-bsd
         exit 0 ;;
@@ -199,6 +205,11 @@ EOF
                echo ${UNAME_MACHINE}-unknown-sysv32
        fi
        exit 0 ;;
+# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
+# are messed up and put the nodename in both sysname and nodename.
+    i[34]86:DYNIX/ptx:4*:*)
+       echo i386-sequent-sysv4
+       exit 0 ;;
     mini*:CTIX:SYS*5:*)
        # "miniframe"
        echo m68010-convergent-sysv
This page took 0.02661 seconds and 4 git commands to generate.