diff options
author | Per Bothner <per@bothner.com> | 1993-06-29 20:08:23 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-06-29 20:08:23 +0000 |
commit | 4f23a101e67d6f879a1952251d53b4500129e69d (patch) | |
tree | 85afe7080f8f11a601d7fe77dad31e36412f77e0 /config.guess | |
parent | 9823504d83589903a67f8a81699b03d24a89b95d (diff) | |
download | gdb-4f23a101e67d6f879a1952251d53b4500129e69d.zip gdb-4f23a101e67d6f879a1952251d53b4500129e69d.tar.gz gdb-4f23a101e67d6f879a1952251d53b4500129e69d.tar.bz2 |
* config.guess: Recognize i486-ncr-sysv4.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 923e070..3cdc586 100755 --- a/config.guess +++ b/config.guess @@ -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 |