mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-29 02:26:36 +12:00
* config.guess (*:*VMS:*:*): New entry. Replaces
Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec manufacturer.
This commit is contained in:
parent
f55570816c
commit
5e897baf83
@ -1,3 +1,9 @@
|
||||
2004-06-22 Stanley F. Quayle <stan@stanq.com>
|
||||
|
||||
* config.guess (*:*VMS:*:*): New entry. Replaces
|
||||
Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
|
||||
manufacturer.
|
||||
|
||||
2004-06-22 Ben Elliston <bje@gnu.org>
|
||||
|
||||
* config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
|
||||
|
10
config.guess
vendored
10
config.guess
vendored
@ -307,9 +307,6 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
||||
# 1.2 uses "1.2" for uname -r.
|
||||
echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
|
||||
exit 0 ;;
|
||||
Alpha*:OpenVMS:*:*)
|
||||
echo alpha-hp-vms
|
||||
exit 0 ;;
|
||||
Alpha\ *:Windows_NT*:*)
|
||||
# How do we know it's Interix rather than the generic POSIX subsystem?
|
||||
# Should we change UNAME_MACHINE based on the output of uname instead
|
||||
@ -1260,6 +1257,13 @@ EOF
|
||||
*:DragonFly:*:*)
|
||||
echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
|
||||
exit 0 ;;
|
||||
*:*VMS:*:*)
|
||||
UNAME_MACHINE=`(uname -p) 2>/dev/null`
|
||||
case "${UNAME_MACHINE}" in
|
||||
A*) echo alpha-dec-vms && exit 0 ;;
|
||||
I*) echo ia64-dec-vms && exit 0 ;;
|
||||
V*) echo vax-dec-vms && exit 0 ;;
|
||||
esac
|
||||
esac
|
||||
|
||||
#echo '(No uname command or uname output not recognized.)' 1>&2
|
||||
|
Loading…
x
Reference in New Issue
Block a user