]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1998-09-27 Ben Elliston <bje@cygnus.com>
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Sat, 26 Sep 1998 20:44:46 +0000 (20:44 +0000)
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Sat, 26 Sep 1998 20:44:46 +0000 (20:44 +0000)
* config.guess: Detect UnixWare 7.  Contributed by Paul Gampe
<paulg@apnic.net>.

ChangeLog
config.guess

index 0989fe5d3ecd4e007474f1a5593c06dea056600e..6ff280e16c06be52cb4cb4d990e4491b044e6d4a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
        * config.guess: Apply the sysconf(2) test to HP 9000/600-series,
        9000/802, 9000/804 and 9000/892 machines.  Contributed by Pavel
        Roskin <pavel.roskin@ecsoft.co.uk>.
+       Detect UnixWare 7.  Contributed by Paul Gampe <paulg@apnic.net>.
 
        * acspecific.m4 (AC_PROG_INSTALL): Substitute `INSTALL_SCRIPT'.
        Contributed by Franc,ois Pinard <pinard@iro.umontreal.ca>.
index 5a2522a1024504be6fbbbf5ec2270cd9fa73d246..8517a82413edef97ba539e88f739214bbe97ecdc 100755 (executable)
@@ -704,6 +704,13 @@ EOF
                echo ${UNAME_MACHINE}-pc-sysv32
        fi
        exit 0 ;;
+    i?86:UnixWare:*:*)
+       if /bin/uname -X 2>/dev/null >/dev/null ; then
+         (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
+           && UNAME_MACHINE=i586
+       fi
+       echo ${UNAME_MACHINE}-unixware-${UNAME_RELEASE}-${UNAME_VERSION}
+       exit 0 ;;
     pc:*:*:*)
         # uname -m prints for DJGPP always 'pc', but it prints nothing about
         # the processor, so we play safe by assuming i386.