mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-29 02:26:36 +12:00
Reported by Leif Ekblad <leif@rdos.net>:
* config.guess (i*86:rdos:*:*): New. * config.sub: Handle rdos. * testsuite/config-guess.data: Add test case for RDOS. * testsuite/config-sub.data: Likewise.
This commit is contained in:
parent
57a36d27a8
commit
3b2d78786a
@ -1,3 +1,11 @@
|
|||||||
|
2005-12-11 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
|
Reported by Leif Ekblad <leif@rdos.net>:
|
||||||
|
* config.guess (i*86:rdos:*:*): New.
|
||||||
|
* config.sub: Handle rdos.
|
||||||
|
* testsuite/config-guess.data: Add test case for RDOS.
|
||||||
|
* testsuite/config-sub.data: Likewise.
|
||||||
|
|
||||||
2005-12-09 Ben Elliston <bje@gnu.org>
|
2005-12-09 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
Reported by Jan-Benedict Glaw <jbglaw@lug-owl.de>:
|
Reported by Jan-Benedict Glaw <jbglaw@lug-owl.de>:
|
||||||
|
5
config.guess
vendored
5
config.guess
vendored
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||||
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2005-12-09'
|
timestamp='2005-12-11'
|
||||||
|
|
||||||
# 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
|
||||||
@ -1266,6 +1266,9 @@ EOF
|
|||||||
i*86:skyos:*:*)
|
i*86:skyos:*:*)
|
||||||
echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
|
echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
|
||||||
exit ;;
|
exit ;;
|
||||||
|
i*86:rdos:*:*)
|
||||||
|
echo ${UNAME_MACHINE}-pc-rdos
|
||||||
|
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
@ -3,7 +3,7 @@
|
|||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||||||
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2005-12-09'
|
timestamp='2005-12-11'
|
||||||
|
|
||||||
# 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
|
||||||
@ -873,6 +873,10 @@ case $basic_machine in
|
|||||||
basic_machine=i586-unknown
|
basic_machine=i586-unknown
|
||||||
os=-pw32
|
os=-pw32
|
||||||
;;
|
;;
|
||||||
|
rdos)
|
||||||
|
basic_machine=i386-pc
|
||||||
|
os=-rdos
|
||||||
|
;;
|
||||||
rom68k)
|
rom68k)
|
||||||
basic_machine=m68k-rom68k
|
basic_machine=m68k-rom68k
|
||||||
os=-coff
|
os=-coff
|
||||||
@ -1202,7 +1206,7 @@ case $os in
|
|||||||
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
||||||
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
||||||
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
||||||
| -skyos* | -haiku*)
|
| -skyos* | -haiku* | -rdos*)
|
||||||
# Remember, each alternative MUST END IN *, to match a version number.
|
# Remember, each alternative MUST END IN *, to match a version number.
|
||||||
;;
|
;;
|
||||||
-qnx*)
|
-qnx*)
|
||||||
|
@ -15,3 +15,4 @@ x86_64 1.5.18(0.132/4/2) CYGWIN_NT-5.2 ignored x86_64-unknown-cygwin
|
|||||||
x86 5.0 Interix ignored i586-pc-interix5
|
x86 5.0 Interix ignored i586-pc-interix5
|
||||||
ppc64 2.6.9-22 Linux ignored powerpc64-unknown-linux-gnu
|
ppc64 2.6.9-22 Linux ignored powerpc64-unknown-linux-gnu
|
||||||
vax 2.6.15 Linux ignored vax-dec-linux-gnu
|
vax 2.6.15 Linux ignored vax-dec-linux-gnu
|
||||||
|
i586 ignored rdos ignored i586-pc-rdos
|
||||||
|
@ -74,3 +74,5 @@ i386-pc-sco6 i386-pc-sco5v6
|
|||||||
i386-pc-sco5v6 i386-pc-sco5v6
|
i386-pc-sco5v6 i386-pc-sco5v6
|
||||||
mt mt-unknown-none
|
mt mt-unknown-none
|
||||||
mt-elf mt-unknown-elf
|
mt-elf mt-unknown-elf
|
||||||
|
rdos i386-pc-rdos
|
||||||
|
i586-rdos i586-pc-rdos
|
||||||
|
Loading…
x
Reference in New Issue
Block a user