2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

1026. [port] Recognize OpenUNIX 8 in config.guess. [RT #1830]

(9.2 branch only, fixed by upgrading config.guess on mainline)
This commit is contained in:
Andreas Gustafsson 2001-10-03 22:34:54 +00:00
parent 769ef0b7bd
commit c6e0cb8fa6

8
config.guess vendored
View File

@ -118,10 +118,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
PATH=$PATH:/.attbin ; export PATH
fi
UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
UNAME_MACHINE=i386
UNAME_RELEASE=5
UNAME_SYSTEM=OpenUNIX
UNAME_VERSION=8.0.0
# Note: order is significant - the case branches are not exclusive.