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