mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-29 02:26:36 +12:00
2005-12-23 Ben Elliston <bje@gnu.org>
From Takahashi Yoshihiro <nyan@jp.FreeBSD.org>: * config.guess (pc98:FreeBSD:*:*) Add special case. * config.sub (pc98, pc98-*): New. * testsuite/config-guess.data: Add test case. * testsuite/config-sub.data: Ditto.
This commit is contained in:
parent
4b24d52332
commit
dce614dd94
@ -1,3 +1,11 @@
|
|||||||
|
2005-12-23 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
|
From Takahashi Yoshihiro <nyan@jp.FreeBSD.org>:
|
||||||
|
* config.guess (pc98:FreeBSD:*:*) Add special case.
|
||||||
|
* config.sub (pc98, pc98-*): New.
|
||||||
|
* testsuite/config-guess.data: Add test case.
|
||||||
|
* testsuite/config-sub.data: Ditto.
|
||||||
|
|
||||||
2005-12-22 Ben Elliston <bje@gnu.org>
|
2005-12-22 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
From John Williams <jwilliams@itee.uq.edu.au>:
|
From John Williams <jwilliams@itee.uq.edu.au>:
|
||||||
|
9
config.guess
vendored
9
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-13'
|
timestamp='2005-12-23'
|
||||||
|
|
||||||
# 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
|
||||||
@ -764,7 +764,12 @@ EOF
|
|||||||
echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
|
echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
|
||||||
exit ;;
|
exit ;;
|
||||||
*:FreeBSD:*:*)
|
*:FreeBSD:*:*)
|
||||||
echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
|
case ${UNAME_MACHINE} in
|
||||||
|
pc98)
|
||||||
|
echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
|
||||||
|
*)
|
||||||
|
echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
|
||||||
|
esac
|
||||||
exit ;;
|
exit ;;
|
||||||
i*:CYGWIN*:*)
|
i*:CYGWIN*:*)
|
||||||
echo ${UNAME_MACHINE}-pc-cygwin
|
echo ${UNAME_MACHINE}-pc-cygwin
|
||||||
|
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-22'
|
timestamp='2005-12-23'
|
||||||
|
|
||||||
# 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
|
||||||
@ -818,6 +818,12 @@ case $basic_machine in
|
|||||||
pc532 | pc532-*)
|
pc532 | pc532-*)
|
||||||
basic_machine=ns32k-pc532
|
basic_machine=ns32k-pc532
|
||||||
;;
|
;;
|
||||||
|
pc98)
|
||||||
|
basic_machine=i386-pc
|
||||||
|
;;
|
||||||
|
pc98-*)
|
||||||
|
basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
|
||||||
|
;;
|
||||||
pentium | p5 | k5 | k6 | nexgen | viac3)
|
pentium | p5 | k5 | k6 | nexgen | viac3)
|
||||||
basic_machine=i586-pc
|
basic_machine=i586-pc
|
||||||
;;
|
;;
|
||||||
|
@ -16,3 +16,4 @@ 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
|
i586 ignored rdos ignored i586-pc-rdos
|
||||||
|
pc98 7.0 FreeBSD ignored i386-unknown-freebsd7.0
|
||||||
|
@ -11,6 +11,7 @@ i386-linux i386-pc-linux-gnu
|
|||||||
i386-netbsd i386-pc-netbsd
|
i386-netbsd i386-pc-netbsd
|
||||||
i386-openbsd i386-pc-openbsd
|
i386-openbsd i386-pc-openbsd
|
||||||
i386-freebsd i386-pc-freebsd
|
i386-freebsd i386-pc-freebsd
|
||||||
|
pc98-freebsd i386-pc-freebsd
|
||||||
i386-elf i386-pc-elf
|
i386-elf i386-pc-elf
|
||||||
i486-elf i486-pc-elf
|
i486-elf i486-pc-elf
|
||||||
i586-elf i586-pc-elf
|
i586-elf i586-pc-elf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user