1#!/bin/sh 2# 3# OpenSSL config: determine the operating system and run ./Configure 4# 5# "config -h" for usage information. 6# 7# this is a merge of minarch and GuessOS from the Apache Group. 8# Originally written by Tim Hudson <tjh@cryptsoft.com>. 9 10# Original Apache Group comments on GuessOS 11 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. 19# 20# Be as similar to the output of config.guess/config.sub 21# as possible. 22 23PREFIX="" 24SUFFIX="" 25TEST="false" 26 27# pick up any command line args to config 28for i 29do 30case "$i" in 31-d*) PREFIX="debug-";; 32-t*) TEST="true";; 33-h*) TEST="true"; cat <<EOF 34Usage: config [options] 35 -d Add a debug- prefix to machine choice. 36 -t Test mode, do not run the Configure perl script. 37 -h This help. 38 39Any other text will be passed to the Configure perl script. 40See INSTALL for instructions. 41 42EOF 43;; 44*) options=$options" $i" ;; 45esac 46done 47 48# First get uname entries that we use below 49 50MACHINE=`(uname -m) 2>/dev/null` || MACHINE="unknown" 51RELEASE=`(uname -r) 2>/dev/null` || RELEASE="unknown" 52SYSTEM=`(uname -s) 2>/dev/null` || SYSTEM="unknown" 53VERSION=`(uname -v) 2>/dev/null` || VERSION="unknown" 54 55 56# Now test for ISC and SCO, since it is has a braindamaged uname. 57# 58# We need to work around FreeBSD 1.1.5.1 59( 60XREL=`uname -X 2>/dev/null | grep "^Release" | awk '{print $3}'` 61if [ "x$XREL" != "x" ]; then 62 if [ -f /etc/kconfig ]; then 63 case "$XREL" in 64 4.0|4.1) 65 echo "${MACHINE}-whatever-isc4"; exit 0 66 ;; 67 esac 68 else 69 case "$XREL" in 70 3.2v4.2) 71 echo "whatever-whatever-sco3"; exit 0 72 ;; 73 3.2v5.0*) 74 echo "whatever-whatever-sco5"; exit 0 75 ;; 76 4.2MP) 77 case "x${VERSION}" in 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 ;; 81 esac 82 ;; 83 4.2) 84 echo "i386-whatever-unixware1"; exit 0 85 ;; 86 5) 87 case "x${VERSION}" in 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 ;; 97 esac 98 ;; 99 esac 100 fi 101fi 102# Now we simply scan though... In most cases, the SYSTEM info is enough 103# 104case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in 105 MPE/iX:*) 106 MACHINE=`echo "$MACHINE" | sed -e 's/-/_/g'` 107 echo "parisc-hp-MPE/iX"; exit 0 108 ;; 109 A/UX:*) 110 echo "m68k-apple-aux3"; exit 0 111 ;; 112 113 AIX:[3456789]:4:*) 114 echo "${MACHINE}-ibm-aix43"; exit 0 115 ;; 116 117 AIX:*:[56789]:*) 118 echo "${MACHINE}-ibm-aix43"; exit 0 119 ;; 120 121 AIX:*) 122 echo "${MACHINE}-ibm-aix"; exit 0 123 ;; 124 125 dgux:*) 126 echo "${MACHINE}-dg-dgux"; exit 0 127 ;; 128 129 HI-UX:*) 130 echo "${MACHINE}-hi-hiux"; exit 0 131 ;; 132 133 HP-UX:*) 134 HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'` 135 case "$HPUXVER" in 136 1[0-9].*) # HPUX 10 and 11 targets are unified 137 echo "${MACHINE}-hp-hpux1x"; exit 0 138 ;; 139 *) 140 echo "${MACHINE}-hp-hpux"; exit 0 141 ;; 142 esac 143 ;; 144 145 IRIX:5.*) 146 echo "mips2-sgi-irix"; exit 0 147 ;; 148 149 IRIX:6.*) 150 echo "mips3-sgi-irix"; exit 0 151 ;; 152 153 IRIX64:*) 154 echo "mips4-sgi-irix64"; exit 0 155 ;; 156 157 Linux:[2-9].*) 158 echo "${MACHINE}-whatever-linux2"; exit 0 159 ;; 160 161 Linux:1.*) 162 echo "${MACHINE}-whatever-linux1"; exit 0 163 ;; 164 165 GNU*) 166 echo "hurd-x86"; exit 0; 167 ;; 168 169 LynxOS:*) 170 echo "${MACHINE}-lynx-lynxos"; exit 0 171 ;; 172 173 BSD/OS:4.*) # BSD/OS always says 386 174 echo "i486-whatever-bsdi4"; exit 0 175 ;; 176 177 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*) 178 case `/sbin/sysctl -n hw.model` in 179 Pentium*) 180 echo "i586-whatever-bsdi"; exit 0 181 ;; 182 *) 183 echo "i386-whatever-bsdi"; exit 0 184 ;; 185 esac; 186 ;; 187 188 BSD/386:*|BSD/OS:*) 189 echo "${MACHINE}-whatever-bsdi"; exit 0 190 ;; 191 192 FreeBSD:*:*:*386*) 193 VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'` 194 MACH=`sysctl -n hw.model` 195 ARCH='whatever' 196 case ${MACH} in 197 *386* ) MACH="i386" ;; 198 *486* ) MACH="i486" ;; 199 Pentium\ II*) MACH="i686" ;; 200 Pentium* ) MACH="i586" ;; 201 * ) MACH="$MACHINE" ;; 202 esac 203 case ${MACH} in 204 i[0-9]86 ) ARCH="pc" ;; 205 esac 206 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0 207 ;; 208 209 FreeBSD:*) 210 echo "${MACHINE}-whatever-freebsd"; exit 0 211 ;; 212 213 NetBSD:*:*:*386*) 214 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0 215 ;; 216 217 NetBSD:*) 218 echo "${MACHINE}-whatever-netbsd"; exit 0 219 ;; 220 221 OpenBSD:*) 222 echo "${MACHINE}-whatever-openbsd"; exit 0 223 ;; 224 225 OpenUNIX:*) 226 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0 227 ;; 228 229 OSF1:*:*:*alpha*) 230 OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'` 231 case "$OSFMAJOR" in 232 4|5) 233 echo "${MACHINE}-dec-tru64"; exit 0 234 ;; 235 1|2|3) 236 echo "${MACHINE}-dec-osf"; exit 0 237 ;; 238 *) 239 echo "${MACHINE}-dec-osf"; exit 0 240 ;; 241 esac 242 ;; 243 244 QNX:*) 245 case "$RELEASE" in 246 4*) 247 echo "${MACHINE}-whatever-qnx4" 248 ;; 249 6*) 250 echo "${MACHINE}-whatever-qnx6" 251 ;; 252 *) 253 echo "${MACHINE}-whatever-qnx" 254 ;; 255 esac 256 exit 0 257 ;; 258 259 Paragon*:*:*:*) 260 echo "i860-intel-osf1"; exit 0 261 ;; 262 263 Rhapsody:*) 264 echo "ppc-apple-rhapsody"; exit 0 265 ;; 266 267 Darwin:*) 268 case "$MACHINE" in 269 Power*) 270 echo "ppc-apple-darwin${VERSION}" 271 ;; 272 *) 273 echo "i386-apple-darwin${VERSION}" 274 ;; 275 esac 276 exit 0 277 ;; 278 279 SunOS:5.*) 280 echo "${MACHINE}-whatever-solaris2"; exit 0 281 ;; 282 283 SunOS:*) 284 echo "${MACHINE}-sun-sunos4"; exit 0 285 ;; 286 287 UNIX_System_V:4.*:*) 288 echo "${MACHINE}-whatever-sysv4"; exit 0 289 ;; 290 291 *:4*:R4*:m88k) 292 echo "${MACHINE}-whatever-sysv4"; exit 0 293 ;; 294 295 DYNIX/ptx:4*:*) 296 echo "${MACHINE}-whatever-sysv4"; exit 0 297 ;; 298 299 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*) 300 echo "i486-ncr-sysv4"; exit 0 301 ;; 302 303 ULTRIX:*) 304 echo "${MACHINE}-unknown-ultrix"; exit 0 305 ;; 306 307 SINIX*|ReliantUNIX*) 308 echo "${MACHINE}-siemens-sysv4"; exit 0 309 ;; 310 311 POSIX-BC*) 312 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000" 313 ;; 314 315 machten:*) 316 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0; 317 ;; 318 319 library:*) 320 echo "${MACHINE}-ncr-sysv4"; exit 0 321 ;; 322 323 ConvexOS:*:11.0:*) 324 echo "${MACHINE}-v11-${SYSTEM}"; exit 0; 325 ;; 326 327 NEWS-OS:4.*) 328 echo "mips-sony-newsos4"; exit 0; 329 ;; 330 331 CYGWIN*) 332 case "$RELEASE" in 333 [bB]*|1.0|1.[12].*) 334 echo "${MACHINE}-whatever-cygwin_pre1.3" 335 ;; 336 *) 337 echo "${MACHINE}-whatever-cygwin" 338 ;; 339 esac 340 exit 0 341 ;; 342 343 *"CRAY T3E") 344 echo "t3e-cray-unicosmk"; exit 0; 345 ;; 346 347 *CRAY*) 348 echo "j90-cray-unicos"; exit 0; 349 ;; 350 351 NONSTOP_KERNEL*) 352 echo "nsr-tandem-nsk"; exit 0; 353 ;; 354esac 355 356# 357# Ugg. These are all we can determine by what we know about 358# the output of uname. Be more creative: 359# 360 361# Do the Apollo stuff first. Here, we just simply assume 362# that the existance of the /usr/apollo directory is proof 363# enough 364if [ -d /usr/apollo ]; then 365 echo "whatever-apollo-whatever" 366 exit 0 367fi 368 369# Now NeXT 370ISNEXT=`hostinfo 2>/dev/null` 371case "$ISNEXT" in 372 *'NeXT Mach 3.3'*) 373 echo "whatever-next-nextstep3.3"; exit 0 374 ;; 375 *NeXT*) 376 echo "whatever-next-nextstep"; exit 0 377 ;; 378esac 379 380# At this point we gone through all the one's 381# we know of: Punt 382 383echo "${MACHINE}-whatever-${SYSTEM}" 384exit 0 385) 2>/dev/null | ( 386 387# --------------------------------------------------------------------------- 388# this is where the translation occurs into SSLeay terms 389# --------------------------------------------------------------------------- 390 391# figure out if gcc is available and if so we use it otherwise 392# we fallback to whatever cc does on the system 393GCCVER=`(gcc -dumpversion) 2>/dev/null` 394if [ "$GCCVER" != "" ]; then 395 CC=gcc 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/'` 404else 405 CC=cc 406fi 407GCCVER=${GCCVER:-0} 408if [ "$SYSTEM" = "HP-UX" ];then 409 # By default gcc is a ILP32 compiler (with long long == 64). 410 GCC_BITS="32" 411 if [ $GCCVER -ge 30 ]; then 412 # PA64 support only came in with gcc 3.0.x. 413 # We check if the preprocessor symbol __LP64__ is defined... 414 if echo "__LP64__" | gcc -v -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null; then 415 : # __LP64__ has slipped through, it therefore is not defined 416 else 417 GCC_BITS="64" 418 fi 419 fi 420fi 421if [ "$SYSTEM" = "SunOS" ]; then 422 if [ $GCCVER -ge 30 ]; then 423 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears 424 # to be working, at the very least 'make test' passes... 425 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then 426 GCC_ARCH="-m64" 427 else 428 GCC_ARCH="-m32" 429 fi 430 fi 431 # check for WorkShop C, expected output is "cc: blah-blah C x.x" 432 CCVER=`(cc -V 2>&1) 2>/dev/null | \ 433 egrep -e '^cc: .* C [0-9]\.[0-9]' | \ 434 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'` 435 CCVER=${CCVER:-0} 436 if [ $CCVER -gt 40 ]; then 437 CC=cc # overrides gcc!!! 438 if [ $CCVER -eq 50 ]; then 439 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have" 440 echo " patch #107357-01 or later applied." 441 sleep 5 442 fi 443 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then 444 CC=sc3 445 fi 446fi 447 448if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then 449 # check for Compaq C, expected output is "blah-blah C Vx.x" 450 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \ 451 egrep -e '.* C V[0-9]\.[0-9]' | \ 452 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'` 453 CCCVER=${CCCVER:-0} 454 if [ $CCCVER -gt 60 ]; then 455 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably 456 # only on hash routines and des, otherwise gcc (2.95) 457 # keeps along rather tight... 458 fi 459fi 460 461if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc 462 (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc 463fi 464 465CCVER=${CCVER:-0} 466 467# read the output of the embedded GuessOS 468read GUESSOS 469 470echo Operating system: $GUESSOS 471 472# now map the output into SSLeay terms ... really should hack into the 473# script above so we end up with values in vars but that would take 474# more time that I want to waste at the moment 475case "$GUESSOS" in 476 mips2-sgi-irix) 477 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'` 478 CPU=${CPU:-0} 479 if [ $CPU -ge 4000 ]; then 480 options="$options -mips2" 481 fi 482 OUT="irix-$CC" 483 ;; 484 mips3-sgi-irix) 485 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'` 486 CPU=${CPU:-0} 487 if [ $CPU -ge 5000 ]; then 488 options="$options -mips4" 489 else 490 options="$options -mips3" 491 fi 492 OUT="irix-mips3-$CC" 493 ;; 494 mips4-sgi-irix64) 495 echo "WARNING! If you wish to build 64-bit library, then you have to" 496 echo " invoke './Configure irix64-mips4-$CC' *manually*." 497 if [ "$TEST" = "false" ]; then 498 echo " You have about 5 seconds to press Ctrl-C to abort." 499 (stty -icanon min 0 time 50; read waste) < /dev/tty 500 fi 501 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'` 502 CPU=${CPU:-0} 503 if [ $CPU -ge 5000 ]; then 504 options="$options -mips4" 505 else 506 options="$options -mips3" 507 fi 508 OUT="irix-mips3-$CC" 509 ;; 510 alpha-*-linux2) 511 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo` 512 case ${ISA:-generic} in 513 *[67]) OUT="linux-alpha+bwx-$CC" ;; 514 *) OUT="linux-alpha-$CC" ;; 515 esac 516 if [ "$CC" = "gcc" ]; then 517 case ${ISA:-generic} in 518 EV5|EV45) options="$options -mcpu=ev5";; 519 EV56|PCA56) options="$options -mcpu=ev56";; 520 EV6|EV67|PCA57) options="$options -mcpu=ev6";; 521 esac 522 fi 523 ;; 524 mips-*-linux?) 525 cat >dummy.c <<EOF 526#include <stdio.h> /* for printf() prototype */ 527 int main (argc, argv) int argc; char *argv[]; { 528#ifdef __MIPSEB__ 529 printf ("linux-%s\n", argv[1]); 530#endif 531#ifdef __MIPSEL__ 532 printf ("linux-%sel\n", argv[1]); 533#endif 534 return 0; 535} 536EOF 537 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}` 538 rm dummy dummy.c 539 ;; 540 ppc64-*-linux2) 541 #Use the standard target for PPC architecture until we create a 542 #special one for the 64bit architecture. 543 OUT="linux-ppc" ;; 544 ppc-*-linux2) OUT="linux-ppc" ;; 545 m68k-*-linux*) OUT="linux-m68k" ;; 546 ia64-*-linux?) OUT="linux-ia64" ;; 547 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;; 548 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;; 549 i386-apple-darwin*) OUT="darwin-i386-cc" ;; 550 sparc64-*-linux2) 551 echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI" 552 echo " and wish to build 64-bit library, then you have to" 553 echo " invoke './Configure linux64-sparcv9' *manually*." 554 if [ "$TEST" = "false" ]; then 555 echo " You have about 5 seconds to press Ctrl-C to abort." 556 (stty -icanon min 0 time 50; read waste) < /dev/tty 557 fi 558 OUT="linux-sparcv9" ;; 559 sparc-*-linux2) 560 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo` 561 case ${KARCH:-sun4} in 562 sun4u*) OUT="linux-sparcv9" ;; 563 sun4m) OUT="linux-sparcv8" ;; 564 sun4d) OUT="linux-sparcv8" ;; 565 *) OUT="linux-sparcv7" ;; 566 esac ;; 567 parisc-*-linux2) 568 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo` 569 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo` 570 571 # ??TODO ?? Model transformations 572 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off 573 # assuming no further arch. identification will ever be used by GCC. 574 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC. 575 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers 576 # for these chips in the future. 577 # PA7300LC -> 7100LC (1.1) 578 # PA8200 -> 8000 (2.0) 579 # PA8500 -> 8000 (2.0) 580 # PA8600 -> 8000 (2.0) 581 582 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'` 583 # Finish Model transformations 584 585 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH" 586 OUT="linux-parisc" ;; 587 arm*-*-linux2) OUT="linux-elf-arm" ;; 588 s390-*-linux2) OUT="linux-s390" ;; 589 s390x-*-linux?) OUT="linux-s390x" ;; 590 x86_64-*-linux?) OUT="linux-x86_64" ;; 591 *-*-linux2) OUT="linux-elf" 592 if [ "$GCCVER" -gt 28 ]; then 593 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then 594 OUT="linux-pentium" 595 fi 596 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then 597 OUT="linux-ppro" 598 fi 599 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then 600 OUT="linux-k6" 601 fi 602 fi ;; 603 *-*-linux1) OUT="linux-aout" ;; 604 sun4u*-*-solaris2) 605 OUT="solaris-sparcv9-$CC" 606 ISA64=`(isalist) 2>/dev/null | grep sparcv9` 607 if [ "$ISA64" != "" ]; then 608 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then 609 echo "WARNING! If you wish to build 64-bit library, then you have to" 610 echo " invoke './Configure solaris64-sparcv9-cc' *manually*." 611 if [ "$TEST" = "false" ]; then 612 echo " You have about 5 seconds to press Ctrl-C to abort." 613 (stty -icanon min 0 time 50; read waste) < /dev/tty 614 fi 615 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then 616 # $GCC_ARCH denotes default ABI chosen by compiler driver 617 # (first one found on the $PATH). I assume that user 618 # expects certain consistency with the rest of his builds 619 # and therefore switch over to 64-bit. <appro> 620 OUT="solaris64-sparcv9-gcc" 621 echo "WARNING! If you wish to build 32-bit library, then you have to" 622 echo " invoke './Configure solaris-sparcv9-gcc' *manually*." 623 if [ "$TEST" = "false" ]; then 624 echo " You have about 5 seconds to press Ctrl-C to abort." 625 (stty -icanon min 0 time 50; read waste) < /dev/tty 626 fi 627 elif [ "$GCC_ARCH" = "-m32" ]; then 628 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI" 629 echo " and wish to build 64-bit library, then you have to" 630 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*." 631 if [ "$TEST" = "false" ]; then 632 echo " You have about 5 seconds to press Ctrl-C to abort." 633 (stty -icanon min 0 time 50; read waste) < /dev/tty 634 fi 635 fi 636 fi 637 ;; 638 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;; 639 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;; 640 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;; 641 *86*-*-solaris2) OUT="solaris-x86-$CC" ;; 642 *-*-sunos4) OUT="sunos-$CC" ;; 643 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;; 644 sparc64-*-freebsd*) OUT="FreeBSD-sparc64" ;; 645 ia64-*-freebsd*) OUT="FreeBSD-ia64" ;; 646 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;; 647 *-freebsd[1-2]*) OUT="FreeBSD" ;; 648 *86*-*-netbsd) OUT="NetBSD-x86" ;; 649 sun3*-*-netbsd) OUT="NetBSD-m68" ;; 650 *-*-netbsd) OUT="NetBSD-sparc" ;; 651 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;; 652 *86*-*-openbsd) OUT="OpenBSD-i386" ;; 653 m68k*-*-openbsd) OUT="OpenBSD-m68k" ;; 654 m88k*-*-openbsd) OUT="OpenBSD-m88k" ;; 655 mips*-*-openbsd) OUT="OpenBSD-mips" ;; 656 pmax*-*-openbsd) OUT="OpenBSD-mips" ;; 657 powerpc*-*-openbsd) OUT="OpenBSD-powerpc" ;; 658 sparc64*-*-openbsd) OUT="OpenBSD-sparc64" ;; 659 sparc*-*-openbsd) OUT="OpenBSD-sparc" ;; 660 vax*-*-openbsd) OUT="OpenBSD-vax" ;; 661 hppa*-*-openbsd) OUT="OpenBSD-hppa" ;; 662 *-*-openbsd) OUT="OpenBSD" ;; 663 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;; 664 *-*-osf) OUT="alphaold-cc" ;; 665 *-*-tru64) OUT="alpha-cc" ;; 666 *-*-OpenUNIX*) 667 if [ "$CC" = "gcc" ]; then 668 OUT="OpenUNIX-8-gcc" 669 else 670 OUT="OpenUNIX-8" 671 fi 672 ;; 673 *-*-unixware7) OUT="unixware-7" ;; 674 *-*-UnixWare7) OUT="unixware-7" ;; 675 *-*-Unixware7) OUT="unixware-7" ;; 676 *-*-unixware20*) OUT="unixware-2.0" ;; 677 *-*-unixware21*) OUT="unixware-2.1" ;; 678 *-*-UnixWare20*) OUT="unixware-2.0" ;; 679 *-*-UnixWare21*) OUT="unixware-2.1" ;; 680 *-*-Unixware20*) OUT="unixware-2.0" ;; 681 *-*-Unixware21*) OUT="unixware-2.1" ;; 682 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;; 683 RM*-siemens-sysv4) OUT="ReliantUNIX" ;; 684 *-siemens-sysv4) OUT="SINIX" ;; 685 *-hpux1*) 686 if [ $CC = "gcc" ]; 687 then 688 if [ $GCC_BITS = "64" ]; then 689 OUT="hpux64-parisc2-gcc" 690 else 691 OUT="hpux-parisc-gcc" 692 fi 693 else 694 OUT="hpux-parisc-$CC" 695 fi 696 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null` 697 KERNEL_BITS=${KERNEL_BITS:-32} 698 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null` 699 CPU_VERSION=${CPU_VERSION:-0} 700 # See <sys/unistd.h> for further info on CPU_VERSION. 701 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU 702 echo "WARNING! 64-bit ABI is the default configured ABI on HP-UXi." 703 echo " If you wish to build 32-bit library, the you have to" 704 echo " invoke './Configure hpux-ia64-cc' *manually*." 705 if [ "$TEST" = "false" ]; then 706 echo " You have about 5 seconds to press Ctrl-C to abort." 707 (stty -icanon min 0 time 50; read waste) < /dev/tty 708 fi 709 OUT="hpux64-ia64-cc" 710 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU 711 if [ "$CC" = "cc" ]; then 712 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc? 713 fi 714 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then 715 echo "WARNING! If you wish to build 64-bit library then you have to" 716 echo " invoke './Configure hpux64-parisc2-cc' *manually*." 717 if [ "$TEST" = "false" ]; then 718 echo " You have about 5 seconds to press Ctrl-C to abort." 719 (stty -icanon min 0 time 50; read waste) < /dev/tty 720 fi 721 fi 722 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU 723 : 724 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU 725 : 726 else # Motorola(?) CPU 727 OUT="hpux-$CC" 728 fi 729 options="$options -D_REENTRANT" ;; 730 *-hpux) OUT="hpux-parisc-$CC" ;; 731 # these are all covered by the catchall below 732 # *-aix) OUT="aix-$CC" ;; 733 # *-dgux) OUT="dgux" ;; 734 mips-sony-newsos4) OUT="newsos4-gcc" ;; 735 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;; 736 *-*-cygwin) OUT="Cygwin" ;; 737 t3e-cray-unicosmk) OUT="cray-t3e" ;; 738 j90-cray-unicos) OUT="cray-j90" ;; 739 nsr-tandem-nsk) OUT="tandem-c89" ;; 740 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;; 741esac 742 743# NB: This atalla support has been superceded by the ENGINE support 744# That contains its own header and definitions anyway. Support can 745# be enabled or disabled on any supported platform without external 746# headers, eg. by adding the "hw-atalla" switch to ./config or 747# perl Configure 748# 749# See whether we can compile Atalla support 750#if [ -f /usr/include/atasi.h ] 751#then 752# options="$options -DATALLA" 753#fi 754 755# gcc < 2.8 does not support -mcpu=ultrasparc 756if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ] 757then 758 echo "WARNING! Do consider upgrading to gcc-2.8 or later." 759 sleep 5 760 OUT=solaris-sparcv9-gcc27 761fi 762if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ] 763then 764 echo "WARNING! Falling down to 'linux-sparcv8'." 765 echo " Upgrade to gcc-2.8 or later." 766 sleep 5 767 OUT=linux-sparcv8 768fi 769 770case "$GUESSOS" in 771 i386-*) options="$options 386" ;; 772esac 773 774for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 aes ripemd rsa sha 775do 776 if [ ! -d crypto/$i ] 777 then 778 options="$options no-$i" 779 fi 780done 781 782# Discover Kerberos 5 (since it's still a prototype, we don't 783# do any guesses yet, that's why this section is commented away. 784#if [ -d /usr/kerberos ]; then 785# krb5_dir=/usr/kerberos 786# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\ 787# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\ 788# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\ 789# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\ 790# -a \( -f $krb5_dir/include/krb5.h \) ]; then 791# options="$options --with-krb5-flavor=MIT" 792# fi 793#elif [ -d /usr/heimdal ]; then 794# krb5_dir=/usr/heimdal 795# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\ 796# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\ 797# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\ 798# -a \( -f $krb5_dir/include/krb5.h \) ]; then 799# options="$options --with-krb5-flavor=Heimdal" 800# fi 801#fi 802 803if [ -z "$OUT" ]; then 804 OUT="$CC" 805fi 806 807if [ ".$PERL" = . ] ; then 808 for i in . `echo $PATH | sed 's/:/ /g'`; do 809 if [ -f "$i/perl5" ] ; then 810 PERL="$i/perl5" 811 break; 812 fi; 813 done 814fi 815 816if [ ".$PERL" = . ] ; then 817 for i in . `echo $PATH | sed 's/:/ /g'`; do 818 if [ -f "$i/perl" ] ; then 819 if "$i/perl" -e 'exit($]<5.0)'; then 820 PERL="$i/perl" 821 break; 822 fi; 823 fi; 824 done 825fi 826 827if [ ".$PERL" = . ] ; then 828 echo "You need Perl 5." 829 exit 1 830fi 831 832# run Configure to check to see if we need to specify the 833# compiler for the platform ... in which case we add it on 834# the end ... otherwise we leave it off 835 836$PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null 837if [ $? = "0" ]; then 838 OUT="$OUT-$CC" 839fi 840 841OUT="$PREFIX$OUT" 842 843$PERL ./Configure LIST | grep "$OUT" > /dev/null 844if [ $? = "0" ]; then 845 echo Configuring for $OUT 846 847 if [ "$TEST" = "true" ]; then 848 echo $PERL ./Configure $OUT $options 849 else 850 $PERL ./Configure $OUT $options 851 fi 852else 853 echo "This system ($OUT) is not supported. See file INSTALL for details." 854fi 855) 856