2001-10-05 Ben Elliston <bje@redhat.com>

* config.guess: Add "SKA40" as a machine type for NCR SysV UNIX.
	From Rudi Heitbaum <rheitbaum@tattersalls.com.au>.

2001-10-05  Rodney Brown  <rbrown64@csc.com.au>

	* config.guess (9000/[34678]??:HP-UX:*:*): Unconditionally try
	/usr/bin/getconf which is available on HP-UX 10.20. Reindent.
This commit is contained in:
Ben Elliston 2001-10-05 06:34:14 +00:00
parent 04fa2b504d
commit 83116daccf
2 changed files with 22 additions and 14 deletions

View File

@ -1,3 +1,13 @@
2001-10-05 Ben Elliston <bje@redhat.com>
* config.guess: Add "SKA40" as a machine type for NCR SysV UNIX.
From Rudi Heitbaum <rheitbaum@tattersalls.com.au>.
2001-10-05 Rodney Brown <rbrown64@csc.com.au>
* config.guess (9000/[34678]??:HP-UX:*:*): Unconditionally try
/usr/bin/getconf which is available on HP-UX 10.20. Reindent.
2001-10-04 Ben Elliston <bje@redhat.com>
* config.sub: Handle viac3 as an i586-class CPU.

8
config.guess vendored
View File

@ -548,8 +548,6 @@ EOF
9000/31? ) HP_ARCH=m68000 ;;
9000/[34]?? ) HP_ARCH=m68k ;;
9000/[678][0-9][0-9])
case "${HPUX_REV}" in
11.[0-9][0-9])
if [ -x /usr/bin/getconf ]; then
sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
@ -560,10 +558,10 @@ EOF
case "${sc_kernel_bits}" in
32) HP_ARCH="hppa2.0n" ;;
64) HP_ARCH="hppa2.0w" ;;
'') HP_ARCH="hppa2.0" ;; # HP-UX 10.20
esac ;;
esac
fi ;;
esac
fi
if [ "${HP_ARCH}" = "" ]; then
eval $set_cc_for_build
sed 's/^ //' << EOF >$dummy.c
@ -949,7 +947,7 @@ EOF
exit 0 ;;
M68*:*:R3V[567]*:*)
test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0)
3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0)
OS_REL=''
test -r /etc/.relid \
&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`