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