diff options
| author | Per Bothner | 1996-06-08 01:25:20 +0000 |
|---|---|---|
| committer | Per Bothner | 1996-06-08 01:25:20 +0000 |
| commit | 1b4c60e2fa92e23c387dfd2115e608d123674160 (patch) | |
| tree | f25fb8da61d133c35552a2d49c604a95a1523980 | |
| parent | 7cd494507f927821ee8180c1522987f5a0a15822 (diff) | |
| download | emacs-1b4c60e2fa92e23c387dfd2115e608d123674160.tar.gz emacs-1b4c60e2fa92e23c387dfd2115e608d123674160.zip | |
* config.guess (i?86-ncr-sysv*): Emit minor release numbers.
Recognize the NCR 4850 machine and NCR Pentium-based platforms.
| -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 | |||
| 435 | exit 0 ;; | 435 | exit 0 ;; |
| 436 | M680[234]0:*:R3V[567]*:*) | 436 | M680[234]0:*:R3V[567]*:*) |
| 437 | test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; | 437 | test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; |
| 438 | 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0) | 438 | 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) |
| 439 | UNAME_REL=4.3 | ||
| 440 | if test -f /etc/.relid; then | ||
| 441 | UNAME_REL=4.3.`awk '{ print $3 }' /etc/.relid` | ||
| 442 | fi | ||
| 439 | uname -p 2>/dev/null | grep 86 >/dev/null \ | 443 | uname -p 2>/dev/null | grep 86 >/dev/null \ |
| 440 | && echo i486-ncr-sysv4.3 && exit 0 ;; | 444 | && echo i486-ncr-sysv$UNAME_REL && exit 0 |
| 445 | uname -p 2>/dev/null | /bin/grep entium >/dev/null \ | ||
| 446 | && echo i586-ncr-sysv$UNAME_REL && exit 0 ;; | ||
| 441 | 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) | 447 | 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) |
| 442 | uname -p 2>/dev/null | grep 86 >/dev/null \ | 448 | uname -p 2>/dev/null | grep 86 >/dev/null \ |
| 443 | && echo i486-ncr-sysv4 && exit 0 ;; | 449 | && echo i486-ncr-sysv4 && exit 0 ;; |