Revert: the names of the cygwin distribution will not be named openssl2-*.
[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 CCVER=${CCVER:-0}
468
469 # read the output of the embedded GuessOS 
470 read GUESSOS
471
472 echo Operating system: $GUESSOS
473
474 # now map the output into SSLeay terms ... really should hack into the
475 # script above so we end up with values in vars but that would take
476 # more time that I want to waste at the moment
477 case "$GUESSOS" in
478   mips2-sgi-irix)
479         CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
480         CPU=${CPU:-0}
481         if [ $CPU -ge 4000 ]; then
482                 options="$options -mips2"
483         fi
484         OUT="irix-$CC"
485         ;;
486   mips3-sgi-irix)
487         CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
488         CPU=${CPU:-0}
489         if [ $CPU -ge 5000 ]; then
490                 options="$options -mips4"
491         else
492                 options="$options -mips3"
493         fi
494         OUT="irix-mips3-$CC"
495         ;;
496   mips4-sgi-irix64)
497         echo "WARNING! If you wish to build 64-bit library, then you have to"
498         echo "         invoke './Configure irix64-mips4-$CC' *manually*."
499         if [ "$TEST" = "false" ]; then
500           echo "         You have about 5 seconds to press Ctrl-C to abort."
501           (stty -icanon min 0 time 50; read waste) < /dev/tty
502         fi
503         CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
504         CPU=${CPU:-0}
505         if [ $CPU -ge 5000 ]; then
506                 options="$options -mips4"
507         else
508                 options="$options -mips3"
509         fi
510         OUT="irix-mips3-$CC"
511         ;;
512   alpha-*-linux2)
513         ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
514         case ${ISA:-generic} in
515         *[67])  OUT="linux-alpha+bwx-$CC" ;;
516         *)      OUT="linux-alpha-$CC" ;;
517         esac
518         if [ "$CC" = "gcc" ]; then
519             case ${ISA:-generic} in
520             EV5|EV45)           options="$options -mcpu=ev5";;
521             EV56|PCA56)         options="$options -mcpu=ev56";;
522             EV6|EV67|PCA57)     options="$options -mcpu=ev6";;
523             esac
524         fi
525         ;;
526   mips-*-linux?)
527           cat >dummy.c <<EOF
528 #include <stdio.h>  /* for printf() prototype */
529         int main (argc, argv) int argc; char *argv[]; {
530 #ifdef __MIPSEB__
531   printf ("linux-%s\n", argv[1]);
532 #endif
533 #ifdef __MIPSEL__
534   printf ("linux-%sel\n", argv[1]);
535 #endif
536   return 0;
537 }
538 EOF
539         ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
540         rm dummy dummy.c
541         ;;
542   ppc64-*-linux2)
543         #Use the standard target for PPC architecture until we create a
544         #special one for the 64bit architecture.
545         OUT="linux-ppc" ;;
546   ppc-*-linux2) OUT="linux-ppc" ;;
547   m68k-*-linux*) OUT="linux-m68k" ;;
548   ia64-*-linux?) OUT="linux-ia64" ;;
549   ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
550   ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
551   i386-apple-darwin*) OUT="darwin-i386-cc" ;;
552   sparc64-*-linux2)
553         echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
554         echo "         and wish to build 64-bit library, then you have to"
555         echo "         invoke './Configure linux64-sparcv9' *manually*."
556         if [ "$TEST" = "false" ]; then
557           echo "          You have about 5 seconds to press Ctrl-C to abort."
558           (stty -icanon min 0 time 50; read waste) < /dev/tty
559         fi
560         OUT="linux-sparcv9" ;;
561   sparc-*-linux2)
562         KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
563         case ${KARCH:-sun4} in
564         sun4u*) OUT="linux-sparcv9" ;;
565         sun4m)  OUT="linux-sparcv8" ;;
566         sun4d)  OUT="linux-sparcv8" ;;
567         *)      OUT="linux-sparcv7" ;;
568         esac ;;
569   parisc-*-linux2)
570         CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
571         CPUSCHEDULE=`awk '/^cpu.[       ]: PA/{print substr($3,3)}' /proc/cpuinfo`
572
573         # ??TODO ??  Model transformations
574         # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
575         #    assuming no further arch. identification will ever be used by GCC.
576         # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
577         # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
578         #    for these chips in the future.
579         #         PA7300LC -> 7100LC (1.1)
580         #         PA8200   -> 8000   (2.0)
581         #         PA8500   -> 8000   (2.0)
582         #         PA8600   -> 8000   (2.0)
583
584         CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
585         # Finish Model transformations
586
587         options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
588         OUT="linux-parisc" ;;
589   arm*-*-linux2) OUT="linux-elf-arm" ;;
590   s390-*-linux2) OUT="linux-s390" ;;
591   s390x-*-linux?) OUT="linux-s390x" ;;
592   x86_64-*-linux?) OUT="linux-x86_64" ;;
593   *-*-linux2) OUT="linux-elf"
594         if [ "$GCCVER" -gt 28 ]; then
595           if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
596             OUT="linux-pentium"
597           fi
598           if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
599             OUT="linux-ppro"
600           fi
601           if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
602             OUT="linux-k6"
603           fi
604         fi ;;
605   *-*-linux1) OUT="linux-aout" ;;
606   sun4u*-*-solaris2)
607         OUT="solaris-sparcv9-$CC"
608         ISA64=`(isalist) 2>/dev/null | grep sparcv9`
609         if [ "$ISA64" != "" ]; then
610             if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
611                 echo "WARNING! If you wish to build 64-bit library, then you have to"
612                 echo "         invoke './Configure solaris64-sparcv9-cc' *manually*."
613                 if [ "$TEST" = "false" ]; then
614                   echo "         You have about 5 seconds to press Ctrl-C to abort."
615                   (stty -icanon min 0 time 50; read waste) < /dev/tty
616                 fi
617             elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
618                 # $GCC_ARCH denotes default ABI chosen by compiler driver
619                 # (first one found on the $PATH). I assume that user
620                 # expects certain consistency with the rest of his builds
621                 # and therefore switch over to 64-bit. <appro>
622                 OUT="solaris64-sparcv9-gcc"
623                 echo "WARNING! If you wish to build 32-bit library, then you have to"
624                 echo "         invoke './Configure solaris-sparcv9-gcc' *manually*."
625                 if [ "$TEST" = "false" ]; then
626                   echo "         You have about 5 seconds to press Ctrl-C to abort."
627                   (stty -icanon min 0 time 50; read waste) < /dev/tty
628                 fi
629             elif [ "$GCC_ARCH" = "-m32" ]; then
630                 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
631                 echo "        and wish to build 64-bit library, then you have to"
632                 echo "        invoke './Configure solaris64-sparcv9-gcc' *manually*."
633                 if [ "$TEST" = "false" ]; then
634                   echo "         You have about 5 seconds to press Ctrl-C to abort."
635                   (stty -icanon min 0 time 50; read waste) < /dev/tty
636                 fi
637             fi
638         fi
639         ;;
640   sun4m-*-solaris2)     OUT="solaris-sparcv8-$CC" ;;
641   sun4d-*-solaris2)     OUT="solaris-sparcv8-$CC" ;;
642   sun4*-*-solaris2)     OUT="solaris-sparcv7-$CC" ;;
643   *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
644   *-*-sunos4) OUT="sunos-$CC" ;;
645   alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
646   sparc64-*-freebsd*) OUT="FreeBSD-sparc64" ;;
647   *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
648   *-freebsd[1-2]*) OUT="FreeBSD" ;;
649   *86*-*-netbsd) OUT="NetBSD-x86" ;;
650   sun3*-*-netbsd) OUT="NetBSD-m68" ;;
651   *-*-netbsd) OUT="NetBSD-sparc" ;;
652   alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
653   *86*-*-openbsd) OUT="OpenBSD-i386" ;;
654   m68k*-*-openbsd) OUT="OpenBSD-m68k" ;;
655   m88k*-*-openbsd) OUT="OpenBSD-m88k" ;;
656   mips*-*-openbsd) OUT="OpenBSD-mips" ;;
657   pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
658   powerpc*-*-openbsd) OUT="OpenBSD-powerpc" ;;
659   sparc64*-*-openbsd) OUT="OpenBSD-sparc64" ;;
660   sparc*-*-openbsd) OUT="OpenBSD-sparc" ;;
661   vax*-*-openbsd) OUT="OpenBSD-vax" ;;
662   hppa*-*-openbsd) OUT="OpenBSD-hppa" ;;
663   *-*-openbsd) OUT="OpenBSD" ;;
664   *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
665   *-*-osf) OUT="alphaold-cc" ;;
666   *-*-tru64) OUT="alpha-cc" ;;
667   *-*-OpenUNIX*)
668         if [ "$CC" = "gcc" ]; then
669           OUT="OpenUNIX-8-gcc" 
670         else    
671           OUT="OpenUNIX-8" 
672         fi
673         ;;
674   *-*-unixware7) OUT="unixware-7" ;;
675   *-*-UnixWare7) OUT="unixware-7" ;;
676   *-*-Unixware7) OUT="unixware-7" ;;
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   *-*-Unixware20*) OUT="unixware-2.0" ;;
682   *-*-Unixware21*) OUT="unixware-2.1" ;;
683   BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
684   RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
685   *-siemens-sysv4) OUT="SINIX" ;;
686   *-hpux1*)
687         if [ $CC = "gcc" ];
688         then
689           if [ $GCC_BITS = "64" ]; then
690             OUT="hpux64-parisc-gcc"
691           else
692             OUT="hpux-parisc-gcc"
693           fi
694         else
695           OUT="hpux-parisc-$CC"
696         fi
697         KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
698         KERNEL_BITS=${KERNEL_BITS:-32}
699         CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
700         CPU_VERSION=${CPU_VERSION:-0}
701         # See <sys/unistd.h> for further info on CPU_VERSION.
702         if   [ $CPU_VERSION -ge 768 ]; then     # IA-64 CPU
703              echo "WARNING! 64-bit ABI is the default configured ABI on HP-UXi."
704              echo "         If you wish to build 32-bit library, the you have to"
705              echo "         invoke './Configure hpux-ia64-cc' *manually*."
706              if [ "$TEST" = "false" ]; then
707                 echo "         You have about 5 seconds to press Ctrl-C to abort."
708                 (stty -icanon min 0 time 50; read waste) < /dev/tty
709              fi
710              OUT="hpux64-ia64-cc"
711         elif [ $CPU_VERSION -ge 532 ]; then     # PA-RISC 2.x CPU
712              if [ "$CC" = "cc" ]; then
713                 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
714              fi
715              if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
716                 echo "WARNING! If you wish to build 64-bit library then you have to"
717                 echo "         invoke './Configure hpux64-parisc2-cc' *manually*."
718                 if [ "$TEST" = "false" ]; then
719                   echo "         You have about 5 seconds to press Ctrl-C to abort."
720                   (stty -icanon min 0 time 50; read waste) < /dev/tty
721                 fi
722              fi
723         elif [ $CPU_VERSION -ge 528 ]; then     # PA-RISC 1.1+ CPU
724              :
725         elif [ $CPU_VERSION -ge 523 ]; then     # PA-RISC 1.0 CPU
726              :
727         else                                    # Motorola(?) CPU
728              OUT="hpux-$CC"
729         fi
730         options="$options -D_REENTRANT" ;;
731   *-hpux)       OUT="hpux-parisc-$CC" ;;
732   # these are all covered by the catchall below
733   # *-aix) OUT="aix-$CC" ;;
734   # *-dgux) OUT="dgux" ;;
735   mips-sony-newsos4) OUT="newsos4-gcc" ;;
736   *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
737   *-*-cygwin) OUT="Cygwin" ;;
738   t3e-cray-unicosmk) OUT="cray-t3e" ;;
739   j90-cray-unicos) OUT="cray-j90" ;;
740   nsr-tandem-nsk) OUT="tandem-c89" ;;
741   *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
742 esac
743
744 # NB: This atalla support has been superceded by the ENGINE support
745 # That contains its own header and definitions anyway. Support can
746 # be enabled or disabled on any supported platform without external
747 # headers, eg. by adding the "hw-atalla" switch to ./config or
748 # perl Configure
749 #
750 # See whether we can compile Atalla support
751 #if [ -f /usr/include/atasi.h ]
752 #then
753 #  options="$options -DATALLA"
754 #fi
755
756 # gcc < 2.8 does not support -mcpu=ultrasparc
757 if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
758 then
759   echo "WARNING! Do consider upgrading to gcc-2.8 or later."
760   sleep 5
761   OUT=solaris-sparcv9-gcc27
762 fi
763 if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
764 then
765   echo "WARNING! Falling down to 'linux-sparcv8'."
766   echo "         Upgrade to gcc-2.8 or later."
767   sleep 5
768   OUT=linux-sparcv8
769 fi
770
771 case "$GUESSOS" in
772   i386-*) options="$options 386" ;;
773 esac
774
775 for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 aes ripemd rsa sha
776 do
777   if [ ! -d crypto/$i ]
778   then
779     options="$options no-$i"
780   fi
781 done
782
783 # Discover Kerberos 5 (since it's still a prototype, we don't
784 # do any guesses yet, that's why this section is commented away.
785 #if [ -d /usr/kerberos ]; then
786 #    krb5_dir=/usr/kerberos
787 #    if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
788 #       -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
789 #       -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
790 #       -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
791 #       -a \( -f $krb5_dir/include/krb5.h \) ]; then
792 #       options="$options --with-krb5-flavor=MIT"
793 #    fi
794 #elif [ -d /usr/heimdal ]; then
795 #    krb5_dir=/usr/heimdal
796 #    if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
797 #       -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
798 #       -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
799 #       -a \( -f $krb5_dir/include/krb5.h \) ]; then
800 #       options="$options --with-krb5-flavor=Heimdal"
801 #    fi
802 #fi
803
804 if [ -z "$OUT" ]; then
805   OUT="$CC"
806 fi
807
808 if [ ".$PERL" = . ] ; then
809         for i in . `echo $PATH | sed 's/:/ /g'`; do
810                 if [ -f "$i/perl5" ] ; then
811                         PERL="$i/perl5"
812                         break;
813                 fi;
814         done
815 fi
816
817 if [ ".$PERL" = . ] ; then
818         for i in . `echo $PATH | sed 's/:/ /g'`; do
819                 if [ -f "$i/perl" ] ; then
820                         if "$i/perl" -e 'exit($]<5.0)'; then
821                                 PERL="$i/perl"
822                                 break;
823                         fi;
824                 fi;
825         done
826 fi
827
828 if [ ".$PERL" = . ] ; then
829         echo "You need Perl 5."
830         exit 1
831 fi
832
833 # run Configure to check to see if we need to specify the 
834 # compiler for the platform ... in which case we add it on
835 # the end ... otherwise we leave it off
836
837 $PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
838 if [ $? = "0" ]; then
839   OUT="$OUT-$CC"
840 fi
841
842 OUT="$PREFIX$OUT"
843
844 $PERL ./Configure LIST | grep "$OUT" > /dev/null
845 if [ $? = "0" ]; then
846   echo Configuring for $OUT
847
848   if [ "$TEST" = "true" ]; then
849     echo $PERL ./Configure $OUT $options
850   else
851     $PERL ./Configure $OUT $options
852   fi
853 else
854   echo "This system ($OUT) is not supported. See file INSTALL for details."
855 fi
856 )