diff options
| author | Ben Elliston | 1998-09-28 11:01:44 +0000 |
|---|---|---|
| committer | Ben Elliston | 1998-09-28 11:01:44 +0000 |
| commit | 83cc942a6ce83d3f173d193dcd544125c2ac7cfc (patch) | |
| tree | 7cc40dd3f6a610677607cc94c748004358fe40e4 | |
| parent | e58aeb3dd3792983b58c1ae24d89af4ccf458f4c (diff) | |
| download | emacs-83cc942a6ce83d3f173d193dcd544125c2ac7cfc.tar.gz emacs-83cc942a6ce83d3f173d193dcd544125c2ac7cfc.zip | |
Merge from autoconf 2.13.
| -rwxr-xr-x | config.guess | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/config.guess b/config.guess index 34c159404fe..6e823367ef9 100755 --- a/config.guess +++ b/config.guess | |||
| @@ -142,7 +142,7 @@ EOF | |||
| 142 | SR2?01:HI-UX/MPP:*:*) | 142 | SR2?01:HI-UX/MPP:*:*) |
| 143 | echo hppa1.1-hitachi-hiuxmpp | 143 | echo hppa1.1-hitachi-hiuxmpp |
| 144 | exit 0;; | 144 | exit 0;; |
| 145 | Pyramid*:OSx*:*:*|MIS*:OSx*:*:*) | 145 | Pyramid*:OSx*:*:*|MIS*:OSx*:*:*|MIS*:SMP_DC-OSx*:*:*) |
| 146 | # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. | 146 | # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. |
| 147 | if test "`(/bin/universe) 2>/dev/null`" = att ; then | 147 | if test "`(/bin/universe) 2>/dev/null`" = att ; then |
| 148 | echo pyramid-pyramid-sysv3 | 148 | echo pyramid-pyramid-sysv3 |
| @@ -330,7 +330,8 @@ EOF | |||
| 330 | fi | 330 | fi |
| 331 | exit 0 ;; | 331 | exit 0 ;; |
| 332 | *:AIX:*:4) | 332 | *:AIX:*:4) |
| 333 | if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then | 333 | IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'` |
| 334 | if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then | ||
| 334 | IBM_ARCH=rs6000 | 335 | IBM_ARCH=rs6000 |
| 335 | else | 336 | else |
| 336 | IBM_ARCH=powerpc | 337 | IBM_ARCH=powerpc |
| @@ -363,11 +364,11 @@ EOF | |||
| 363 | hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) | 364 | hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) |
| 364 | echo m68k-hp-bsd4.4 | 365 | echo m68k-hp-bsd4.4 |
| 365 | exit 0 ;; | 366 | exit 0 ;; |
| 366 | 9000/[3478]??:HP-UX:*:*) | 367 | 9000/[34678]??:HP-UX:*:*) |
| 367 | case "${UNAME_MACHINE}" in | 368 | case "${UNAME_MACHINE}" in |
| 368 | 9000/31? ) HP_ARCH=m68000 ;; | 369 | 9000/31? ) HP_ARCH=m68000 ;; |
| 369 | 9000/[34]?? ) HP_ARCH=m68k ;; | 370 | 9000/[34]?? ) HP_ARCH=m68k ;; |
| 370 | 9000/7?? | 9000/8?[13679] ) | 371 | 9000/6?? | 9000/7?? | 9000/80[24] | 9000/8?[13679] | 9000/892 ) |
| 371 | sed 's/^ //' << EOF >dummy.c | 372 | sed 's/^ //' << EOF >dummy.c |
| 372 | #include <stdlib.h> | 373 | #include <stdlib.h> |
| 373 | #include <unistd.h> | 374 | #include <unistd.h> |
| @@ -506,6 +507,9 @@ EOF | |||
| 506 | hp300:OpenBSD:*:*) | 507 | hp300:OpenBSD:*:*) |
| 507 | echo m68k-unknown-openbsd${UNAME_RELEASE} | 508 | echo m68k-unknown-openbsd${UNAME_RELEASE} |
| 508 | exit 0 ;; | 509 | exit 0 ;; |
| 510 | sparc*:BSD/OS:*:*) | ||
| 511 | echo sparc-unknown-bsdi${UNAME_RELEASE} | ||
| 512 | exit 0 ;; | ||
| 509 | i?86:BSD/386:*:* | *:BSD/OS:*:*) | 513 | i?86:BSD/386:*:* | *:BSD/OS:*:*) |
| 510 | echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} | 514 | echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} |
| 511 | exit 0 ;; | 515 | exit 0 ;; |
| @@ -700,6 +704,13 @@ EOF | |||
| 700 | echo ${UNAME_MACHINE}-pc-sysv32 | 704 | echo ${UNAME_MACHINE}-pc-sysv32 |
| 701 | fi | 705 | fi |
| 702 | exit 0 ;; | 706 | exit 0 ;; |
| 707 | i?86:UnixWare:*:*) | ||
| 708 | if /bin/uname -X 2>/dev/null >/dev/null ; then | ||
| 709 | (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ | ||
| 710 | && UNAME_MACHINE=i586 | ||
| 711 | fi | ||
| 712 | echo ${UNAME_MACHINE}-unixware-${UNAME_RELEASE}-${UNAME_VERSION} | ||
| 713 | exit 0 ;; | ||
| 703 | pc:*:*:*) | 714 | pc:*:*:*) |
| 704 | # uname -m prints for DJGPP always 'pc', but it prints nothing about | 715 | # uname -m prints for DJGPP always 'pc', but it prints nothing about |
| 705 | # the processor, so we play safe by assuming i386. | 716 | # the processor, so we play safe by assuming i386. |