* config.guess (NCR*:*:4.2:*, MPRAS*:*:4.2:*): Add detection for

NCR MPRAS.  From Lucas Silacci <Lucas.Silacci@Teradata.com>.
This commit is contained in:
Ben Elliston 2008-12-19 12:02:46 +11:00
parent 8813f847cc
commit 3aa48a5705
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-12-19 Ben Elliston <bje@gnu.org>
* config.guess (NCR*:*:4.2:*, MPRAS*:*:4.2:*): Add detection for
NCR MPRAS. From Lucas Silacci <Lucas.Silacci@Teradata.com>.
2008-12-18 Ben Elliston <bje@gnu.org>
* config.guess (i86pc:SunOS:5.*:*, i86xen:SunOS:5.*:*): Remove the

12
config.guess vendored
View File

@ -4,7 +4,7 @@
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
# Free Software Foundation, Inc.
timestamp='2008-12-18'
timestamp='2008-12-19'
# 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
@ -1154,6 +1154,16 @@ EOF
3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
&& { echo i486-ncr-sysv4; exit; } ;;
NCR*:*:4.2:* | MPRAS*:*:4.2:*)
OS_REL='.3'
test -r /etc/.relid \
&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
&& { echo i486-ncr-sysv4.3${OS_REL}; exit; }
/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
&& { echo i586-ncr-sysv4.3${OS_REL}; exit; }
/bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
&& { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
echo m68k-unknown-lynxos${UNAME_RELEASE}
exit ;;