]> code.delx.au - gnu-emacs/commitdiff
* config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
authorPer Bothner <bothner@cygnus.com>
Mon, 12 Feb 1996 20:55:56 +0000 (20:55 +0000)
committerPer Bothner <bothner@cygnus.com>
Mon, 12 Feb 1996 20:55:56 +0000 (20:55 +0000)
* config.guess (*:CYGWIN*): New

config.guess

index dc83e59c8c10b5c75bf4937b95073d32f0a59ea2..afd200a33d352d8a8268a9eb3aac481904e69f3a 100755 (executable)
@@ -51,9 +51,10 @@ trap 'rm -f dummy.c dummy.o dummy; exit 1' 1 2 15
 # Note: order is significant - the case branches are not exclusive.
 
 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
-    alpha:OSF1:V*:*)
+    alpha:OSF1:[VX]*:*)
        # After 1.2, OSF1 uses "V1.3" for uname -r.
-       echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^V//'`
+       # After 4.x, OSF1 uses "X4.x" for uname -r.
+       echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VX]//'`
        exit 0 ;;
     alpha:OSF1:*:*)
        # 1.2 uses "1.2" for uname -r.
@@ -323,6 +324,12 @@ EOF
     *:NetBSD:*:*)
        echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
        exit 0 ;;
+    i*:CYGWIN*:*)
+       echo i386-unknown-cygwin32
+       exit 0 ;;
+    p*:CYGWIN*:*)
+       echo powerpcle-unknown-cygwin32
+       exit 0 ;;
     *:GNU:*:*)
        echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
        exit 0 ;;