1998-09-27 Ben Elliston <bje@cygnus.com>

* config.guess: Detect UnixWare 7.  Contributed by Paul Gampe
	<paulg@apnic.net>.
This commit is contained in:
Ben Elliston 1998-09-26 20:44:46 +00:00
parent 588665f7fb
commit ec86515693
2 changed files with 8 additions and 0 deletions

View File

@ -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>.

7
config.guess vendored
View File

@ -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.