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