* config.guess: Recognize i486-ncr-sysv4.
authorPer Bothner <per@bothner.com>
Tue, 29 Jun 1993 20:08:23 +0000 (20:08 +0000)
committerPer Bothner <per@bothner.com>
Tue, 29 Jun 1993 20:08:23 +0000 (20:08 +0000)
ChangeLog
config.guess

index b2c849ad2372d63b546855fa33a7c97610f6d3fb..942e438ea3989372d7caccae9249e3b994d22539 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jun 29 13:06:49 1993  Per Bothner  (bothner@rtl.cygnus.com)
+
+       * config.guess:  Recognize i486-ncr-sysv4.
+
 Tue Jun 29 12:50:57 1993  Ian Lance Taylor  (ian@cygnus.com)
 
        * Makefile.in (MAKEINFOFLAGS): New variable.
index 923e0706fc4e0fbcfc97654bb514c8821d1ebd8c..3cdc586e9e20883d3a7d946d38c6c9096da1f993 100755 (executable)
@@ -94,6 +94,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     9000/8??:HP-UX:*:*)
        echo hppa1.0-hp-hpux
        exit 0 ;;
+    9000/8??:4.3bsd:*:* | 9000/8?7:4.3bsd:*:* )
+       echo hppa1.1-hp-bsd
+       exit 0 ;;
+    9000/8??:4.3bsd:*:*)
+       echo hppa1.0-hp-bsd
+       exit 0 ;;
     C1*:ConvexOS:*:*)
        echo c1-convex-bsd
         exit 0 ;;
@@ -132,8 +138,11 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
        # "miniframe"
        echo m68010-convergent-sysv
        exit 0 ;;
-     M680[234]0:*:R3V[567]*:*)
+    M680[234]0:*:R3V[567]*:*)
        test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
+    33??:*:4.0:*)
+       uname -p 2>/dev/null | grep 86 >/dev/null \
+         && echo i486-ncr-sysv4 && exit 0 ;;
 esac
 
 echo '(No uname command or uname output not recognized.)' 1>&2
This page took 0.029181 seconds and 4 git commands to generate.