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:
Ben Elliston
2005-12-22 23:50:20 +00:00
parent 4b24d52332
commit dce614dd94
5 changed files with 24 additions and 3 deletions

9
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 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
# under the terms of the GNU General Public License as published by
@ -764,7 +764,12 @@ EOF
echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
exit ;;
*: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 ;;
i*:CYGWIN*:*)
echo ${UNAME_MACHINE}-pc-cygwin