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
23 # First get uname entries that we use below
25 MACHINE=`(uname -m) 2>/dev/null` || MACHINE="unknown"
26 RELEASE=`(uname -r) 2>/dev/null` || RELEASE="unknown"
27 SYSTEM=`(uname -s) 2>/dev/null` || SYSTEM="unknown"
28 VERSION=`(uname -v) 2>/dev/null` || VERSION="unknown"
31 # Now test for ISC and SCO, since it is has a braindamaged uname.
33 # We need to work around FreeBSD 1.1.5.1
35 XREL=`uname -X 2>/dev/null | grep "^Release" | awk '{print $3}'`
36 if [ "x$XREL" != "x" ]; then
37 if [ -f /etc/kconfig ]; then
40 echo "${MACHINE}-whatever-isc4"; exit 0
46 echo "whatever-whatever-sco3"; exit 0
49 echo "whatever-whatever-sco5"; exit 0
52 if [ "x$VERSION" = "x2.1.1" ]; then
53 echo "${MACHINE}-whatever-unixware211"; exit 0
54 elif [ "x$VERSION" = "x2.1.2" ]; then
55 echo "${MACHINE}-whatever-unixware212"; exit 0
57 echo "${MACHINE}-whatever-unixware2"; exit 0
61 echo "whatever-whatever-unixware1"; exit 0
64 if [ "`echo x$VERSION | sed -e 's/\..*//'`" = "x7" ]; then
65 echo "${MACHINE}-sco-unixware7"; exit 0
71 # Now we simply scan though... In most cases, the SYSTEM info is enough
73 case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
75 echo "m68k-apple-aux3"; exit 0
79 echo "${MACHINE}-ibm-aix"; exit 0
83 echo "${MACHINE}-dg-dgux"; exit 0
87 echo "${MACHINE}-hi-hiux"; exit 0
91 HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
94 echo "${MACHINE}-hp-hpux11"; exit 0
97 echo "${MACHINE}-hp-hpux10"; exit 0
100 echo "${MACHINE}-hp-hpux"; exit 0
106 echo "mips2-sgi-irix"; exit 0
110 echo "mips3-sgi-irix"; exit 0
114 echo "mips4-sgi-irix64"; exit 0
118 echo "${MACHINE}-whatever-linux2"; exit 0
122 echo "${MACHINE}-whatever-linux1"; exit 0
126 echo "${MACHINE}-lynx-lynxos"; exit 0
129 BSD/OS:4.*) # BSD/OS always says 386
130 echo "i486-whatever-bsdi4"; exit 0
133 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
134 case `/sbin/sysctl -n hw.model` in
136 echo "i586-whatever-bsdi"; exit 0
139 echo "i386-whatever-bsdi"; exit 0
145 echo "${MACHINE}-whatever-bsdi"; exit 0
149 VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
150 MACH=`sysctl -n hw.model`
153 *386* ) MACH="i386" ;;
154 *486* ) MACH="i486" ;;
155 Pentium\ II*) MACH="i686" ;;
156 Pentium* ) MACH="i586" ;;
157 Alpha* ) MACH="alpha" ;;
158 * ) MACH="$MACHINE" ;;
161 i[0-9]86 ) ARCH="pc" ;;
163 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
167 echo "`sysctl -n hw.model | sed 's,.*\(.\)86-class.*,i\186,'`-whateve\r-netbsd"; exit 0
171 echo "${MACHINE}-whatever-netbsd"; exit 0
175 echo "${MACHINE}-whatever-openbsd"; exit 0
179 echo "${MACHINE}-dec-osf"; exit 0
185 echo "${MACHINE}-qssl-qnx32"
188 echo "${MACHINE}-qssl-qnx"
195 echo "i860-intel-osf1"; exit 0
199 echo "ppc-apple-rhapsody"; exit 0
203 echo "${MACHINE}-sun-solaris2"; exit 0
207 echo "${MACHINE}-sun-sunos4"; exit 0
211 echo "${MACHINE}-whatever-sysv4"; exit 0
215 echo "${MACHINE}-whatever-sysv4"; exit 0
219 echo "${MACHINE}-whatever-sysv4"; exit 0
222 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
223 echo "i486-ncr-sysv4"; exit 0
227 echo "${MACHINE}-unknown-ultrix"; exit 0
231 echo "${MACHINE}-siemens-sysv4"; exit 0
235 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
239 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
243 echo "${MACHINE}-ncr-sysv4"; exit 0
247 echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
253 # Ugg. These are all we can determine by what we know about
254 # the output of uname. Be more creative:
257 # Do the Apollo stuff first. Here, we just simply assume
258 # that the existance of the /usr/apollo directory is proof
260 if [ -d /usr/apollo ]; then
261 echo "whatever-apollo-whatever"
266 ISNEXT=`hostinfo 2>/dev/null`
269 echo "whatever-next-nextstep3.3"; exit 0
272 echo "whatever-next-nextstep"; exit 0
276 # At this point we gone through all the one's
279 echo "${MACHINE}-whatever-${SYSTEM}"
283 # ---------------------------------------------------------------------------
284 # this is where the translation occurs into SSLeay terms
285 # ---------------------------------------------------------------------------
291 # pick up any command line args to config
295 # shared library support (behnke@trustcenter.de)
296 -shared) SHARED=true;;
297 -d*) PREFIX="debug-";;
299 -h*) TEST="true"; cat <<EOF
300 Usage: config [options]
301 -d Add a debug- prefix to machine choice.
302 -t Test mode, do not run the Configure perl script.
305 Any other text will be passed to the Configure perl script.
306 See INSTALL for instructions.
310 *) options=$options" $i" ;;
314 # figure out if gcc is available and if so we use it otherwise
315 # we fallback to whatever cc does on the system
316 GCCVER=`(gcc --version) 2>/dev/null`
317 if [ "$GCCVER" != "" ]; then
319 # then strip off whatever prefix Cygnus prepends the number with...
320 GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'`
321 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
322 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
327 if [ "$SYSTEM" = "SunOS" ]; then
328 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
329 CCVER=`(cc -V 2>&1) 2>/dev/null | \
330 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
331 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
333 if [ $CCVER -gt 40 ]; then
334 CC=cc # overrides gcc!!!
335 if [ $CCVER -eq 50 ]; then
336 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
337 echo " patch #107357-01 or later applied."
340 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
345 if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
346 # check for Compaq C, expected output is "blah-blah C Vx.x"
347 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
348 egrep -e '.* C V[0-9]\.[0-9]' | \
349 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
351 if [ $CCCVER -gt 60 ]; then
352 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
353 # only on hash routines and des, otherwise gcc (2.95)
354 # keeps along rather tight...
361 # read the output of the embedded GuessOS
364 echo Operating system: $GUESSOS
366 # now map the output into SSLeay terms ... really should hack into the
367 # script above so we end up with values in vars but that would take
368 # more time that I want to waste at the moment
371 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
373 if [ $CPU -ge 4000 ]; then
374 options="$options -mips2"
379 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
381 if [ $CPU -ge 5000 ]; then
382 options="$options -mips4"
384 options="$options -mips3"
389 echo "WARNING! If you wish to build 64-bit library, then you have to"
390 echo " invoke './Configre irix64-mips4-$CC' *manually*."
391 echo " Type Ctrl-C if you don't want to continue."
392 read waste < /dev/tty
393 options="$options -mips4"
397 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
398 case ${ISA:-generic} in
399 *[67]) OUT="linux-alpha+bwx-$CC" ;;
400 *) OUT="linux-alpha-$CC" ;;
402 if [ "$CC" = "gcc" ]; then
403 case ${ISA:-generic} in
404 EV5|EV45) options="$options -mcpu=ev5";;
405 EV56|PCA56) options="$options -mcpu=ev56";;
406 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
410 mips-*-linux?) OUT="linux-mips" ;;
411 ppc-*-linux2) OUT="linux-ppc" ;;
412 m68k-*-linux*) OUT="linux-m68k" ;;
413 ia64-*-linux?) OUT="linux-ia64" ;;
414 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
416 #Before we can uncomment following lines we have to wait at least
417 #till 64-bit glibc for SPARC is operational:-(
418 #echo "WARNING! If you wish to build 64-bit library, then you have to"
419 #echo " invoke './Configure linux64-sparcv9' *manually*."
420 #echo " Type Ctrl-C if you don't want to continue."
421 #read waste < /dev/tty
422 OUT="linux-sparcv9" ;;
424 KARCH=`awk '/type/{print$3}' /proc/cpuinfo`
425 case ${KARCH:-sun4} in
426 sun4u*) OUT="linux-sparcv9" ;;
427 sun4m) OUT="linux-sparcv8" ;;
428 sun4d) OUT="linux-sparcv8" ;;
429 *) OUT="linux-sparcv7" ;;
431 arm*-*-linux2) OUT="linux-elf-arm" ;;
432 *-*-linux2) OUT="linux-elf" ;;
433 *-*-linux1) OUT="linux-aout" ;;
435 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
436 if [ "$ISA64" != "" -a "$CC" = "cc" -a $CCVER -ge 50 ]; then
437 echo "WARNING! If you wish to build 64-bit library, then you have to"
438 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
439 echo " Type Ctrl-C if you don't want to continue."
440 read waste < /dev/tty
442 OUT="solaris-sparcv9-$CC" ;;
443 sun4m-sun-solaris2) OUT="solaris-sparcv8-$CC" ;;
444 sun4d-sun-solaris2) OUT="solaris-sparcv8-$CC" ;;
445 sun4*-sun-solaris2) OUT="solaris-sparcv7-$CC" ;;
446 *86*-sun-solaris2) OUT="solaris-x86-$CC" ;;
447 *-*-sunos4) OUT="sunos-$CC" ;;
448 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
449 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
450 *-freebsd[1-2]*) OUT="FreeBSD" ;;
451 *86*-*-netbsd) OUT="NetBSD-x86" ;;
452 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
453 *-*-netbsd) OUT="NetBSD-sparc" ;;
454 *86*-*-openbsd) OUT="OpenBSD-x86" ;;
455 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
456 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
457 *-*-openbsd) OUT="OpenBSD" ;;
458 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
459 *-*-osf) OUT="alpha-cc" ;;
460 *-*-unixware7) OUT="unixware-7" ;;
461 *-*-UnixWare7) OUT="unixware-7" ;;
462 *-*-Unixware7) OUT="unixware-7" ;;
463 *-*-unixware[1-2]*) OUT="unixware-2.0" ;;
464 *-*-UnixWare[1-2]*) OUT="unixware-2.0" ;;
465 *-*-Unixware[1-2]*) OUT="unixware-2.0" ;;
466 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
467 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
468 *-siemens-sysv4) OUT="SINIX" ;;
469 *-hpux1*) OUT="hpux-parisc-$CC"
470 options="$options -D_REENTRANT" ;;
471 *-hpux) OUT="hpux-parisc-$CC" ;;
472 # these are all covered by the catchall below
473 # *-aix) OUT="aix-$CC" ;;
474 # *-dgux) OUT="dgux" ;;
475 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
478 # See whether we can compile Atalla support
479 if [ -f /usr/include/atasi.h ]
481 options="$options -DATALLA"
484 #get some basic shared lib support (behnke@trustcenter.de)
487 if [ "$SHARED" = "true" ]
489 options="$options -DPIC -fPIC"
494 # gcc < 2.8 does not support -mcpu=ultrasparc
495 if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
497 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
499 OUT=solaris-sparcv9-gcc27
501 if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
503 echo "WARNING! Falling down to 'linux-sparcv8'."
504 echo " Upgrade to gcc-2.8 or later."
508 # To start with $OUT is never i86pc-sun-solaris2. Secondly why
509 # ban *all* assembler implementation if it can't stand only one,
510 # SHA-0 implementation.
511 #if [ "$OUT" = "i86pc-sun-solaris2" ]
513 # ASM=`as -V /dev/null 2>&1`
516 # *) options="$options no-asm" ; echo "WARNING: You need the GNU assembler to use OpenSSL assembler code." ; echo "Sun as is not supported on Solaris x86." ;;
521 i386-*) options="$options 386" ;;
524 for i in bf cast des dh dsa hmac md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa sha
526 if [ ! -d crypto/$i ]
528 options="$options no-$i"
532 if [ -z "$OUT" ]; then
536 if [ ".$PERL" = . ] ; then
537 for i in . `echo $PATH | sed 's/:/ /g'`; do
538 if [ -f "$i/perl5" ] ; then
545 if [ ".$PERL" = . ] ; then
546 for i in . `echo $PATH | sed 's/:/ /g'`; do
547 if [ -f "$i/perl" ] ; then
548 if "$i/perl" -e 'exit($]<5.0)'; then
556 if [ ".$PERL" = . ] ; then
557 echo "You need Perl 5."
561 # run Configure to check to see if we need to specify the
562 # compiler for the platform ... in which case we add it on
563 # the end ... otherwise we leave it off
565 $PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
566 if [ $? = "0" ]; then
572 $PERL ./Configure LIST | grep "$OUT" > /dev/null
573 if [ $? = "0" ]; then
574 echo Configuring for $OUT
576 if [ "$TEST" = "true" ]; then
577 echo $PERL ./Configure $OUT $options
579 $PERL ./Configure $OUT $options
582 echo "This system ($OUT) is not supported. See file INSTALL for details."