3 # OpenSSL config: determine the operating system and run ./Configure
5 # "config -h" for usage information.
7 # this is a merge of minarch and GuessOS from the Apache Group.
8 # Originally written by Tim Hudson <tjh@cryptsoft.com>.
10 # Original Apache Group comments on GuessOS
12 # Simple OS/Platform guesser. Similar to config.guess but
13 # much, much smaller. Since it was developed for use with
14 # Apache, it follows under Apache's regular licensing
15 # with one specific addition: Any changes or additions
16 # to this script should be Emailed to the Apache
17 # group (apache@apache.org) in general and to
18 # Jim Jagielski (jim@jaguNET.com) in specific.
20 # Be as similar to the output of config.guess/config.sub
27 # pick up any command line args to config
31 -d*) options=$options" --debug";;
33 -h*) TEST="true"; cat <<EOF
34 Usage: config [options]
35 -d Add a debug- prefix to machine choice.
36 -t Test mode, do not run the Configure perl script.
39 Any other text will be passed to the Configure perl script.
40 See INSTALL for instructions.
44 *) options=$options" $i" ;;
48 # First get uname entries that we use below
50 [ "$MACHINE" ] || MACHINE=`(uname -m) 2>/dev/null` || MACHINE="unknown"
51 [ "$RELEASE" ] || RELEASE=`(uname -r) 2>/dev/null` || RELEASE="unknown"
52 [ "$SYSTEM" ] || SYSTEM=`(uname -s) 2>/dev/null` || SYSTEM="unknown"
53 [ "$BUILD" ] || VERSION=`(uname -v) 2>/dev/null` || VERSION="unknown"
56 # Now test for ISC and SCO, since it is has a braindamaged uname.
58 # We need to work around FreeBSD 1.1.5.1
60 XREL=`uname -X 2>/dev/null | grep "^Release" | awk '{print $3}'`
61 if [ "x$XREL" != "x" ]; then
62 if [ -f /etc/kconfig ]; then
65 echo "${MACHINE}-whatever-isc4"; exit 0
71 echo "whatever-whatever-sco3"; exit 0
74 echo "whatever-whatever-sco5"; exit 0
78 x2.0*) echo "whatever-whatever-unixware20"; exit 0 ;;
79 x2.1*) echo "whatever-whatever-unixware21"; exit 0 ;;
80 x2*) echo "whatever-whatever-unixware2"; exit 0 ;;
84 echo "whatever-whatever-unixware1"; exit 0
88 # We hardcode i586 in place of ${MACHINE} for the
89 # following reason. The catch is that even though Pentium
90 # is minimum requirement for platforms in question,
91 # ${MACHINE} gets always assigned to i386. Now, problem
92 # with i386 is that it makes ./config pass 386 to
93 # ./Configure, which in turn makes make generate
94 # inefficient SHA-1 (for this moment) code.
95 x[678]*) echo "i586-sco-unixware7"; exit 0 ;;
101 # Now we simply scan though... In most cases, the SYSTEM info is enough
103 case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
105 echo "m68k-apple-aux3"; exit 0
109 echo "${MACHINE}-ibm-aix"; exit 0
113 echo "${MACHINE}-ibm-aix"; exit 0
117 echo "${MACHINE}-ibm-aix3"; exit 0
121 echo "${MACHINE}-hi-hiux"; exit 0
125 HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
127 1[0-9].*) # HPUX 10 and 11 targets are unified
128 echo "${MACHINE}-hp-hpux1x"; exit 0
131 echo "${MACHINE}-hp-hpux"; exit 0
137 echo "mips2-sgi-irix"; exit 0
141 echo "mips3-sgi-irix"; exit 0
145 echo "mips4-sgi-irix64"; exit 0
149 echo "${MACHINE}-whatever-linux2"; exit 0
153 echo "${MACHINE}-whatever-linux1"; exit 0
157 echo "hurd-x86"; exit 0;
161 echo "${MACHINE}-lynx-lynxos"; exit 0
164 BSD/OS:4.*) # BSD/OS always says 386
165 echo "i486-whatever-bsdi4"; exit 0
168 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
169 case `/sbin/sysctl -n hw.model` in
171 echo "i586-whatever-bsdi"; exit 0
174 echo "i386-whatever-bsdi"; exit 0
180 echo "${MACHINE}-whatever-bsdi"; exit 0
184 VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
185 MACH=`sysctl -n hw.model`
188 *386* ) MACH="i386" ;;
189 *486* ) MACH="i486" ;;
190 Pentium\ II*) MACH="i686" ;;
191 Pentium* ) MACH="i586" ;;
192 * ) MACH="$MACHINE" ;;
195 i[0-9]86 ) ARCH="pc" ;;
197 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
201 echo "${MACHINE}-whatever-freebsd"; exit 0
205 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
209 echo "${MACHINE}-whatever-netbsd"; exit 0
213 echo "${MACHINE}-whatever-openbsd"; exit 0
217 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
221 OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'`
224 echo "${MACHINE}-dec-tru64"; exit 0
227 echo "${MACHINE}-dec-osf"; exit 0
230 echo "${MACHINE}-dec-osf"; exit 0
238 echo "${MACHINE}-whatever-qnx4"
241 echo "${MACHINE}-whatever-qnx6"
244 echo "${MACHINE}-whatever-qnx"
251 echo "i860-intel-osf1"; exit 0
255 echo "ppc-apple-rhapsody"; exit 0
261 echo "ppc-apple-darwin${VERSION}"
264 echo "i686-apple-darwin${VERSION}"
271 echo "${MACHINE}-whatever-solaris2"; exit 0
275 echo "${MACHINE}-sun-sunos4"; exit 0
279 echo "${MACHINE}-whatever-sysv4"; exit 0
283 echo "i386-stratus-vos"; exit 0
287 echo "hppa1.1-stratus-vos"; exit 0
291 echo "${MACHINE}-whatever-sysv4"; exit 0
295 echo "${MACHINE}-whatever-sysv4"; exit 0
298 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
299 echo "i486-ncr-sysv4"; exit 0
303 echo "${MACHINE}-unknown-ultrix"; exit 0
307 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
311 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
315 echo "${MACHINE}-ncr-sysv4"; exit 0
319 echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
323 echo "${MACHINE}-whatever-mingw"; exit 0;
328 echo "${MACHINE}-whatever-cygwin_pre1.3"
331 echo "${MACHINE}-whatever-cygwin"
338 echo "${MACHINE}-whatever-vxworks"; exit 0;
343 # Ugg. These are all we can determine by what we know about
344 # the output of uname. Be more creative:
347 # Do the Apollo stuff first. Here, we just simply assume
348 # that the existence of the /usr/apollo directory is proof
350 if [ -d /usr/apollo ]; then
351 echo "whatever-apollo-whatever"
356 ISNEXT=`hostinfo 2>/dev/null`
359 echo "whatever-next-nextstep3.3"; exit 0
362 echo "whatever-next-nextstep"; exit 0
366 # At this point we gone through all the one's
369 echo "${MACHINE}-whatever-${SYSTEM}"
373 # ---------------------------------------------------------------------------
374 # this is where the translation occurs into SSLeay terms
375 # ---------------------------------------------------------------------------
377 # Only set CC if not supplied already
378 if [ -z "$CROSS_COMPILE$CC" ]; then
379 GCCVER=`sh -c "gcc -dumpversion" 2>/dev/null`
380 if [ "$GCCVER" != "" ]; then
381 # then strip off whatever prefix egcs prepends the number with...
382 # Hopefully, this will work for any future prefixes as well.
383 GCCVER=`echo $GCCVER | LC_ALL=C sed 's/^[a-zA-Z]*\-//'`
384 # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion
385 # does give us what we want though, so we use that. We just just the
386 # major and minor version numbers.
387 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
388 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
395 if [ "$SYSTEM" = "HP-UX" ];then
396 # By default gcc is a ILP32 compiler (with long long == 64).
398 if [ $GCCVER -ge 30 ]; then
399 # PA64 support only came in with gcc 3.0.x.
400 # We check if the preprocessor symbol __LP64__ is defined...
401 if echo "__LP64__" | gcc -v -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null; then
402 : # __LP64__ has slipped through, it therefore is not defined
408 if [ "$SYSTEM" = "SunOS" ]; then
409 if [ $GCCVER -ge 30 ]; then
410 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
411 # to be working, at the very least 'make test' passes...
412 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
418 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
419 CCVER=`(cc -V 2>&1) 2>/dev/null | \
420 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
421 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
423 if [ $MACHINE != i86pc -a $CCVER -gt 40 ]; then
424 CC=cc # overrides gcc!!!
425 if [ $CCVER -eq 50 ]; then
426 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
427 echo " patch #107357-01 or later applied."
433 if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
434 # check for Compaq C, expected output is "blah-blah C Vx.x"
435 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
436 egrep -e '.* C V[0-9]\.[0-9]' | \
437 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
439 if [ $CCCVER -gt 60 ]; then
440 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
441 # only on hash routines and des, otherwise gcc (2.95)
442 # keeps along rather tight...
446 if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc
447 (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
452 # read the output of the embedded GuessOS
455 echo Operating system: $GUESSOS
457 # now map the output into SSLeay terms ... really should hack into the
458 # script above so we end up with values in vars but that would take
459 # more time that I want to waste at the moment
468 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
470 if [ $CPU -ge 4000 ]; then
471 options="$options -mips2"
476 #CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
478 #if [ $CPU -ge 5000 ]; then
479 # options="$options -mips4"
481 # options="$options -mips3"
486 echo "WARNING! If you wish to build 64-bit library, then you have to"
487 echo " invoke './Configure irix64-mips4-$CC' *manually*."
488 if [ "$TEST" = "false" -a -t 1 ]; then
489 echo " You have about 5 seconds to press Ctrl-C to abort."
490 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
492 #CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
494 #if [ $CPU -ge 5000 ]; then
495 # options="$options -mips4"
497 # options="$options -mips3"
501 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
503 ISA64=`(sysctl -n hw.optional.64bitops) 2>/dev/null`
504 if [ "$ISA64" = "1" -a -z "$KERNEL_BITS" ]; then
505 echo "WARNING! If you wish to build 64-bit library, then you have to"
506 echo " invoke './Configure darwin64-ppc-cc' *manually*."
507 if [ "$TEST" = "false" -a -t 1 ]; then
508 echo " You have about 5 seconds to press Ctrl-C to abort."
509 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
512 if [ "$ISA64" = "1" -a "$KERNEL_BITS" = "64" ]; then
513 OUT="darwin64-ppc-cc"
518 ISA64=`(sysctl -n hw.optional.x86_64) 2>/dev/null`
519 if [ "$ISA64" = "1" -a -z "$KERNEL_BITS" ]; then
520 echo "WARNING! If you wish to build 64-bit library, then you have to"
521 echo " invoke './Configure darwin64-x86_64-cc $options' *manually*."
522 if [ "$TEST" = "false" -a -t 1 ]; then
523 echo " You have about 5 seconds to press Ctrl-C to abort."
524 # The stty technique used elsewhere doesn't work on
525 # MacOS. At least, right now on this Mac.
529 if [ "$ISA64" = "1" -a "$KERNEL_BITS" = "64" ]; then
530 OUT="darwin64-x86_64-cc"
535 options="$options -arch%20armv6 -arch%20armv7"
536 OUT="iphoneos-cross" ;;
538 options="$options -arch%20${MACHINE}"
539 OUT="iphoneos-cross" ;;
540 arm64-*-iphoneos|*-*-ios64)
543 ISA=`awk '/cpu model/{print$4;exit(0);}' /proc/cpuinfo`
544 case ${ISA:-generic} in
545 *[678]) OUT="linux-alpha+bwx-$CC" ;;
546 *) OUT="linux-alpha-$CC" ;;
548 if [ "$CC" = "gcc" ]; then
549 case ${ISA:-generic} in
550 EV5|EV45) options="$options -mcpu=ev5";;
551 EV56|PCA56) options="$options -mcpu=ev56";;
552 *) options="$options -mcpu=ev6";;
557 if [ -z "$KERNEL_BITS" ]; then
558 echo "WARNING! If you wish to build 64-bit library, then you have to"
559 echo " invoke './Configure linux-ppc64' *manually*."
560 if [ "$TEST" = "false" -a -t 1 ]; then
561 echo " You have about 5 seconds to press Ctrl-C to abort."
562 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
565 if [ "$KERNEL_BITS" = "64" ]; then
569 (echo "__LP64__" | gcc -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null) || options="$options -m32"
572 ppc64le-*-linux2) OUT="linux-ppc64le" ;;
573 ppc-*-linux2) OUT="linux-ppc" ;;
575 echo "WARNING! If you wish to build 64-bit library, then you have to"
576 echo " invoke './Configure linux64-mips64' *manually*."
577 if [ "$TEST" = "false" -a -t 1 ]; then
578 echo " You have about 5 seconds to press Ctrl-C to abort."
579 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
583 mips*-*-linux2) OUT="linux-mips32" ;;
584 ppc60x-*-vxworks*) OUT="vxworks-ppc60x" ;;
585 ppcgen-*-vxworks*) OUT="vxworks-ppcgen" ;;
586 pentium-*-vxworks*) OUT="vxworks-pentium" ;;
587 simlinux-*-vxworks*) OUT="vxworks-simlinux" ;;
588 mips-*-vxworks*) OUT="vxworks-mips";;
589 ia64-*-linux?) OUT="linux-ia64" ;;
591 echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
592 echo " and wish to build 64-bit library, then you have to"
593 echo " invoke './Configure linux64-sparcv9' *manually*."
594 if [ "$TEST" = "false" -a -t 1 ]; then
595 echo " You have about 5 seconds to press Ctrl-C to abort."
596 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
598 OUT="linux-sparcv9" ;;
600 KARCH=`awk '/^type/{print$3;exit(0);}' /proc/cpuinfo`
601 case ${KARCH:-sun4} in
602 sun4u*) OUT="linux-sparcv9" ;;
603 sun4m) OUT="linux-sparcv8" ;;
604 sun4d) OUT="linux-sparcv8" ;;
605 *) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
608 # 64-bit builds under parisc64 linux are not supported and
609 # compiler is expected to generate 32-bit objects...
610 CPUARCH=`awk '/cpu family/{print substr($5,1,3); exit(0);}' /proc/cpuinfo`
611 CPUSCHEDULE=`awk '/^cpu.[ ]*: PA/{print substr($3,3); exit(0);}' /proc/cpuinfo`
613 # ??TODO ?? Model transformations
614 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
615 # assuming no further arch. identification will ever be used by GCC.
616 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
617 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
618 # for these chips in the future.
619 # PA7300LC -> 7100LC (1.1)
620 # PA8200 -> 8000 (2.0)
621 # PA8500 -> 8000 (2.0)
622 # PA8600 -> 8000 (2.0)
624 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8.00/8000/'`
625 # Finish Model transformations
627 options="$options -DB_ENDIAN -mschedule=$CPUSCHEDULE -march=$CPUARCH"
628 OUT="linux-generic32" ;;
629 armv[1-3]*-*-linux2) OUT="linux-generic32" ;;
630 armv[7-9]*-*-linux2) OUT="linux-armv4"; options="$options -march=armv7-a" ;;
631 arm*-*-linux2) OUT="linux-armv4" ;;
632 aarch64-*-linux2) OUT="linux-aarch64" ;;
633 sh*b-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
634 sh*-*-linux2) OUT="linux-generic32"; options="$options -DL_ENDIAN" ;;
635 m68k*-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
636 s390-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
638 # To be uncommented when glibc bug is fixed, see Configure...
639 #if egrep -e '^features.* highgprs' /proc/cpuinfo >/dev/null ; then
640 # echo "WARNING! If you wish to build \"highgprs\" 32-bit library, then you"
641 # echo " have to invoke './Configure linux32-s390x' *manually*."
642 # if [ "$TEST" = "false" -a -t -1 ]; then
643 # echo " You have about 5 seconds to press Ctrl-C to abort."
644 # (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
649 x86_64-*-linux?) OUT="linux-x86_64" ;;
650 *86-*-linux2) OUT="linux-elf"
651 if [ "$GCCVER" -gt 28 ]; then
652 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
653 options="$options -march=pentium"
655 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
656 options="$options -march=pentiumpro"
658 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
659 options="$options -march=k6"
662 *-*-linux1) OUT="linux-aout" ;;
663 *-*-linux2) OUT="linux-generic32" ;;
664 sun4[uv]*-*-solaris2)
665 OUT="solaris-sparcv9-$CC"
666 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
667 if [ "$ISA64" != "" -a "$KERNEL_BITS" = "" ]; then
668 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
669 echo "WARNING! If you wish to build 64-bit library, then you have to"
670 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
671 if [ "$TEST" = "false" -a -t 1 ]; then
672 echo " You have about 5 seconds to press Ctrl-C to abort."
673 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
675 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
676 # $GCC_ARCH denotes default ABI chosen by compiler driver
677 # (first one found on the $PATH). I assume that user
678 # expects certain consistency with the rest of his builds
679 # and therefore switch over to 64-bit. <appro>
680 OUT="solaris64-sparcv9-gcc"
681 echo "WARNING! If you wish to build 32-bit library, then you have to"
682 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
683 if [ "$TEST" = "false" -a -t 1 ]; then
684 echo " You have about 5 seconds to press Ctrl-C to abort."
685 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
687 elif [ "$GCC_ARCH" = "-m32" ]; then
688 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
689 echo " and wish to build 64-bit library, then you have to"
690 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
691 if [ "$TEST" = "false" -a -t 1 ]; then
692 echo " You have about 5 seconds to press Ctrl-C to abort."
693 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
697 if [ "$ISA64" != "" -a "$KERNEL_BITS" = "64" ]; then
698 OUT="solaris64-sparcv9-$CC"
701 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
702 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
703 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
705 ISA64=`(isalist) 2>/dev/null | grep amd64`
706 if [ "$ISA64" != "" -a ${KERNEL_BITS:-64} -eq 64 ]; then
707 OUT="solaris64-x86_64-$CC"
709 OUT="solaris-x86-$CC"
710 if [ `uname -r | sed -e 's/5\.//'` -lt 10 ]; then
711 options="$options no-sse2"
715 *-*-sunos4) OUT="sunos-$CC" ;;
717 *86*-*-bsdi4) OUT="BSD-x86-elf"; options="$options no-sse2 -ldl" ;;
718 alpha*-*-*bsd*) OUT="BSD-generic64"; options="$options -DL_ENDIAN" ;;
719 powerpc64-*-*bsd*) OUT="BSD-generic64"; options="$options -DB_ENDIAN" ;;
720 sparc64-*-*bsd*) OUT="BSD-sparc64" ;;
721 ia64-*-*bsd*) OUT="BSD-ia64" ;;
722 amd64-*-*bsd*) OUT="BSD-x86_64" ;;
723 *86*-*-*bsd*) # mimic ld behaviour when it's looking for libc...
724 if [ -L /usr/lib/libc.so ]; then # [Free|Net]BSD
725 libc=/usr/lib/libc.so
727 # ld searches for highest libc.so.* and so do we
728 libc=`(ls /usr/lib/libc.so.* /lib/libc.so.* | tail -1) 2>/dev/null`
730 case "`(file -L $libc) 2>/dev/null`" in
731 *ELF*) OUT="BSD-x86-elf" ;;
732 *) OUT="BSD-x86"; options="$options no-sse2" ;;
734 *-*-*bsd*) OUT="BSD-generic32" ;;
736 *-*-osf) OUT="osf1-alpha-cc" ;;
737 *-*-tru64) OUT="tru64-alpha-cc" ;;
739 if [ "$CC" = "gcc" ]; then
740 OUT="unixware-7-gcc" ; options="$options no-sse2"
742 OUT="unixware-7" ; options="$options no-sse2 -D__i386__"
745 *-*-[Uu]nix[Ww]are20*) OUT="unixware-2.0"; options="$options no-sse2 no-sha512" ;;
746 *-*-[Uu]nix[Ww]are21*) OUT="unixware-2.1"; options="$options no-sse2 no-sha512" ;;
748 options="$options no-threads no-shared no-asm no-dso"
751 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
753 if [ $CC = "gcc" -a $GCC_BITS = "64" ]; then
754 OUT="hpux64-parisc2-gcc"
756 [ "$KERNEL_BITS" ] || KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
757 KERNEL_BITS=${KERNEL_BITS:-32}
758 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
759 CPU_VERSION=${CPU_VERSION:-0}
760 # See <sys/unistd.h> for further info on CPU_VERSION.
761 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
762 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
767 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
768 OUT=${OUT:-"hpux-parisc2-${CC}"}
769 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
770 echo "WARNING! If you wish to build 64-bit library then you have to"
771 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
772 if [ "$TEST" = "false" -a -t 1 ]; then
773 echo " You have about 5 seconds to press Ctrl-C to abort."
774 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
777 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
778 OUT="hpux-parisc-${CC}"
779 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
780 OUT="hpux-parisc-${CC}"
781 else # Motorola(?) CPU
784 options="$options -D_REENTRANT" ;;
785 *-hpux) OUT="hpux-parisc-$CC" ;;
787 [ "$KERNEL_BITS" ] || KERNEL_BITS=`(getconf KERNEL_BITMODE) 2>/dev/null`
788 KERNEL_BITS=${KERNEL_BITS:-32}
789 OBJECT_MODE=${OBJECT_MODE:-32}
790 if [ "$CC" = "gcc" ]; then
792 if [ $OBJECT_MODE -eq 64 ]; then
793 echo 'Your $OBJECT_MODE was found to be set to 64'
796 elif [ $OBJECT_MODE -eq 64 ]; then
797 echo 'Your $OBJECT_MODE was found to be set to 64'
801 if [ $KERNEL_BITS -eq 64 ]; then
802 echo "WARNING! If you wish to build 64-bit kit, then you have to"
803 echo " invoke './Configure aix64-cc' *manually*."
804 if [ "$TEST" = "false" -a -t 1 ]; then
805 echo " You have ~5 seconds to press Ctrl-C to abort."
806 (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
810 if (lsattr -E -O -l `lsdev -c processor|awk '{print$1;exit}'` | grep -i powerpc) >/dev/null 2>&1; then
811 : # this applies even to Power3 and later, as they return PowerPC_POWER[345]
813 options="$options no-asm"
816 # these are all covered by the catchall below
817 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
818 *-*-cygwin) OUT="Cygwin" ;;
819 x86pc-*-qnx6) OUT="QNX6-i386" ;;
820 *-*-qnx6) OUT="QNX6" ;;
821 x86-*-android|i?86-*-android) OUT="android-x86" ;;
822 armv[7-9]*-*-android) OUT="android-armv7" ;;
823 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
826 # NB: This atalla support has been superseded by the ENGINE support
827 # That contains its own header and definitions anyway. Support can
828 # be enabled or disabled on any supported platform without external
829 # headers, eg. by adding the "hw-atalla" switch to ./config or
832 # See whether we can compile Atalla support
833 #if [ -f /usr/include/atasi.h ]
835 # options="$options -DATALLA"
838 if [ -n "$CONFIG_OPTIONS" ]; then
839 options="$options $CONFIG_OPTIONS"
842 if expr "$options" : '.*no\-asm' > /dev/null; then :; else
843 sh -c "$CROSS_COMPILE${CC:-gcc} -Wa,--help -c -o /tmp/null.$$.o -x assembler /dev/null && rm /tmp/null.$$.o" 2>&1 | \
844 grep \\--noexecstack >/dev/null && \
845 options="$options -Wa,--noexecstack"
848 # gcc < 2.8 does not support -march=ultrasparc
849 if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
851 echo "WARNING! Falling down to 'solaris-sparcv8-gcc'."
852 echo " Upgrade to gcc-2.8 or later."
854 OUT=solaris-sparcv8-gcc
856 if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
858 echo "WARNING! Falling down to 'linux-sparcv8'."
859 echo " Upgrade to gcc-2.8 or later."
865 i386-*) options="$options 386" ;;
868 for i in aes bf camellia cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa seed sha
870 if [ ! -d crypto/$i ]
872 options="$options no-$i"
876 if [ -z "$OUT" ]; then
880 if [ ".$PERL" = . ] ; then
881 for i in . `echo $PATH | sed 's/:/ /g'`; do
882 if [ -f "$i/perl5$EXE" ] ; then
889 if [ ".$PERL" = . ] ; then
890 for i in . `echo $PATH | sed 's/:/ /g'`; do
891 if [ -f "$i/perl$EXE" ] ; then
892 if "$i/perl$EXE" -e 'exit($]<5.0)'; then
900 if [ ".$PERL" = . ] ; then
901 echo "You need Perl 5."
905 # run Configure to check to see if we need to specify the
906 # compiler for the platform ... in which case we add it on
907 # the end ... otherwise we leave it off
909 $PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
910 if [ $? = "0" ]; then
916 $PERL ./Configure LIST | grep "$OUT" > /dev/null
917 if [ $? = "0" ]; then
918 echo Configuring for $OUT
920 if [ "$TEST" = "true" ]; then
921 echo $PERL ./Configure $OUT $options
923 $PERL ./Configure $OUT $options
926 echo "This system ($OUT) is not supported. See file INSTALL for details."