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*) PREFIX="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=`(uname -m) 2>/dev/null` || MACHINE="unknown"
51 RELEASE=`(uname -r) 2>/dev/null` || RELEASE="unknown"
52 SYSTEM=`(uname -s) 2>/dev/null` || SYSTEM="unknown"
53 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 x7*) echo "i586-sco-unixware7"; exit 0 ;;
96 x8*) echo "i586-unkn-OpenUNIX${VERSION}"; exit 0 ;;
102 # Now we simply scan though... In most cases, the SYSTEM info is enough
104 case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
106 MACHINE=`echo "$MACHINE" | sed -e 's/-/_/g'`
107 echo "parisc-hp-MPE/iX"; exit 0
110 echo "m68k-apple-aux3"; exit 0
114 echo "${MACHINE}-ibm-aix43"; exit 0
118 echo "${MACHINE}-ibm-aix43"; exit 0
122 echo "${MACHINE}-ibm-aix"; exit 0
126 echo "${MACHINE}-dg-dgux"; exit 0
130 echo "${MACHINE}-hi-hiux"; exit 0
134 HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
136 1[0-9].*) # HPUX 10 and 11 targets are unified
137 echo "${MACHINE}-hp-hpux10"; exit 0
140 echo "${MACHINE}-hp-hpux"; exit 0
146 echo "mips2-sgi-irix"; exit 0
150 echo "mips3-sgi-irix"; exit 0
154 echo "mips4-sgi-irix64"; exit 0
158 echo "${MACHINE}-whatever-linux2"; exit 0
162 echo "${MACHINE}-whatever-linux1"; exit 0
166 echo "hurd-x86"; exit 0;
170 echo "${MACHINE}-lynx-lynxos"; exit 0
173 BSD/OS:4.*) # BSD/OS always says 386
174 echo "i486-whatever-bsdi4"; exit 0
177 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
178 case `/sbin/sysctl -n hw.model` in
180 echo "i586-whatever-bsdi"; exit 0
183 echo "i386-whatever-bsdi"; exit 0
189 echo "${MACHINE}-whatever-bsdi"; exit 0
193 VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
194 MACH=`sysctl -n hw.model`
197 *386* ) MACH="i386" ;;
198 *486* ) MACH="i486" ;;
199 Pentium\ II*) MACH="i686" ;;
200 Pentium* ) MACH="i586" ;;
201 * ) MACH="$MACHINE" ;;
204 i[0-9]86 ) ARCH="pc" ;;
206 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
210 echo "${MACHINE}-whatever-freebsd"; exit 0
214 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
218 echo "${MACHINE}-whatever-netbsd"; exit 0
222 echo "${MACHINE}-whatever-openbsd"; exit 0
226 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
230 OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'`
233 echo "${MACHINE}-dec-tru64"; exit 0
236 echo "${MACHINE}-dec-osf"; exit 0
239 echo "${MACHINE}-dec-osf"; exit 0
247 echo "${MACHINE}-whatever-qnx4"
250 echo "${MACHINE}-whatever-qnx6"
253 echo "${MACHINE}-whatever-qnx"
260 echo "i860-intel-osf1"; exit 0
264 echo "ppc-apple-rhapsody"; exit 0
270 echo "ppc-apple-darwin${VERSION}"
273 echo "i386-apple-darwin${VERSION}"
280 echo "${MACHINE}-whatever-solaris2"; exit 0
284 echo "${MACHINE}-sun-sunos4"; exit 0
288 echo "${MACHINE}-whatever-sysv4"; exit 0
292 echo "${MACHINE}-whatever-sysv4"; exit 0
296 echo "${MACHINE}-whatever-sysv4"; exit 0
299 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
300 echo "i486-ncr-sysv4"; exit 0
304 echo "${MACHINE}-unknown-ultrix"; exit 0
308 echo "${MACHINE}-siemens-sysv4"; exit 0
312 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
316 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
320 echo "${MACHINE}-ncr-sysv4"; exit 0
324 echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
328 echo "mips-sony-newsos4"; exit 0;
334 echo "${MACHINE}-whatever-cygwin_pre1.3"
337 echo "${MACHINE}-whatever-cygwin"
344 echo "t3e-cray-unicosmk"; exit 0;
348 echo "j90-cray-unicos"; exit 0;
352 echo "nsr-tandem-nsk"; exit 0;
357 # Ugg. These are all we can determine by what we know about
358 # the output of uname. Be more creative:
361 # Do the Apollo stuff first. Here, we just simply assume
362 # that the existance of the /usr/apollo directory is proof
364 if [ -d /usr/apollo ]; then
365 echo "whatever-apollo-whatever"
370 ISNEXT=`hostinfo 2>/dev/null`
373 echo "whatever-next-nextstep3.3"; exit 0
376 echo "whatever-next-nextstep"; exit 0
380 # At this point we gone through all the one's
383 echo "${MACHINE}-whatever-${SYSTEM}"
387 # ---------------------------------------------------------------------------
388 # this is where the translation occurs into SSLeay terms
389 # ---------------------------------------------------------------------------
391 # figure out if gcc is available and if so we use it otherwise
392 # we fallback to whatever cc does on the system
393 GCCVER=`(gcc -dumpversion) 2>/dev/null`
394 if [ "$GCCVER" != "" ]; then
396 # then strip off whatever prefix egcs prepends the number with...
397 # Hopefully, this will work for any future prefixes as well.
398 GCCVER=`echo $GCCVER | sed 's/^[a-zA-Z]*\-//'`
399 # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion
400 # does give us what we want though, so we use that. We just just the
401 # major and minor version numbers.
402 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
403 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
408 if [ "$SYSTEM" = "HP-UX" ];then
409 # By default gcc is a ILP32 compiler (with long long == 64).
411 if [ $GCCVER -ge 30 ]; then
412 # PA64 support only came in with gcc 3.0.x.
413 # We look for the preprocessor symbol __LP64__ indicating
414 # 64bit bit long and pointer. sizeof(int) == 32 on HPUX64.
415 if gcc -v -E -x c /dev/null 2>&1 | grep __LP64__ > /dev/null; then
420 if [ "$SYSTEM" = "SunOS" ]; then
421 if [ $GCCVER -ge 30 ]; then
422 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
423 # to be working, at the very least 'make test' passes...
424 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
430 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
431 CCVER=`(cc -V 2>&1) 2>/dev/null | \
432 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
433 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
435 if [ $CCVER -gt 40 ]; then
436 CC=cc # overrides gcc!!!
437 if [ $CCVER -eq 50 ]; then
438 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
439 echo " patch #107357-01 or later applied."
442 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
447 if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
448 # check for Compaq C, expected output is "blah-blah C Vx.x"
449 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
450 egrep -e '.* C V[0-9]\.[0-9]' | \
451 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
453 if [ $CCCVER -gt 60 ]; then
454 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
455 # only on hash routines and des, otherwise gcc (2.95)
456 # keeps along rather tight...
460 if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc
461 (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
466 # read the output of the embedded GuessOS
469 echo Operating system: $GUESSOS
471 # now map the output into SSLeay terms ... really should hack into the
472 # script above so we end up with values in vars but that would take
473 # more time that I want to waste at the moment
476 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
478 if [ $CPU -ge 4000 ]; then
479 options="$options -mips2"
484 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
486 if [ $CPU -ge 5000 ]; then
487 options="$options -mips4"
489 options="$options -mips3"
494 echo "WARNING! If you wish to build 64-bit library, then you have to"
495 echo " invoke './Configure irix64-mips4-$CC' *manually*."
496 if [ "$TEST" = "false" ]; then
497 echo " You have about 5 seconds to press Ctrl-C to abort."
498 (stty -icanon min 0 time 50; read waste) < /dev/tty
500 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
502 if [ $CPU -ge 5000 ]; then
503 options="$options -mips4"
505 options="$options -mips3"
510 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
511 case ${ISA:-generic} in
512 *[67]) OUT="linux-alpha+bwx-$CC" ;;
513 *) OUT="linux-alpha-$CC" ;;
515 if [ "$CC" = "gcc" ]; then
516 case ${ISA:-generic} in
517 EV5|EV45) options="$options -mcpu=ev5";;
518 EV56|PCA56) options="$options -mcpu=ev56";;
519 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
525 #include <stdio.h> /* for printf() prototype */
526 int main (argc, argv) int argc; char *argv[]; {
528 printf ("linux-%s\n", argv[1]);
531 printf ("linux-%sel\n", argv[1]);
536 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
540 #Use the standard target for PPC architecture until we create a
541 #special one for the 64bit architecture.
543 ppc-*-linux2) OUT="linux-ppc" ;;
544 m68k-*-linux*) OUT="linux-m68k" ;;
545 ia64-*-linux?) OUT="linux-ia64" ;;
546 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
547 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
548 i386-apple-darwin*) OUT="darwin-i386-cc" ;;
550 echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
551 echo " and wish to build 64-bit library, then you have to"
552 echo " invoke './Configure linux64-sparcv9' *manually*."
553 if [ "$TEST" = "false" ]; then
554 echo " You have about 5 seconds to press Ctrl-C to abort."
555 (stty -icanon min 0 time 50; read waste) < /dev/tty
557 OUT="linux-sparcv9" ;;
559 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
560 case ${KARCH:-sun4} in
561 sun4u*) OUT="linux-sparcv9" ;;
562 sun4m) OUT="linux-sparcv8" ;;
563 sun4d) OUT="linux-sparcv8" ;;
564 *) OUT="linux-sparcv7" ;;
567 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
568 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo`
570 # ??TODO ?? Model transformations
571 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
572 # assuming no further arch. identification will ever be used by GCC.
573 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
574 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
575 # for these chips in the future.
576 # PA7300LC -> 7100LC (1.1)
577 # PA8200 -> 8000 (2.0)
578 # PA8500 -> 8000 (2.0)
579 # PA8600 -> 8000 (2.0)
581 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
582 # Finish Model transformations
584 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
585 OUT="linux-parisc" ;;
586 arm*-*-linux2) OUT="linux-elf-arm" ;;
587 s390-*-linux2) OUT="linux-s390" ;;
588 s390x-*-linux?) OUT="linux-s390x" ;;
589 x86_64-*-linux?) OUT="linux-x86_64" ;;
590 *-*-linux2) OUT="linux-elf"
591 if [ "$GCCVER" -gt 28 ]; then
592 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
595 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
598 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
602 *-*-linux1) OUT="linux-aout" ;;
604 OUT="solaris-sparcv9-$CC"
605 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
606 if [ "$ISA64" != "" ]; then
607 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
608 echo "WARNING! If you wish to build 64-bit library, then you have to"
609 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
610 if [ "$TEST" = "false" ]; then
611 echo " You have about 5 seconds to press Ctrl-C to abort."
612 (stty -icanon min 0 time 50; read waste) < /dev/tty
614 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
615 # $GCC_ARCH denotes default ABI chosen by compiler driver
616 # (first one found on the $PATH). I assume that user
617 # expects certain consistency with the rest of his builds
618 # and therefore switch over to 64-bit. <appro>
619 OUT="solaris64-sparcv9-gcc"
620 echo "WARNING! If you wish to build 32-bit library, then you have to"
621 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
622 if [ "$TEST" = "false" ]; then
623 echo " You have about 5 seconds to press Ctrl-C to abort."
624 (stty -icanon min 0 time 50; read waste) < /dev/tty
626 elif [ "$GCC_ARCH" = "-m32" ]; then
627 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
628 echo " and wish to build 64-bit library, then you have to"
629 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
630 if [ "$TEST" = "false" ]; then
631 echo " You have about 5 seconds to press Ctrl-C to abort."
632 (stty -icanon min 0 time 50; read waste) < /dev/tty
637 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
638 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
639 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
640 *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
641 *-*-sunos4) OUT="sunos-$CC" ;;
642 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
643 sparc64-*-freebsd*) OUT="FreeBSD-sparc64" ;;
644 ia64-*-freebsd*) OUT="FreeBSD-ia64" ;;
645 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
646 *-freebsd[1-2]*) OUT="FreeBSD" ;;
647 *86*-*-netbsd) OUT="NetBSD-x86" ;;
648 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
649 *-*-netbsd) OUT="NetBSD-sparc" ;;
650 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
651 *86*-*-openbsd) OUT="OpenBSD-i386" ;;
652 m68k*-*-openbsd) OUT="OpenBSD-m68k" ;;
653 m88k*-*-openbsd) OUT="OpenBSD-m88k" ;;
654 mips*-*-openbsd) OUT="OpenBSD-mips" ;;
655 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
656 powerpc*-*-openbsd) OUT="OpenBSD-powerpc" ;;
657 sparc64*-*-openbsd) OUT="OpenBSD-sparc64" ;;
658 sparc*-*-openbsd) OUT="OpenBSD-sparc" ;;
659 vax*-*-openbsd) OUT="OpenBSD-vax" ;;
660 hppa*-*-openbsd) OUT="OpenBSD-hppa" ;;
661 *-*-openbsd) OUT="OpenBSD" ;;
662 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
663 *-*-osf) OUT="alphaold-cc" ;;
664 *-*-tru64) OUT="alpha-cc" ;;
666 if [ "$CC" = "gcc" ]; then
672 *-*-unixware7) OUT="unixware-7" ;;
673 *-*-UnixWare7) OUT="unixware-7" ;;
674 *-*-Unixware7) OUT="unixware-7" ;;
675 *-*-unixware20*) OUT="unixware-2.0" ;;
676 *-*-unixware21*) OUT="unixware-2.1" ;;
677 *-*-UnixWare20*) OUT="unixware-2.0" ;;
678 *-*-UnixWare21*) OUT="unixware-2.1" ;;
679 *-*-Unixware20*) OUT="unixware-2.0" ;;
680 *-*-Unixware21*) OUT="unixware-2.1" ;;
681 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
682 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
683 *-siemens-sysv4) OUT="SINIX" ;;
687 if [ $GCC_BITS = "64" ]; then
688 OUT="hpux64-parisc-gcc"
690 OUT="hpux-parisc-gcc"
693 OUT="hpux-parisc-$CC"
695 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
696 KERNEL_BITS=${KERNEL_BITS:-32}
697 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
698 CPU_VERSION=${CPU_VERSION:-0}
699 # See <sys/unistd.h> for further info on CPU_VERSION.
700 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
701 echo "WARNING! 64-bit ABI is the default configured ABI on HP-UXi."
702 echo " If you wish to build 32-bit library, the you have to"
703 echo " invoke './Configure hpux-ia64-cc' *manually*."
704 if [ "$TEST" = "false" ]; then
705 echo " You have about 5 seconds to press Ctrl-C to abort."
706 (stty -icanon min 0 time 50; read waste) < /dev/tty
709 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
710 if [ "$CC" = "cc" ]; then
711 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
713 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
714 echo "WARNING! If you wish to build 64-bit library then you have to"
715 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
716 if [ "$TEST" = "false" ]; then
717 echo " You have about 5 seconds to press Ctrl-C to abort."
718 (stty -icanon min 0 time 50; read waste) < /dev/tty
721 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
723 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
725 else # Motorola(?) CPU
728 options="$options -D_REENTRANT" ;;
729 *-hpux) OUT="hpux-parisc-$CC" ;;
730 # these are all covered by the catchall below
731 # *-aix) OUT="aix-$CC" ;;
732 # *-dgux) OUT="dgux" ;;
733 mips-sony-newsos4) OUT="newsos4-gcc" ;;
734 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
735 *-*-cygwin) OUT="Cygwin" ;;
736 t3e-cray-unicosmk) OUT="cray-t3e" ;;
737 j90-cray-unicos) OUT="cray-j90" ;;
738 nsr-tandem-nsk) OUT="tandem-c89" ;;
739 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
742 # NB: This atalla support has been superceded by the ENGINE support
743 # That contains its own header and definitions anyway. Support can
744 # be enabled or disabled on any supported platform without external
745 # headers, eg. by adding the "hw-atalla" switch to ./config or
748 # See whether we can compile Atalla support
749 #if [ -f /usr/include/atasi.h ]
751 # options="$options -DATALLA"
754 # gcc < 2.8 does not support -mcpu=ultrasparc
755 if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
757 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
759 OUT=solaris-sparcv9-gcc27
761 if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
763 echo "WARNING! Falling down to 'linux-sparcv8'."
764 echo " Upgrade to gcc-2.8 or later."
770 i386-*) options="$options 386" ;;
773 for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 aes ripemd rsa sha
775 if [ ! -d crypto/$i ]
777 options="$options no-$i"
781 # Discover Kerberos 5 (since it's still a prototype, we don't
782 # do any guesses yet, that's why this section is commented away.
783 #if [ -d /usr/kerberos ]; then
784 # krb5_dir=/usr/kerberos
785 # if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
786 # -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
787 # -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
788 # -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
789 # -a \( -f $krb5_dir/include/krb5.h \) ]; then
790 # options="$options --with-krb5-flavor=MIT"
792 #elif [ -d /usr/heimdal ]; then
793 # krb5_dir=/usr/heimdal
794 # if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
795 # -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
796 # -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
797 # -a \( -f $krb5_dir/include/krb5.h \) ]; then
798 # options="$options --with-krb5-flavor=Heimdal"
802 if [ -z "$OUT" ]; then
806 if [ ".$PERL" = . ] ; then
807 for i in . `echo $PATH | sed 's/:/ /g'`; do
808 if [ -f "$i/perl5" ] ; then
815 if [ ".$PERL" = . ] ; then
816 for i in . `echo $PATH | sed 's/:/ /g'`; do
817 if [ -f "$i/perl" ] ; then
818 if "$i/perl" -e 'exit($]<5.0)'; then
826 if [ ".$PERL" = . ] ; then
827 echo "You need Perl 5."
831 # run Configure to check to see if we need to specify the
832 # compiler for the platform ... in which case we add it on
833 # the end ... otherwise we leave it off
835 $PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
836 if [ $? = "0" ]; then
842 $PERL ./Configure LIST | grep "$OUT" > /dev/null
843 if [ $? = "0" ]; then
844 echo Configuring for $OUT
846 if [ "$TEST" = "true" ]; then
847 echo $PERL ./Configure $OUT $options
849 $PERL ./Configure $OUT $options
852 echo "This system ($OUT) is not supported. See file INSTALL for details."