diff options
author | Per Bothner <bothner@cygnus.com> | 1996-06-08 01:25:20 +0000 |
---|---|---|
committer | Per Bothner <bothner@cygnus.com> | 1996-06-08 01:25:20 +0000 |
commit | 9b9ab1c1285db05de4596d0cea1803ad16361487 (patch) | |
tree | 02244748b0bef9dcb0f443e5c29aafc53e471247 /config.guess | |
parent | f1e6aa0d4e4300983bf5763692ba3017566ad5ad (diff) | |
download | emacs-9b9ab1c1285db05de4596d0cea1803ad16361487.tar.gz |
* config.guess (i?86-ncr-sysv*): Emit minor release numbers.libc-960618libc-960617libc-960616libc-960615libc-960614libc-960613libc-960612libc-960611libc-960610libc-960609libc-960608libc-1-90
Recognize the NCR 4850 machine and NCR Pentium-based platforms.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config.guess b/config.guess index b9105a94c9f..925dab43498 100755 --- a/config.guess +++ b/config.guess @@ -435,9 +435,15 @@ EOF exit 0 ;; M680[234]0:*:R3V[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; - 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0) + 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) + UNAME_REL=4.3 + if test -f /etc/.relid; then + UNAME_REL=4.3.`awk '{ print $3 }' /etc/.relid` + fi uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4.3 && exit 0 ;; + && echo i486-ncr-sysv$UNAME_REL && exit 0 + uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && echo i586-ncr-sysv$UNAME_REL && exit 0 ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4 && exit 0 ;; |