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

View File

@ -1,3 +1,8 @@
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>.
2000-02-08 John W. Eaton <jwe@bevo.che.wisc.edu>
* config.sub: Recognize sv1-cray as a basic_machine type.

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