diff options
author | Richard Levitte <levitte@openssl.org> | 2000-12-01 02:11:54 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-12-01 02:11:54 +0100 |
commit | 9b7a552f4bdc576a65669fd049e8bcb05ef12236 (patch) | |
tree | 4dfad15efc99f6dd49ef5f0a23f8585b521bcf36 /config | |
parent | COMP_zlib should always be declared, even if it is not functional. (diff) | |
download | openssl-9b7a552f4bdc576a65669fd049e8bcb05ef12236.tar.xz openssl-9b7a552f4bdc576a65669fd049e8bcb05ef12236.zip |
Recognise Darwin as well. For now, have it do exactly the same thing as for Rhapsody
Diffstat (limited to 'config')
-rwxr-xr-x | config | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -203,6 +203,10 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in echo "ppc-apple-rhapsody"; exit 0 ;; + Darwin:*) + echo "ppc-apple-darwin"; exit 0 + ;; + SunOS:5.*) echo "${MACHINE}-whatever-solaris2"; exit 0 ;; @@ -433,6 +437,7 @@ EOF m68k-*-linux*) OUT="linux-m68k" ;; ia64-*-linux?) OUT="linux-ia64" ;; ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;; + ppc-apple-darwin) OUT="darwin-ppc-cc" ;; sparc64-*-linux2) #Before we can uncomment following lines we have to wait at least #till 64-bit glibc for SPARC is operational:-( |