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