2000-02-15 Ben Elliston <bje@redhat.com>

* config.guess: Detect MacOS X on PowerPC and other machines.
	From Stephen G. Johnson <stephenj@gil-galad.mit.edu>.
This commit is contained in:
Ben Elliston
2000-02-15 09:58:57 +00:00
parent f71a82afca
commit 149375f88d
2 changed files with 11 additions and 0 deletions

6
config.guess vendored
View File

@ -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 ;;