From f38c05cf413256b4c613ef129dc28ce41e9d849a Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Sun, 7 May 2000 10:36:22 +0000 Subject: [PATCH] 2000-05-07 Ben Elliston * 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 . --- ChangeLog | 6 ++++++ config.guess | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 58b8d5a..ff23ef3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-05-07 Ben Elliston + + * 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 . + 2000-04-30 Ben Elliston * config.guess: Handle Fujitsu UXP/DS. From Fu-Chuan Tsai diff --git a/config.guess b/config.guess index f6cf38f..0ce538b 100755 --- a/config.guess +++ b/config.guess @@ -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 ;;