2000-05-07 Ben Elliston <bje@redhat.com>

* config.guess: Mac OS X will never return "Mac OS" as a uname
	value, so remove these cases and punt to the "Darwin" case.
	From Wilfredo Sanchez <wsanchez@apple.com>.
This commit is contained in:
Ben Elliston 2000-05-07 10:36:22 +00:00
parent 11a79999eb
commit f38c05cf41
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2000-05-07 Ben Elliston <bje@redhat.com>
* config.guess: Mac OS X will never return "Mac OS" as a uname
value, so remove these cases and punt to the "Darwin" case.
From Wilfredo Sanchez <wsanchez@apple.com>.
2000-04-30 Ben Elliston <bje@redhat.com>
* config.guess: Handle Fujitsu UXP/DS. From Fu-Chuan Tsai

6
config.guess vendored
View File

@ -1018,12 +1018,6 @@ EOF
*:Rhapsody:*:*)
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
exit 0 ;;
Power*:Mac*OS:*:*)
echo powerpc-apple-macos${UNAME_RELEASE}
exit 0 ;;
*:Mac*OS:*:*)
echo ${UNAME_MACHINE}-apple-macos${UNAME_RELEASE}
exit 0 ;;
*:Darwin:*:*)
echo `uname -p`-apple-darwin${UNAME_RELEASE}
exit 0 ;;