diff options
| author | Richard M. Stallman | 1994-08-26 00:30:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-08-26 00:30:33 +0000 |
| commit | 6e9495ec160104ee5175bcc8d9338c239c6ef708 (patch) | |
| tree | e2e9a900ec63ee8f4aa9ffb9c236b15c66e22504 | |
| parent | c9ce5e2c7abac844431664879ff683278434ee57 (diff) | |
| download | emacs-6e9495ec160104ee5175bcc8d9338c239c6ef708.tar.gz emacs-6e9495ec160104ee5175bcc8d9338c239c6ef708.zip | |
*** empty log message ***
| -rwxr-xr-x | config.guess | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 665ced20bb6..d71ba014745 100755 --- a/config.guess +++ b/config.guess | |||
| @@ -28,6 +28,12 @@ | |||
| 28 | # (but try to keep the structure clean). | 28 | # (but try to keep the structure clean). |
| 29 | # | 29 | # |
| 30 | 30 | ||
| 31 | # This is needed to find uname on a Pyramid OSx when run in the BSD universe. | ||
| 32 | # (ghazi@noc.rutgers.edu 8/24/94.) | ||
| 33 | if (test -f /.attbin/uname) >/dev/null 2>&1 ; then | ||
| 34 | PATH=$PATH:/.attbin ; export PATH | ||
| 35 | fi | ||
| 36 | |||
| 31 | UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown | 37 | UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown |
| 32 | UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown | 38 | UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown |
| 33 | UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown | 39 | UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown |
| @@ -52,6 +58,13 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |||
| 52 | arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) | 58 | arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) |
| 53 | echo arm-acorn-riscix${UNAME_RELEASE} | 59 | echo arm-acorn-riscix${UNAME_RELEASE} |
| 54 | exit 0;; | 60 | exit 0;; |
| 61 | Pyramid*:OSx*:*:*) | ||
| 62 | if test "`(/bin/universe) 2>/dev/null`" = att ; then | ||
| 63 | echo pyramid-pyramid-sysv3 | ||
| 64 | else | ||
| 65 | echo pyramid-pyramid-bsd | ||
| 66 | fi | ||
| 67 | exit 0 ;; | ||
| 55 | sun4*:SunOS:5.*:*) | 68 | sun4*:SunOS:5.*:*) |
| 56 | echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | 69 | echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` |
| 57 | exit 0 ;; | 70 | exit 0 ;; |