mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-29 02:26:36 +12:00
Report from Przemyslaw Szczygielski.
* config.guess (i*86:AROS:*:*): Detect AROS. * config.sub (aros, aros-*): Handle these. * testsuite/config-guess.data: Add test cases. * testsuite/config-sub.data: Likewise.
This commit is contained in:
parent
0ea4734642
commit
296058738a
@ -1,3 +1,11 @@
|
|||||||
|
2009-02-03 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
|
Report from Przemyslaw Szczygielski.
|
||||||
|
* config.guess (i*86:AROS:*:*): Detect AROS.
|
||||||
|
* config.sub (aros, aros-*): Handle these.
|
||||||
|
* testsuite/config-guess.data: Add test cases.
|
||||||
|
* testsuite/config-sub.data: Likewise.
|
||||||
|
|
||||||
2009-01-19 Robert Millan <rmh@aybabtu.com>
|
2009-01-19 Robert Millan <rmh@aybabtu.com>
|
||||||
|
|
||||||
* config.sub: Handle -kopensolaris*.
|
* config.sub: Handle -kopensolaris*.
|
||||||
|
5
config.guess
vendored
5
config.guess
vendored
@ -4,7 +4,7 @@
|
|||||||
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2008-12-19'
|
timestamp='2009-02-03'
|
||||||
|
|
||||||
# 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
|
||||||
@ -1350,6 +1350,9 @@ EOF
|
|||||||
i*86:rdos:*:*)
|
i*86:rdos:*:*)
|
||||||
echo ${UNAME_MACHINE}-pc-rdos
|
echo ${UNAME_MACHINE}-pc-rdos
|
||||||
exit ;;
|
exit ;;
|
||||||
|
i*86:AROS:*:*)
|
||||||
|
echo ${UNAME_MACHINE}-pc-aros
|
||||||
|
exit ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
#echo '(No uname command or uname output not recognized.)' 1>&2
|
#echo '(No uname command or uname output not recognized.)' 1>&2
|
||||||
|
8
config.sub
vendored
8
config.sub
vendored
@ -4,7 +4,7 @@
|
|||||||
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2009-01-19'
|
timestamp='2009-02-03'
|
||||||
|
|
||||||
# This file is (in principle) common to ALL GNU software.
|
# This file is (in principle) common to ALL GNU software.
|
||||||
# The presence of a machine in this file suggests that SOME GNU software
|
# The presence of a machine in this file suggests that SOME GNU software
|
||||||
@ -446,6 +446,10 @@ case $basic_machine in
|
|||||||
basic_machine=m68k-apollo
|
basic_machine=m68k-apollo
|
||||||
os=-bsd
|
os=-bsd
|
||||||
;;
|
;;
|
||||||
|
aros)
|
||||||
|
basic_machine=i386-pc
|
||||||
|
os=-aros
|
||||||
|
;;
|
||||||
aux)
|
aux)
|
||||||
basic_machine=m68k-apple
|
basic_machine=m68k-apple
|
||||||
os=-aux
|
os=-aux
|
||||||
@ -1259,7 +1263,7 @@ case $os in
|
|||||||
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
|
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
|
||||||
| -kopensolaris* \
|
| -kopensolaris* \
|
||||||
| -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
|
| -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
|
||||||
| -aos* \
|
| -aos* | -aros* \
|
||||||
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
|
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
|
||||||
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
|
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
|
||||||
| -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
|
| -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
|
||||||
|
@ -39,3 +39,4 @@ BePC 1.0 Haiku ignored i586-pc-haiku
|
|||||||
padre 2.6.15 Linux ignored sparc-unknown-linux-gnu
|
padre 2.6.15 Linux ignored sparc-unknown-linux-gnu
|
||||||
ppc 2.6.9-22 Linux ignored powerpc-unknown-linux-gnu
|
ppc 2.6.9-22 Linux ignored powerpc-unknown-linux-gnu
|
||||||
i686 5.11-686 GNU/kOpenSolaris ignored i686-unknown-kopensolaris5.11-gnu
|
i686 5.11-686 GNU/kOpenSolaris ignored i686-unknown-kopensolaris5.11-gnu
|
||||||
|
i386 12.1 AROS ignored i386-pc-aros
|
||||||
|
@ -147,3 +147,5 @@ sh4aeb-elf sh4aeb-unknown-elf
|
|||||||
lm32-elf lm32-unknown-elf
|
lm32-elf lm32-unknown-elf
|
||||||
lm32 lm32-unknown-none
|
lm32 lm32-unknown-none
|
||||||
i686-kopensolaris5.11-gnu i686-pc-kopensolaris5.11-gnu
|
i686-kopensolaris5.11-gnu i686-pc-kopensolaris5.11-gnu
|
||||||
|
aros i386-pc-aros
|
||||||
|
i386-aros i386-pc-aros
|
||||||
|
Loading…
x
Reference in New Issue
Block a user