mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-30 11:06:36 +12:00
2003-01-10 Stuart Hastings <stuart@apple.com>
* config.guess: Make i686 the default for Darwin/x86.
This commit is contained in:
parent
917fe5ba95
commit
6651865a83
@ -1,3 +1,7 @@
|
|||||||
|
2003-01-10 Stuart Hastings <stuart@apple.com>
|
||||||
|
|
||||||
|
* config.guess: Make i686 the default for Darwin/x86.
|
||||||
|
|
||||||
2003-01-03 Scott Kamp <dingo@microbsd.net>
|
2003-01-03 Scott Kamp <dingo@microbsd.net>
|
||||||
|
|
||||||
* config.guess: Detect MicroBSD operating system on i386 CPUs.
|
* config.guess: Detect MicroBSD operating system on i386 CPUs.
|
||||||
|
8
config.guess
vendored
8
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 Free Software Foundation, Inc.
|
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2003-01-03'
|
timestamp='2003-01-10'
|
||||||
|
|
||||||
# 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
|
||||||
@ -1152,7 +1152,11 @@ EOF
|
|||||||
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
|
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
*:Darwin:*:*)
|
*:Darwin:*:*)
|
||||||
echo `uname -p`-apple-darwin${UNAME_RELEASE}
|
case `uname -p` in
|
||||||
|
*86) UNAME_PROCESSOR=i686 ;;
|
||||||
|
powerpc) UNAME_PROCESSOR=powerpc ;;
|
||||||
|
esac
|
||||||
|
echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
*:procnto*:*:* | *:QNX:[0123456789]*:*)
|
*:procnto*:*:* | *:QNX:[0123456789]*:*)
|
||||||
UNAME_PROCESSOR=`uname -p`
|
UNAME_PROCESSOR=`uname -p`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user