]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-09-17 Ben Elliston <bje@cygnus.com>
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Fri, 17 Sep 1999 00:13:24 +0000 (00:13 +0000)
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Fri, 17 Sep 1999 00:13:24 +0000 (00:13 +0000)
* config.guess: Detect QNX version 4.
* config.sub: Handle `qnx' and `i386-qnx' aliases.

ChangeLog
config.guess
config.sub

index b00b993c4b28016daf7b7af772ad7156fdf78eab..88e31597994639f913da42707d2f54e6677f9209 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-09-17  Ben Elliston  <bje@cygnus.com>
+
+       * config.guess: Detect QNX version 4.
+       * config.sub: Handle `qnx' and `i386-qnx' aliases.
+
 1999-09-17  Erez Zadok  <ezk@cs.columbia.edu>
 
        * config.guess: Eliminate the trailing dot if ${UNAME_RELEASE} is
index 3551601735110fc56307f396f9bc4b5406564c58..5774481662cb91fb948be2df326dc8c596a9692a 100755 (executable)
@@ -971,6 +971,9 @@ EOF
     *:Rhapsody:*:*)
        echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
        exit 0 ;;
+    *:QNX:*:4*)
+       echo i386-qnx-qnx${UNAME_VERSION}
+       exit 0 ;;
 esac
 
 #echo '(No uname command or uname output not recognized.)' 1>&2
index 5e75c9b4b54834aeed3061a1ad5be8f07dfc15ee..6fc575f984b3e4868003abb59ff3f01c4a53b49f 100755 (executable)
@@ -465,6 +465,9 @@ case $basic_machine in
                basic_machine=i386-unknown
                os=-mingw32
                ;;
+       i386-qnx | qnx)
+               basic_machine=i386-qnx
+               ;;
        iris | iris4d)
                basic_machine=mips-sgi
                case $os in
@@ -968,6 +971,9 @@ case $os in
        -oss*)
                os=-sysv3
                ;;
+        -qnx)
+               os=-qnx4
+               ;;
        -svr4)
                os=-sysv4
                ;;