From: Lutz Jänicke Date: Fri, 7 Sep 2001 12:13:10 +0000 (+0000) Subject: Recognize OpenUNIX-8 with compiler X-Git-Tag: OpenSSL_0_9_6c~113^2~33 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=cb42ce0b671de019b8a094b7b817e0c0a53d2949 Recognize OpenUNIX-8 with compiler --- diff --git a/config b/config index 21202f3824..d244d405e7 100755 --- a/config +++ b/config @@ -584,7 +584,13 @@ EOF *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;; *-*-osf) OUT="alphaold-cc" ;; *-*-tru64) OUT="alpha-cc" ;; - *-*-OpenUNIX8*) OUT="OpenUNIX-8" ;; + *-*-OpenUNIX*) + if [ "$CC" = "gcc" ]; then + OUT="OpenUNIX-8-gcc" + else + OUT="OpenUNIX-8" + fi + ;; *-*-unixware7) OUT="unixware-7" ;; *-*-UnixWare7) OUT="unixware-7" ;; *-*-Unixware7) OUT="unixware-7" ;;