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