Add support for HP-UX; SCO; fix Solaris2.

This commit is contained in:
Per Bothner 1993-01-20 06:47:39 +00:00
parent bf2e56058e
commit 2c763c2b0b
1 changed files with 17 additions and 2 deletions

View File

@ -19,8 +19,8 @@ UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
# Note: order is significant - the case branches are not exclusive.
case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
sun4*:SunOS:5.*:*)
echo sparc-sun-solaris
sun4*:SunOS:[5-9].*:*)
echo sparc-sun-solaris2
exit 0 ;;
sun4*:SunOS:*:*)
echo sparc-sun-sunos${UNAME_RELEASE}
@ -37,6 +37,21 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
*:AIX:*:*)
echo rs6000-ibm-aix
exit 0 ;;
9000/31?:HP-UX:*:*)
echo m68000-hp-hpux
exit 0 ;;
9000/3??:HP-UX:*:*)
echo m68k-hp-hpux
exit 0 ;;
9000/7??:HP-UX:*:*)
echo hppa1.1-hp-hpux
exit 0 ;;
9000/8??:HP-UX:*:*)
echo hppa1.0-hp-hpux
exit 0 ;;
i[34]86:*:3.2:[2-9]*)
echo ${UNAME_MACHINE}-unknown-sco3.2v${UNAME_VERSION}
exit 0 ;;
esac
echo '(No uname command or uname output not recognized.)' 1>&2