From: Lutz Jänicke Date: Sun, 12 May 2002 19:44:19 +0000 (+0000) Subject: Recognize PPC64 target. X-Git-Tag: OpenSSL_0_9_7-beta1~53 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ad2057500a056297b52b40d6b30f320f0d2a8024;p=oweals%2Fopenssl.git Recognize PPC64 target. Submitted by: Reviewed by: PR: 26 --- diff --git a/config b/config index df973edddc..3d443da6fb 100755 --- a/config +++ b/config @@ -517,6 +517,10 @@ EOF ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}` rm dummy dummy.c ;; + ppc64-*-linux2) + #Use the standard target for PPC architecture until we create a + #special one for the 64bit architecture. + OUT="linux-ppc" ;; ppc-*-linux2) OUT="linux-ppc" ;; m68k-*-linux*) OUT="linux-m68k" ;; ia64-*-linux?) OUT="linux-ia64" ;;