* config.guess (*:Interix*:*): Allow any uname -r value so that

Interix 2.* is detected.
This commit is contained in:
Ben Elliston 2009-11-08 22:45:06 +11:00
parent 24a57dca54
commit ac79b877bc
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-11-08 Jerker Bäck <jerker.back@gmail.com>
Ben Elliston <bje@gnu.org>
* config.guess (*:Interix*:*): Allow any uname -r value so that
Interix 2.* is detected.
2009-11-07 Yakup Akbay <yakbay@ubicom.com> 2009-11-07 Yakup Akbay <yakbay@ubicom.com>
Ben Elliston <bje@gnu.org> Ben Elliston <bje@gnu.org>

6
config.guess vendored
View File

@ -4,7 +4,7 @@
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
# Free Software Foundation, Inc. # Free Software Foundation, Inc.
timestamp='2009-09-18' timestamp='2009-11-08'
# This file is free software; you can redistribute it and/or modify it # This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by # under the terms of the GNU General Public License as published by
@ -807,12 +807,12 @@ EOF
i*:PW*:*) i*:PW*:*)
echo ${UNAME_MACHINE}-pc-pw32 echo ${UNAME_MACHINE}-pc-pw32
exit ;; exit ;;
*:Interix*:[3456]*) *:Interix*:*)
case ${UNAME_MACHINE} in case ${UNAME_MACHINE} in
x86) x86)
echo i586-pc-interix${UNAME_RELEASE} echo i586-pc-interix${UNAME_RELEASE}
exit ;; exit ;;
EM64T | authenticamd | genuineintel) authenticamd | genuineintel | EM64T)
echo x86_64-unknown-interix${UNAME_RELEASE} echo x86_64-unknown-interix${UNAME_RELEASE}
exit ;; exit ;;
IA64) IA64)