Fix memory leak.
[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             5)
97                 if [ "`echo x$VERSION | sed -e 's/\..*//'`" = "x7" ]; then
98                     echo "${MACHINE}-sco-unixware7"; exit 0
99                 fi
100                 ;;
101         esac
102     fi
103 fi
104 # Now we simply scan though... In most cases, the SYSTEM info is enough
105 #
106 case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
107     MPE/iX:*)
108         MACHINE=`echo "$MACHINE" | sed -e 's/-/_/g'`
109         echo "parisc-hp-MPE/iX"; exit 0
110         ;;
111     A/UX:*)
112         echo "m68k-apple-aux3"; exit 0
113         ;;
114
115     AIX:[3456789]:4:*)
116         echo "${MACHINE}-ibm-aix43"; exit 0
117         ;;
118
119     AIX:*:[56789]:*)
120         echo "${MACHINE}-ibm-aix43"; exit 0
121         ;;
122
123     AIX:*)
124         echo "${MACHINE}-ibm-aix"; exit 0
125         ;;
126
127     dgux:*)
128         echo "${MACHINE}-dg-dgux"; exit 0
129         ;;
130
131     HI-UX:*)
132         echo "${MACHINE}-hi-hiux"; exit 0
133         ;;
134
135     HP-UX:*)
136         HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
137         case "$HPUXVER" in
138             1[0-9].*)   # HPUX 10 and 11 targets are unified
139                 echo "${MACHINE}-hp-hpux10"; exit 0
140                 ;;
141             *)
142                 echo "${MACHINE}-hp-hpux"; exit 0
143                 ;;
144         esac
145         ;;
146
147     IRIX:5.*)
148         echo "mips2-sgi-irix"; exit 0
149         ;;
150
151     IRIX:6.*)
152         echo "mips3-sgi-irix"; exit 0
153         ;;
154
155     IRIX64:*)
156         echo "mips4-sgi-irix64"; exit 0
157         ;;
158
159     Linux:[2-9].*)
160         echo "${MACHINE}-whatever-linux2"; exit 0
161         ;;
162
163     Linux:1.*)
164         echo "${MACHINE}-whatever-linux1"; exit 0
165         ;;
166
167     GNU*)
168         echo "hurd-x86"; exit 0;
169         ;;
170
171     LynxOS:*)
172         echo "${MACHINE}-lynx-lynxos"; exit 0
173         ;;
174
175     BSD/OS:4.*)  # BSD/OS always says 386
176         echo "i486-whatever-bsdi4"; exit 0
177         ;;
178
179     BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
180         case `/sbin/sysctl -n hw.model` in
181             Pentium*)
182                 echo "i586-whatever-bsdi"; exit 0
183                 ;;
184             *)
185                 echo "i386-whatever-bsdi"; exit 0
186                 ;;
187             esac;
188         ;;
189
190     BSD/386:*|BSD/OS:*)
191         echo "${MACHINE}-whatever-bsdi"; exit 0
192         ;;
193
194     FreeBSD:*)
195         VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
196         MACH=`sysctl -n hw.model`
197         ARCH='whatever'
198         case ${MACH} in
199            *386*       ) MACH="i386"     ;;
200            *486*       ) MACH="i486"     ;;
201            Pentium\ II*) MACH="i686"     ;;
202            Pentium*    ) MACH="i586"     ;;
203            Alpha*      ) MACH="alpha"    ;;
204            *           ) MACH="$MACHINE" ;;
205         esac
206         case ${MACH} in
207            i[0-9]86 ) ARCH="pc" ;;
208         esac
209         echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
210         ;;
211
212     NetBSD:*:*:*386*)
213         echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
214         ;;
215
216     NetBSD:*)
217         echo "${MACHINE}-whatever-netbsd"; exit 0
218         ;;
219
220     OpenBSD:*)
221         echo "${MACHINE}-whatever-openbsd"; exit 0
222         ;;
223
224     OSF1:*:*:*alpha*)
225         echo "${MACHINE}-dec-osf"; exit 0
226         ;;
227
228     QNX:*)
229         case "$VERSION" in
230             4*)
231                 echo "${MACHINE}-whatever-qnx4"
232                 ;;
233             *)
234                 echo "${MACHINE}-whatever-qnx"
235                 ;;
236         esac
237         exit 0
238         ;;
239
240     Paragon*:*:*:*)
241         echo "i860-intel-osf1"; exit 0
242         ;;
243
244     Rhapsody:*)
245         echo "ppc-apple-rhapsody"; exit 0
246         ;;
247
248     Darwin:*)
249         case "$MACHINE" in
250             Power*)
251                 echo "ppc-apple-darwin${VERSION}"
252                 ;;
253             *)
254                 echo "i386-apple-darwin${VERSION}"
255                 ;;
256         esac
257         exit 0
258         ;;
259
260     SunOS:5.*)
261         echo "${MACHINE}-whatever-solaris2"; exit 0
262         ;;
263
264     SunOS:*)
265         echo "${MACHINE}-sun-sunos4"; exit 0
266         ;;
267
268     UNIX_System_V:4.*:*)
269         echo "${MACHINE}-whatever-sysv4"; exit 0
270         ;;
271
272     *:4*:R4*:m88k)
273         echo "${MACHINE}-whatever-sysv4"; exit 0
274         ;;
275
276     DYNIX/ptx:4*:*)
277         echo "${MACHINE}-whatever-sysv4"; exit 0
278         ;;
279
280     *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
281         echo "i486-ncr-sysv4"; exit 0
282         ;;
283
284     ULTRIX:*)
285         echo "${MACHINE}-unknown-ultrix"; exit 0
286         ;;
287
288     SINIX*|ReliantUNIX*)
289         echo "${MACHINE}-siemens-sysv4"; exit 0
290         ;;
291
292     POSIX-BC*)
293         echo "${MACHINE}-siemens-sysv4"; exit 0   # Here, $MACHINE == "BS2000"
294         ;;
295
296     machten:*)
297        echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
298        ;;
299
300     library:*)
301         echo "${MACHINE}-ncr-sysv4"; exit 0
302         ;;
303
304     ConvexOS:*:11.0:*)
305         echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
306         ;;
307
308     NEWS-OS:4.*)
309         echo "mips-sony-newsos4"; exit 0;
310         ;;
311
312 esac
313
314 #
315 # Ugg. These are all we can determine by what we know about
316 # the output of uname. Be more creative:
317 #
318
319 # Do the Apollo stuff first. Here, we just simply assume
320 # that the existance of the /usr/apollo directory is proof
321 # enough
322 if [ -d /usr/apollo ]; then
323     echo "whatever-apollo-whatever"
324     exit 0
325 fi
326
327 # Now NeXT
328 ISNEXT=`hostinfo 2>/dev/null`
329 case "$ISNEXT" in
330     *'NeXT Mach 3.3'*)
331         echo "whatever-next-nextstep3.3"; exit 0
332         ;;
333     *NeXT*)
334         echo "whatever-next-nextstep"; exit 0
335         ;;
336 esac
337
338 # At this point we gone through all the one's
339 # we know of: Punt
340
341 echo "${MACHINE}-whatever-${SYSTEM}" 
342 exit 0
343 ) 2>/dev/null | (
344
345 # ---------------------------------------------------------------------------
346 # this is where the translation occurs into SSLeay terms
347 # ---------------------------------------------------------------------------
348
349 # figure out if gcc is available and if so we use it otherwise
350 # we fallback to whatever cc does on the system
351 GCCVER=`(gcc --version) 2>/dev/null`
352 if [ "$GCCVER" != "" ]; then
353   CC=gcc
354   # then strip off whatever prefix Cygnus prepends the number with...
355   GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'`
356   # peak single digit before and after first dot, e.g. 2.95.1 gives 29
357   GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
358 else
359   CC=cc
360 fi
361 GCCVER=${GCCVER:-0}
362
363 if [ "$SYSTEM" = "SunOS" ]; then
364   if [ $GCCVER -ge 30 ]; then
365     # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
366     # to be working, at the very least 'make test' passes...
367     if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
368       GCC_ARCH="-m64"
369     else
370       GCC_ARCH="-m32"
371     fi
372   fi
373   # check for WorkShop C, expected output is "cc: blah-blah C x.x"
374   CCVER=`(cc -V 2>&1) 2>/dev/null | \
375         egrep -e '^cc: .* C [0-9]\.[0-9]' | \
376         sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
377   CCVER=${CCVER:-0}
378   if [ $CCVER -gt 40 ]; then
379     CC=cc       # overrides gcc!!!
380     if [ $CCVER -eq 50 ]; then
381       echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
382       echo "         patch #107357-01 or later applied."
383       sleep 5
384     fi
385   elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
386     CC=sc3
387   fi
388 fi
389
390 if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
391   # check for Compaq C, expected output is "blah-blah C Vx.x"
392   CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
393         egrep -e '.* C V[0-9]\.[0-9]' | \
394         sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
395   CCCVER=${CCCVER:-0}
396   if [ $CCCVER -gt 60 ]; then
397     CC=ccc      # overrides gcc!!! well, ccc outperforms inoticeably
398                 # only on hash routines and des, otherwise gcc (2.95)
399                 # keeps along rather tight...
400   fi
401 fi
402
403 CCVER=${CCVER:-0}
404
405 # read the output of the embedded GuessOS 
406 read GUESSOS
407
408 echo Operating system: $GUESSOS
409
410 # now map the output into SSLeay terms ... really should hack into the
411 # script above so we end up with values in vars but that would take
412 # more time that I want to waste at the moment
413 case "$GUESSOS" in
414   mips2-sgi-irix)
415         CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
416         CPU=${CPU:-0}
417         if [ $CPU -ge 4000 ]; then
418                 options="$options -mips2"
419         fi
420         OUT="irix-$CC"
421         ;;
422   mips3-sgi-irix)
423         CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
424         CPU=${CPU:-0}
425         if [ $CPU -ge 5000 ]; then
426                 options="$options -mips4"
427         else
428                 options="$options -mips3"
429         fi
430         OUT="irix-mips3-$CC"
431         ;;
432   mips4-sgi-irix64)
433         echo "WARNING! If you wish to build 64-bit library, then you have to"
434         echo "         invoke './Configure irix64-mips4-$CC' *manually*."
435         if [ "$TEST" = "false" ]; then
436           echo "         You have about 5 seconds to press Ctrl-C to abort."
437           (stty -icanon min 0 time 50; read waste) < /dev/tty
438         fi
439         CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
440         CPU=${CPU:-0}
441         if [ $CPU -ge 5000 ]; then
442                 options="$options -mips4"
443         else
444                 options="$options -mips3"
445         fi
446         OUT="irix-mips3-$CC"
447         ;;
448   alpha-*-linux2)
449         ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
450         case ${ISA:-generic} in
451         *[67])  OUT="linux-alpha+bwx-$CC" ;;
452         *)      OUT="linux-alpha-$CC" ;;
453         esac
454         if [ "$CC" = "gcc" ]; then
455             case ${ISA:-generic} in
456             EV5|EV45)           options="$options -mcpu=ev5";;
457             EV56|PCA56)         options="$options -mcpu=ev56";;
458             EV6|EV67|PCA57)     options="$options -mcpu=ev6";;
459             esac
460         fi
461         ;;
462   mips-*-linux?)
463           cat >dummy.c <<EOF
464 #include <stdio.h>  /* for printf() prototype */
465         int main (argc, argv) int argc; char *argv[]; {
466 #ifdef __MIPSEB__
467   printf ("linux-%s\n", argv[1]);
468 #endif
469 #ifdef __MIPSEL__
470   printf ("linux-%sel\n", argv[1]);
471 #endif
472   return 0;
473 }
474 EOF
475         ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
476         rm dummy dummy.c
477         ;;
478   ppc-*-linux2) OUT="linux-ppc" ;;
479   m68k-*-linux*) OUT="linux-m68k" ;;
480   ia64-*-linux?) OUT="linux-ia64" ;;
481   ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
482   ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
483   i386-apple-darwin*) OUT="darwin-i386-cc" ;;
484   sparc64-*-linux2)
485         #Before we can uncomment following lines we have to wait at least
486         #till 64-bit glibc for SPARC is operational:-(
487         #echo "WARNING! If you wish to build 64-bit library, then you have to"
488         #echo "         invoke './Configure linux64-sparcv9' *manually*."
489         #echo "         Type return if you want to continue, Ctrl-C to abort."
490         #read waste < /dev/tty
491         OUT="linux-sparcv9" ;;
492   sparc-*-linux2)
493         KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
494         case ${KARCH:-sun4} in
495         sun4u*) OUT="linux-sparcv9" ;;
496         sun4m)  OUT="linux-sparcv8" ;;
497         sun4d)  OUT="linux-sparcv8" ;;
498         *)      OUT="linux-sparcv7" ;;
499         esac ;;
500   arm*-*-linux2) OUT="linux-elf-arm" ;;
501   s390-*-linux2) OUT="linux-s390" ;;
502   *-*-linux2) OUT="linux-elf" ;;
503   *-*-linux1) OUT="linux-aout" ;;
504   sun4u*-*-solaris2)
505         OUT="solaris-sparcv9-$CC"
506         ISA64=`(isalist) 2>/dev/null | grep sparcv9`
507         if [ "$ISA64" != "" ]; then
508             if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
509                 echo "WARNING! If you wish to build 64-bit library, then you have to"
510                 echo "         invoke './Configure solaris64-sparcv9-cc' *manually*."
511                 if [ "$TEST" = "false" ]; then
512                   echo "         You have about 5 seconds to press Ctrl-C to abort."
513                   (stty -icanon min 0 time 50; read waste) < /dev/tty
514                 fi
515             elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
516                 # $GCC_ARCH denotes default ABI chosen by compiler driver
517                 # (first one found on the $PATH). I assume that user
518                 # expects certain consistency with the rest of his builds
519                 # and therefore switch over to 64-bit. <appro>
520                 OUT="solaris64-sparcv9-gcc"
521                 echo "WARNING! If you wish to build 32-bit library, then you have to"
522                 echo "         invoke './Configure solaris-sparcv9-gcc' *manually*."
523                 if [ "$TEST" = "false" ]; then
524                   echo "         You have about 5 seconds to press Ctrl-C to abort."
525                   (stty -icanon min 0 time 50; read waste) < /dev/tty
526                 fi
527             elif [ "$GCC_ARCH" = "-m32" ]; then
528                 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
529                 echo "        and wish to build 64-bit library, then you have to"
530                 echo "        invoke './Configure solaris64-sparcv9-gcc' *manually*."
531                 if [ "$TEST" = "false" ]; then
532                   echo "         You have about 5 seconds to press Ctrl-C to abort."
533                   (stty -icanon min 0 time 50; read waste) < /dev/tty
534                 fi
535             fi
536         fi
537         ;;
538   sun4m-*-solaris2)     OUT="solaris-sparcv8-$CC" ;;
539   sun4d-*-solaris2)     OUT="solaris-sparcv8-$CC" ;;
540   sun4*-*-solaris2)     OUT="solaris-sparcv7-$CC" ;;
541   *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
542   *-*-sunos4) OUT="sunos-$CC" ;;
543   alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
544   *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
545   *-freebsd[1-2]*) OUT="FreeBSD" ;;
546   *86*-*-netbsd) OUT="NetBSD-x86" ;;
547   sun3*-*-netbsd) OUT="NetBSD-m68" ;;
548   *-*-netbsd) OUT="NetBSD-sparc" ;;
549   *86*-*-openbsd) OUT="OpenBSD-x86" ;;
550   alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
551   pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
552   *-*-openbsd) OUT="OpenBSD" ;;
553   *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
554   *-*-osf) OUT="alpha-cc" ;;
555   *-*-unixware7) OUT="unixware-7" ;;
556   *-*-UnixWare7) OUT="unixware-7" ;;
557   *-*-Unixware7) OUT="unixware-7" ;;
558   *-*-unixware20*) OUT="unixware-2.0" ;;
559   *-*-unixware21*) OUT="unixware-2.1" ;;
560   *-*-UnixWare20*) OUT="unixware-2.0" ;;
561   *-*-UnixWare21*) OUT="unixware-2.1" ;;
562   *-*-Unixware20*) OUT="unixware-2.0" ;;
563   *-*-Unixware21*) OUT="unixware-2.1" ;;
564   BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
565   RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
566   *-siemens-sysv4) OUT="SINIX" ;;
567   *-hpux1*)
568         OUT="hpux-parisc-$CC"
569         KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
570         KERNEL_BITS=${KERNEL_BITS:-32}
571         CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
572         CPU_VERSION=${CPU_VERSION:-0}
573         # See <sys/unistd.h> for further info on CPU_VERSION.
574         if   [ $CPU_VERSION -ge 768 ]; then     # IA-64 CPU
575              echo "NOTICE! 64-bit is the only ABI currently operational on HP-UXi."
576              echo "        Post request to openssl-dev@openssl.org for 32-bit support."
577              if [ "$TEST" = "false" ]; then
578                 (stty -icanon min 0 time 50; read waste) < /dev/tty
579              fi
580              OUT="hpux64-ia64-cc"
581         elif [ $CPU_VERSION -ge 532 ]; then     # PA-RISC 2.x CPU
582              if [ "$CC" = "cc" ]; then
583                 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
584              fi
585              if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
586                 echo "WARNING! If you wish to build 64-bit library then you have to"
587                 echo "         invoke './Configure hpux64-parisc2-cc' *manually*."
588                 if [ "$TEST" = "false" ]; then
589                   echo "         You have about 5 seconds to press Ctrl-C to abort."
590                   (stty -icanon min 0 time 50; read waste) < /dev/tty
591                 fi
592              fi
593         elif [ $CPU_VERSION -ge 528 ]; then     # PA-RISC 1.1+ CPU
594              :
595         elif [ $CPU_VERSION -ge 523 ]; then     # PA-RISC 1.0 CPU
596              :
597         else                                    # Motorola(?) CPU
598              OUT="hpux-$CC"
599         fi
600         options="$options -D_REENTRANT" ;;
601   *-hpux)       OUT="hpux-parisc-$CC" ;;
602   # these are all covered by the catchall below
603   # *-aix) OUT="aix-$CC" ;;
604   # *-dgux) OUT="dgux" ;;
605   mips-sony-newsos4) OUT="newsos4-gcc" ;;
606   *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
607 esac
608
609 # NB: This atalla support has been superceded by the ENGINE support
610 # That contains its own header and definitions anyway. Support can
611 # be enabled or disabled on any supported platform without external
612 # headers, eg. by adding the "hw-atalla" switch to ./config or
613 # perl Configure
614 #
615 # See whether we can compile Atalla support
616 #if [ -f /usr/include/atasi.h ]
617 #then
618 #  options="$options -DATALLA"
619 #fi
620
621 # gcc < 2.8 does not support -mcpu=ultrasparc
622 if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
623 then
624   echo "WARNING! Do consider upgrading to gcc-2.8 or later."
625   sleep 5
626   OUT=solaris-sparcv9-gcc27
627 fi
628 if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
629 then
630   echo "WARNING! Falling down to 'linux-sparcv8'."
631   echo "         Upgrade to gcc-2.8 or later."
632   sleep 5
633   OUT=linux-sparcv8
634 fi
635
636 case "$GUESSOS" in
637   i386-*) options="$options 386" ;;
638 esac
639
640 for i in bf cast des dh dsa ec hmac md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa sha
641 do
642   if [ ! -d crypto/$i ]
643   then
644     options="$options no-$i"
645   fi
646 done
647
648 # Discover Kerberos 5 (since it's still a prototype, we don't
649 # do any guesses yet, that's why this section is commented away.
650 #if [ -d /usr/kerberos ]; then
651 #    krb5_dir=/usr/kerberos
652 #    if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
653 #       -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
654 #       -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
655 #       -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
656 #       -a \( -f $krb5_dir/include/krb5.h \) ]; then
657 #       options="$options --with-krb5-flavor=MIT"
658 #    fi
659 #elif [ -d /usr/heimdal ]; then
660 #    krb5_dir=/usr/heimdal
661 #    if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
662 #       -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
663 #       -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
664 #       -a \( -f $krb5_dir/include/krb5.h \) ]; then
665 #       options="$options --with-krb5-flavor=Heimdal"
666 #    fi
667 #fi
668
669 if [ -z "$OUT" ]; then
670   OUT="$CC"
671 fi
672
673 if [ ".$PERL" = . ] ; then
674         for i in . `echo $PATH | sed 's/:/ /g'`; do
675                 if [ -f "$i/perl5" ] ; then
676                         PERL="$i/perl5"
677                         break;
678                 fi;
679         done
680 fi
681
682 if [ ".$PERL" = . ] ; then
683         for i in . `echo $PATH | sed 's/:/ /g'`; do
684                 if [ -f "$i/perl" ] ; then
685                         if "$i/perl" -e 'exit($]<5.0)'; then
686                                 PERL="$i/perl"
687                                 break;
688                         fi;
689                 fi;
690         done
691 fi
692
693 if [ ".$PERL" = . ] ; then
694         echo "You need Perl 5."
695         exit 1
696 fi
697
698 # run Configure to check to see if we need to specify the 
699 # compiler for the platform ... in which case we add it on
700 # the end ... otherwise we leave it off
701
702 $PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
703 if [ $? = "0" ]; then
704   OUT="$OUT-$CC"
705 fi
706
707 OUT="$PREFIX$OUT"
708
709 $PERL ./Configure LIST | grep "$OUT" > /dev/null
710 if [ $? = "0" ]; then
711   echo Configuring for $OUT
712
713   if [ "$TEST" = "true" ]; then
714     echo $PERL ./Configure $OUT $options
715   else
716     $PERL ./Configure $OUT $options
717   fi
718 else
719   echo "This system ($OUT) is not supported. See file INSTALL for details."
720 fi
721 )