From 149375f88d3b0e46c6deb268101e4534ce504b46 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Tue, 15 Feb 2000 09:58:57 +0000 Subject: [PATCH] 2000-02-15 Ben Elliston * config.guess: Detect MacOS X on PowerPC and other machines. From Stephen G. Johnson . --- ChangeLog | 5 +++++ config.guess | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index d20ad7b..fbca356 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-02-15 Ben Elliston + + * config.guess: Detect MacOS X on PowerPC and other machines. + From Stephen G. Johnson . + 2000-02-08 John W. Eaton * config.sub: Recognize sv1-cray as a basic_machine type. diff --git a/config.guess b/config.guess index c97b12c..b91aba4 100755 --- a/config.guess +++ b/config.guess @@ -983,6 +983,12 @@ 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 ;; *:QNX:*:4*) echo i386-qnx-qnx${UNAME_VERSION} exit 0 ;;