]> git.ipfire.org Git - thirdparty/openssl.git/blame - config
Make the tests of EVP operations without padding. As a consequence,
[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)
7c4e24af 77 case "x${VERSION}" in
9abff96b
AP
78 x2.0*) echo "whatever-whatever-unixware20"; exit 0 ;;
79 x2.1*) echo "whatever-whatever-unixware21"; exit 0 ;;
80 x2*) echo "whatever-whatever-unixware2"; exit 0 ;;
7c4e24af 81 esac
58964a49
RE
82 ;;
83 4.2)
84 echo "whatever-whatever-unixware1"; exit 0
85 ;;
8f6dc9c5 86 5)
7c4e24af
AP
87 case "x${VERSION}" in
88 # We hardcode i586 in place of ${MACHINE} for the
89 # following reason. The catch is that even though Pentium
90 # is minimum requirement for platforms in question,
91 # ${MACHINE} gets always assigned to i386. Now, problem
92 # with i386 is that it makes ./config pass 386 to
93 # ./Configure, which in turn makes make generate
94 # inefficient SHA-1 (for this moment) code.
59b846c5
AP
95 x7*) echo "i586-sco-unixware7"; exit 0 ;;
96 x8*) echo "i586-unkn-OpenUNIX${VERSION}"; exit 0 ;;
7c4e24af 97 esac
9a5a7401 98 ;;
58964a49
RE
99 esac
100 fi
101fi
102# Now we simply scan though... In most cases, the SYSTEM info is enough
103#
104case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
c5f8bbbc
RL
105 MPE/iX:*)
106 MACHINE=`echo "$MACHINE" | sed -e 's/-/_/g'`
107 echo "parisc-hp-MPE/iX"; exit 0
108 ;;
58964a49
RE
109 A/UX:*)
110 echo "m68k-apple-aux3"; exit 0
111 ;;
112
dd558806
AP
113 AIX:*:[5-9]:*)
114 echo "${MACHINE}-ibm-aix5"; exit 0
36810177
RL
115 ;;
116
58964a49
RE
117 AIX:*)
118 echo "${MACHINE}-ibm-aix"; exit 0
119 ;;
120
121 dgux:*)
122 echo "${MACHINE}-dg-dgux"; exit 0
123 ;;
124
125 HI-UX:*)
126 echo "${MACHINE}-hi-hiux"; exit 0
127 ;;
128
129 HP-UX:*)
130 HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
131 case "$HPUXVER" in
6d03b73e 132 1[0-9].*) # HPUX 10 and 11 targets are unified
0a4c8baf 133 echo "${MACHINE}-hp-hpux1x"; exit 0
58964a49
RE
134 ;;
135 *)
136 echo "${MACHINE}-hp-hpux"; exit 0
137 ;;
138 esac
139 ;;
140
da8fa72f
AP
141 IRIX:5.*)
142 echo "mips2-sgi-irix"; exit 0
143 ;;
144
1656ef29 145 IRIX:6.*)
da8fa72f 146 echo "mips3-sgi-irix"; exit 0
58964a49
RE
147 ;;
148
149 IRIX64:*)
da8fa72f 150 echo "mips4-sgi-irix64"; exit 0
58964a49
RE
151 ;;
152
153 Linux:[2-9].*)
154 echo "${MACHINE}-whatever-linux2"; exit 0
155 ;;
156
157 Linux:1.*)
158 echo "${MACHINE}-whatever-linux1"; exit 0
159 ;;
160
10a2975a
RL
161 GNU*)
162 echo "hurd-x86"; exit 0;
163 ;;
164
58964a49
RE
165 LynxOS:*)
166 echo "${MACHINE}-lynx-lynxos"; exit 0
167 ;;
168
a9ffce0a
BM
169 BSD/OS:4.*) # BSD/OS always says 386
170 echo "i486-whatever-bsdi4"; exit 0
0cceb1c7
BM
171 ;;
172
58964a49 173 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
9c789ad1
UM
174 case `/sbin/sysctl -n hw.model` in
175 Pentium*)
8050bc79 176 echo "i586-whatever-bsdi"; exit 0
9c789ad1
UM
177 ;;
178 *)
8050bc79 179 echo "i386-whatever-bsdi"; exit 0
9c789ad1
UM
180 ;;
181 esac;
58964a49
RE
182 ;;
183
184 BSD/386:*|BSD/OS:*)
185 echo "${MACHINE}-whatever-bsdi"; exit 0
186 ;;
187
afd41c9f 188 FreeBSD:*:*:*386*)
44717474
RE
189 VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
190 MACH=`sysctl -n hw.model`
191 ARCH='whatever'
192 case ${MACH} in
193 *386* ) MACH="i386" ;;
194 *486* ) MACH="i486" ;;
195 Pentium\ II*) MACH="i686" ;;
196 Pentium* ) MACH="i586" ;;
44717474
RE
197 * ) MACH="$MACHINE" ;;
198 esac
199 case ${MACH} in
200 i[0-9]86 ) ARCH="pc" ;;
201 esac
202 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
203 ;;
58964a49 204
afd41c9f
RL
205 FreeBSD:*)
206 echo "${MACHINE}-whatever-freebsd"; exit 0
207 ;;
208
c6fdd7dc 209 NetBSD:*:*:*386*)
48d89b56 210 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
58964a49
RE
211 ;;
212
213 NetBSD:*)
214 echo "${MACHINE}-whatever-netbsd"; exit 0
215 ;;
216
217 OpenBSD:*)
218 echo "${MACHINE}-whatever-openbsd"; exit 0
219 ;;
220
6c36f7a9
LJ
221 OpenUNIX:*)
222 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
223 ;;
224
58964a49 225 OSF1:*:*:*alpha*)
6bc847e4
RL
226 OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'`
227 case "$OSFMAJOR" in
228 4|5)
229 echo "${MACHINE}-dec-tru64"; exit 0
230 ;;
231 1|2|3)
232 echo "${MACHINE}-dec-osf"; exit 0
233 ;;
234 *)
235 echo "${MACHINE}-dec-osf"; exit 0
236 ;;
237 esac
58964a49
RE
238 ;;
239
240 QNX:*)
6a9af68b 241 case "$RELEASE" in
36124b10
BM
242 4*)
243 echo "${MACHINE}-whatever-qnx4"
58964a49 244 ;;
6a9af68b
LJ
245 6*)
246 echo "${MACHINE}-whatever-qnx6"
247 ;;
58964a49 248 *)
36124b10 249 echo "${MACHINE}-whatever-qnx"
58964a49
RE
250 ;;
251 esac
252 exit 0
253 ;;
254
255 Paragon*:*:*:*)
256 echo "i860-intel-osf1"; exit 0
257 ;;
258
0fad6cb7
AP
259 Rhapsody:*)
260 echo "ppc-apple-rhapsody"; exit 0
261 ;;
262
9b7a552f 263 Darwin:*)
70d70a3c
RL
264 case "$MACHINE" in
265 Power*)
266 echo "ppc-apple-darwin${VERSION}"
267 ;;
268 *)
269 echo "i386-apple-darwin${VERSION}"
270 ;;
271 esac
272 exit 0
9b7a552f
RL
273 ;;
274
58964a49 275 SunOS:5.*)
7228920c 276 echo "${MACHINE}-whatever-solaris2"; exit 0
58964a49
RE
277 ;;
278
279 SunOS:*)
280 echo "${MACHINE}-sun-sunos4"; exit 0
281 ;;
282
283 UNIX_System_V:4.*:*)
284 echo "${MACHINE}-whatever-sysv4"; exit 0
285 ;;
286
287 *:4*:R4*:m88k)
288 echo "${MACHINE}-whatever-sysv4"; exit 0
289 ;;
290
291 DYNIX/ptx:4*:*)
292 echo "${MACHINE}-whatever-sysv4"; exit 0
293 ;;
294
295 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
296 echo "i486-ncr-sysv4"; exit 0
297 ;;
298
299 ULTRIX:*)
300 echo "${MACHINE}-unknown-ultrix"; exit 0
301 ;;
302
1fac96e4
UM
303 SINIX*|ReliantUNIX*)
304 echo "${MACHINE}-siemens-sysv4"; exit 0
58964a49
RE
305 ;;
306
9231f477
UM
307 POSIX-BC*)
308 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
309 ;;
310
58964a49
RE
311 machten:*)
312 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
313 ;;
314
315 library:*)
316 echo "${MACHINE}-ncr-sysv4"; exit 0
317 ;;
318
319 ConvexOS:*:11.0:*)
320 echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
321 ;;
322
72660f5f
RL
323 NEWS-OS:4.*)
324 echo "mips-sony-newsos4"; exit 0;
325 ;;
326
d78e5298 327 CYGWIN*)
1fe198b6
RL
328 case "$RELEASE" in
329 [bB]*|1.0|1.[12].*)
49e04548 330 echo "${MACHINE}-whatever-cygwin_pre1.3"
ba47f5c9 331 ;;
1fe198b6 332 *)
49e04548 333 echo "${MACHINE}-whatever-cygwin"
ba47f5c9
RL
334 ;;
335 esac
336 exit 0
d78e5298
UM
337 ;;
338
c46acbac
BM
339 *"CRAY T3E")
340 echo "t3e-cray-unicosmk"; exit 0;
341 ;;
342
343 *CRAY*)
344 echo "j90-cray-unicos"; exit 0;
345 ;;
b9c23cca
RL
346
347 NONSTOP_KERNEL*)
348 echo "nsr-tandem-nsk"; exit 0;
349 ;;
58964a49
RE
350esac
351
352#
353# Ugg. These are all we can determine by what we know about
354# the output of uname. Be more creative:
355#
356
357# Do the Apollo stuff first. Here, we just simply assume
358# that the existance of the /usr/apollo directory is proof
359# enough
360if [ -d /usr/apollo ]; then
361 echo "whatever-apollo-whatever"
362 exit 0
363fi
364
365# Now NeXT
366ISNEXT=`hostinfo 2>/dev/null`
367case "$ISNEXT" in
8e9eae0f 368 *'NeXT Mach 3.3'*)
74a6c7f3
BM
369 echo "whatever-next-nextstep3.3"; exit 0
370 ;;
58964a49
RE
371 *NeXT*)
372 echo "whatever-next-nextstep"; exit 0
373 ;;
374esac
375
376# At this point we gone through all the one's
377# we know of: Punt
378
b1fe6b43 379echo "${MACHINE}-whatever-${SYSTEM}"
58964a49
RE
380exit 0
381) 2>/dev/null | (
382
383# ---------------------------------------------------------------------------
384# this is where the translation occurs into SSLeay terms
385# ---------------------------------------------------------------------------
386
58964a49
RE
387# figure out if gcc is available and if so we use it otherwise
388# we fallback to whatever cc does on the system
d51092f4 389GCCVER=`(gcc -dumpversion) 2>/dev/null`
a0618e3e 390if [ "$GCCVER" != "" ]; then
58964a49 391 CC=gcc
f8fe7fa4
RL
392 # then strip off whatever prefix egcs prepends the number with...
393 # Hopefully, this will work for any future prefixes as well.
394 GCCVER=`echo $GCCVER | sed 's/^[a-zA-Z]*\-//'`
d51092f4
LJ
395 # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion
396 # does give us what we want though, so we use that. We just just the
397 # major and minor version numbers.
1656ef29 398 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
da8fa72f 399 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
58964a49
RE
400else
401 CC=cc
1656ef29 402fi
ac7b4261 403GCCVER=${GCCVER:-0}
1d4547a4
LJ
404if [ "$SYSTEM" = "HP-UX" ];then
405 # By default gcc is a ILP32 compiler (with long long == 64).
406 GCC_BITS="32"
407 if [ $GCCVER -ge 30 ]; then
408 # PA64 support only came in with gcc 3.0.x.
0a4c8baf
AP
409 # We check if the preprocessor symbol __LP64__ is defined...
410 if echo "__LP64__" | gcc -v -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null; then
411 : # __LP64__ has slipped through, it therefore is not defined
412 else
1d4547a4
LJ
413 GCC_BITS="64"
414 fi
415 fi
416fi
1656ef29 417if [ "$SYSTEM" = "SunOS" ]; then
ac7b4261
AP
418 if [ $GCCVER -ge 30 ]; then
419 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
420 # to be working, at the very least 'make test' passes...
421 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
422 GCC_ARCH="-m64"
423 else
424 GCC_ARCH="-m32"
425 fi
426 fi
bdf5e183 427 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
1656ef29
AP
428 CCVER=`(cc -V 2>&1) 2>/dev/null | \
429 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
430 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
431 CCVER=${CCVER:-0}
432 if [ $CCVER -gt 40 ]; then
433 CC=cc # overrides gcc!!!
434 if [ $CCVER -eq 50 ]; then
435 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
436 echo " patch #107357-01 or later applied."
437 sleep 5
438 fi
439 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
440 CC=sc3
744029c1 441 fi
58964a49
RE
442fi
443
bdf5e183
AP
444if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
445 # check for Compaq C, expected output is "blah-blah C Vx.x"
446 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
447 egrep -e '.* C V[0-9]\.[0-9]' | \
448 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
449 CCCVER=${CCCVER:-0}
450 if [ $CCCVER -gt 60 ]; then
451 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
452 # only on hash routines and des, otherwise gcc (2.95)
453 # keeps along rather tight...
454 fi
455fi
456
726c2231 457if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc
439909a0 458 (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
726c2231
AP
459fi
460
da8fa72f
AP
461CCVER=${CCVER:-0}
462
58964a49
RE
463# read the output of the embedded GuessOS
464read GUESSOS
465
b1fe6b43 466echo Operating system: $GUESSOS
58964a49
RE
467
468# now map the output into SSLeay terms ... really should hack into the
469# script above so we end up with values in vars but that would take
470# more time that I want to waste at the moment
471case "$GUESSOS" in
da8fa72f 472 mips2-sgi-irix)
aa9d896b 473 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
da8fa72f
AP
474 CPU=${CPU:-0}
475 if [ $CPU -ge 4000 ]; then
476 options="$options -mips2"
477 fi
478 OUT="irix-$CC"
479 ;;
480 mips3-sgi-irix)
aa9d896b 481 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
da8fa72f
AP
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 mips4-sgi-irix64)
491 echo "WARNING! If you wish to build 64-bit library, then you have to"
720235ee 492 echo " invoke './Configure irix64-mips4-$CC' *manually*."
06a2b07b 493 if [ "$TEST" = "false" ]; then
ac7b4261
AP
494 echo " You have about 5 seconds to press Ctrl-C to abort."
495 (stty -icanon min 0 time 50; read waste) < /dev/tty
06a2b07b 496 fi
aa9d896b 497 CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
720235ee
UM
498 CPU=${CPU:-0}
499 if [ $CPU -ge 5000 ]; then
500 options="$options -mips4"
501 else
502 options="$options -mips3"
503 fi
da8fa72f
AP
504 OUT="irix-mips3-$CC"
505 ;;
93cd57a5 506 alpha-*-linux2)
bdf5e183
AP
507 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
508 case ${ISA:-generic} in
509 *[67]) OUT="linux-alpha+bwx-$CC" ;;
510 *) OUT="linux-alpha-$CC" ;;
511 esac
512 if [ "$CC" = "gcc" ]; then
513 case ${ISA:-generic} in
514 EV5|EV45) options="$options -mcpu=ev5";;
515 EV56|PCA56) options="$options -mcpu=ev56";;
516 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
517 esac
518 fi
519 ;;
815c83f7
RL
520 mips-*-linux?)
521 cat >dummy.c <<EOF
522#include <stdio.h> /* for printf() prototype */
523 int main (argc, argv) int argc; char *argv[]; {
524#ifdef __MIPSEB__
525 printf ("linux-%s\n", argv[1]);
526#endif
527#ifdef __MIPSEL__
528 printf ("linux-%sel\n", argv[1]);
529#endif
530 return 0;
531}
532EOF
533 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
534 rm dummy dummy.c
535 ;;
dd558806 536 ppc64-*-linux2) OUT="linux-ppc64" ;;
bdf5e183 537 ppc-*-linux2) OUT="linux-ppc" ;;
2933ed4d 538 m68k-*-linux*) OUT="linux-m68k" ;;
010712ff 539 ia64-*-linux?) OUT="linux-ia64" ;;
0fad6cb7 540 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
70d70a3c
RL
541 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
542 i386-apple-darwin*) OUT="darwin-i386-cc" ;;
a0618e3e 543 sparc64-*-linux2)
c14b4d6b 544 echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
6d4ac67a
AP
545 echo " and wish to build 64-bit library, then you have to"
546 echo " invoke './Configure linux64-sparcv9' *manually*."
547 if [ "$TEST" = "false" ]; then
548 echo " You have about 5 seconds to press Ctrl-C to abort."
549 (stty -icanon min 0 time 50; read waste) < /dev/tty
550 fi
a0618e3e 551 OUT="linux-sparcv9" ;;
da8fa72f 552 sparc-*-linux2)
d5695a26 553 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
a0618e3e
AP
554 case ${KARCH:-sun4} in
555 sun4u*) OUT="linux-sparcv9" ;;
556 sun4m) OUT="linux-sparcv8" ;;
557 sun4d) OUT="linux-sparcv8" ;;
558 *) OUT="linux-sparcv7" ;;
559 esac ;;
95f8c719
RL
560 parisc-*-linux2)
561 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
562 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo`
563
564 # ??TODO ?? Model transformations
565 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
566 # assuming no further arch. identification will ever be used by GCC.
567 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
568 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
569 # for these chips in the future.
570 # PA7300LC -> 7100LC (1.1)
571 # PA8200 -> 8000 (2.0)
572 # PA8500 -> 8000 (2.0)
573 # PA8600 -> 8000 (2.0)
574
575 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
576 # Finish Model transformations
577
578 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
579 OUT="linux-parisc" ;;
b1086116 580 arm*-*-linux2) OUT="linux-elf-arm" ;;
49ce63cd 581 s390-*-linux2) OUT="linux-s390" ;;
f14845d9 582 s390x-*-linux?) OUT="linux-s390x" ;;
f7a3e73e 583 x86_64-*-linux?) OUT="linux-x86_64" ;;
9d07fd03
UM
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 ;;
dabba110 596 *-*-linux1) OUT="linux-aout" ;;
7228920c 597 sun4u*-*-solaris2)
cc8aa08b
RL
598 OUT="solaris-sparcv9-$CC"
599 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
ac7b4261
AP
600 if [ "$ISA64" != "" ]; then
601 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
1656ef29
AP
602 echo "WARNING! If you wish to build 64-bit library, then you have to"
603 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
06a2b07b 604 if [ "$TEST" = "false" ]; then
ac7b4261 605 echo " You have about 5 seconds to press Ctrl-C to abort."
62c27161 606 (stty -icanon min 0 time 50; read waste) < /dev/tty
06a2b07b 607 fi
ac7b4261
AP
608 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
609 # $GCC_ARCH denotes default ABI chosen by compiler driver
610 # (first one found on the $PATH). I assume that user
611 # expects certain consistency with the rest of his builds
612 # and therefore switch over to 64-bit. <appro>
613 OUT="solaris64-sparcv9-gcc"
614 echo "WARNING! If you wish to build 32-bit library, then you have to"
615 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
616 if [ "$TEST" = "false" ]; then
617 echo " You have about 5 seconds to press Ctrl-C to abort."
62c27161 618 (stty -icanon min 0 time 50; read waste) < /dev/tty
ac7b4261
AP
619 fi
620 elif [ "$GCC_ARCH" = "-m32" ]; then
621 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
622 echo " and wish to build 64-bit library, then you have to"
623 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
624 if [ "$TEST" = "false" ]; then
625 echo " You have about 5 seconds to press Ctrl-C to abort."
62c27161 626 (stty -icanon min 0 time 50; read waste) < /dev/tty
ac7b4261
AP
627 fi
628 fi
1656ef29 629 fi
ac7b4261 630 ;;
7228920c
BM
631 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
632 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
633 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
634 *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
58964a49 635 *-*-sunos4) OUT="sunos-$CC" ;;
44717474 636 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
afd41c9f 637 sparc64-*-freebsd*) OUT="FreeBSD-sparc64" ;;
b7bbac72 638 ia64-*-freebsd*) OUT="FreeBSD-ia64" ;;
44717474
RE
639 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
640 *-freebsd[1-2]*) OUT="FreeBSD" ;;
58964a49
RE
641 *86*-*-netbsd) OUT="NetBSD-x86" ;;
642 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
643 *-*-netbsd) OUT="NetBSD-sparc" ;;
dfeab068 644 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
b44e425f
RL
645 *86*-*-openbsd) OUT="OpenBSD-i386" ;;
646 m68k*-*-openbsd) OUT="OpenBSD-m68k" ;;
647 m88k*-*-openbsd) OUT="OpenBSD-m88k" ;;
648 mips*-*-openbsd) OUT="OpenBSD-mips" ;;
dfeab068 649 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
b44e425f
RL
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" ;;
dfeab068 655 *-*-openbsd) OUT="OpenBSD" ;;
0cceb1c7 656 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
6bc847e4
RL
657 *-*-osf) OUT="alphaold-cc" ;;
658 *-*-tru64) OUT="alpha-cc" ;;
cb42ce0b
LJ
659 *-*-OpenUNIX*)
660 if [ "$CC" = "gcc" ]; then
661 OUT="OpenUNIX-8-gcc"
662 else
663 OUT="OpenUNIX-8"
664 fi
665 ;;
9a5a7401
RL
666 *-*-unixware7) OUT="unixware-7" ;;
667 *-*-UnixWare7) OUT="unixware-7" ;;
668 *-*-Unixware7) OUT="unixware-7" ;;
8bf49ea1
RL
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" ;;
9231f477 675 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
1fac96e4
UM
676 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
677 *-siemens-sysv4) OUT="SINIX" ;;
6d03b73e 678 *-hpux1*)
12470927
AP
679 if [ $CC = "gcc" -a $GCC_BITS = "64" ]; then
680 OUT="hpux64-parisc2-gcc"
1d4547a4 681 fi
6d03b73e
AP
682 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
683 KERNEL_BITS=${KERNEL_BITS:-32}
684 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
685 CPU_VERSION=${CPU_VERSION:-0}
686 # See <sys/unistd.h> for further info on CPU_VERSION.
687 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
46a0d4fb
AP
688 echo "WARNING! 64-bit ABI is the default configured ABI on HP-UXi."
689 echo " If you wish to build 32-bit library, the you have to"
f68843e3 690 echo " invoke './Configure hpux-ia64-cc' *manually*."
6d03b73e 691 if [ "$TEST" = "false" ]; then
46a0d4fb 692 echo " You have about 5 seconds to press Ctrl-C to abort."
6d03b73e
AP
693 (stty -icanon min 0 time 50; read waste) < /dev/tty
694 fi
695 OUT="hpux64-ia64-cc"
696 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
12470927 697 OUT=${OUT:-"hpux-parisc2-${CC}"}
6d03b73e
AP
698 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
699 echo "WARNING! If you wish to build 64-bit library then you have to"
700 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
701 if [ "$TEST" = "false" ]; then
702 echo " You have about 5 seconds to press Ctrl-C to abort."
703 (stty -icanon min 0 time 50; read waste) < /dev/tty
704 fi
705 fi
706 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
12470927 707 OUT="hpux-parisc-${CC}
6d03b73e 708 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
12470927 709 OUT="hpux-parisc-${CC}
6d03b73e
AP
710 else # Motorola(?) CPU
711 OUT="hpux-$CC"
712 fi
713 options="$options -D_REENTRANT" ;;
bcba6cc6 714 *-hpux) OUT="hpux-parisc-$CC" ;;
dd558806
AP
715 *-aix5)
716 KERNEL_BITS=`(getconf KERNEL_BITMODE) 2>/dev/null`
717 KERNEL_BITS=${KERNEL_BITS:-32}
718 if [ $KERNEL_BITS -eq 64 ]; then
719 # we default to 64-bit because PKI performance is >3x better...
720 OBJECT_MODE=${OBJECT_MODE:-$KERNEL_BITS}
721 else
722 OBJECT_MODE=32
723 fi
724 OUT="aix-cc"
725 if [ "$CC" = "cc" -a $OBJECT_MODE -eq 64 ]; then
726 OUT="aix64-cc"
727 echo "WARNING! If you wish to build 32-bit kit, then you have to"
728 echo " invoke './Configure aix-cc' *manually*."
729 if [ "$TEST" = "false" ]; then
730 echo " You have ~5 seconds to press Ctrl-C to abort."
731 (stty -icanon min 0 time 50; read waste) < /dev/tty
732 fi
b6b4fdc9 733 elif [ "$CC" = "gcc" ]; then
dd558806
AP
734 OUT="aix-gcc"
735 fi
736 ;;
737 *-aix)
738 if [ "$CC" = "gcc" ]; then
739 OUT="aix-gcc"
740 else
741 OUT="aix43-cc"
742 fi
743 ;;
58964a49 744 # these are all covered by the catchall below
58964a49
RE
745 # *-aix) OUT="aix-$CC" ;;
746 # *-dgux) OUT="dgux" ;;
72660f5f 747 mips-sony-newsos4) OUT="newsos4-gcc" ;;
49e04548
RL
748 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
749 *-*-cygwin) OUT="Cygwin" ;;
c46acbac
BM
750 t3e-cray-unicosmk) OUT="cray-t3e" ;;
751 j90-cray-unicos) OUT="cray-j90" ;;
b9c23cca 752 nsr-tandem-nsk) OUT="tandem-c89" ;;
58964a49 753 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
5d3bb220
UM
754esac
755
5270e702
RL
756# NB: This atalla support has been superceded by the ENGINE support
757# That contains its own header and definitions anyway. Support can
758# be enabled or disabled on any supported platform without external
759# headers, eg. by adding the "hw-atalla" switch to ./config or
760# perl Configure
761#
bd03b99b 762# See whether we can compile Atalla support
5270e702
RL
763#if [ -f /usr/include/atasi.h ]
764#then
765# options="$options -DATALLA"
766#fi
bd03b99b 767
b6735832 768# gcc < 2.8 does not support -mcpu=ultrasparc
1656ef29 769if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
b6735832 770then
a0618e3e 771 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
1656ef29
AP
772 sleep 5
773 OUT=solaris-sparcv9-gcc27
a0618e3e
AP
774fi
775if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
776then
777 echo "WARNING! Falling down to 'linux-sparcv8'."
778 echo " Upgrade to gcc-2.8 or later."
1656ef29 779 sleep 5
a0618e3e 780 OUT=linux-sparcv8
b6735832
UM
781fi
782
5d3bb220
UM
783case "$GUESSOS" in
784 i386-*) options="$options 386" ;;
58964a49
RE
785esac
786
97101faf 787for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 aes ripemd rsa sha
9231f477
UM
788do
789 if [ ! -d crypto/$i ]
790 then
791 options="$options no-$i"
792 fi
793done
794
f9b3bff6
RL
795# Discover Kerberos 5 (since it's still a prototype, we don't
796# do any guesses yet, that's why this section is commented away.
797#if [ -d /usr/kerberos ]; then
798# krb5_dir=/usr/kerberos
799# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
800# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
801# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
802# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
803# -a \( -f $krb5_dir/include/krb5.h \) ]; then
804# options="$options --with-krb5-flavor=MIT"
805# fi
806#elif [ -d /usr/heimdal ]; then
807# krb5_dir=/usr/heimdal
808# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
809# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
810# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
811# -a \( -f $krb5_dir/include/krb5.h \) ]; then
812# options="$options --with-krb5-flavor=Heimdal"
813# fi
814#fi
815
58964a49
RE
816if [ -z "$OUT" ]; then
817 OUT="$CC"
818fi
819
99aab161
UM
820if [ ".$PERL" = . ] ; then
821 for i in . `echo $PATH | sed 's/:/ /g'`; do
822 if [ -f "$i/perl5" ] ; then
823 PERL="$i/perl5"
824 break;
825 fi;
826 done
827fi
828
829if [ ".$PERL" = . ] ; then
830 for i in . `echo $PATH | sed 's/:/ /g'`; do
831 if [ -f "$i/perl" ] ; then
a5a47e4a
UM
832 if "$i/perl" -e 'exit($]<5.0)'; then
833 PERL="$i/perl"
834 break;
835 fi;
99aab161
UM
836 fi;
837 done
838fi
839
a5a47e4a 840if [ ".$PERL" = . ] ; then
99aab161
UM
841 echo "You need Perl 5."
842 exit 1
843fi
844
58964a49
RE
845# run Configure to check to see if we need to specify the
846# compiler for the platform ... in which case we add it on
847# the end ... otherwise we leave it off
99aab161 848
10a926c1 849$PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
58964a49
RE
850if [ $? = "0" ]; then
851 OUT="$OUT-$CC"
852fi
853
854OUT="$PREFIX$OUT"
855
10a926c1 856$PERL ./Configure LIST | grep "$OUT" > /dev/null
b1fe6b43 857if [ $? = "0" ]; then
9e2c0f41 858 echo Configuring for $OUT
58964a49 859
b1fe6b43
UM
860 if [ "$TEST" = "true" ]; then
861 echo $PERL ./Configure $OUT $options
862 else
863 $PERL ./Configure $OUT $options
864 fi
58964a49 865else
744029c1 866 echo "This system ($OUT) is not supported. See file INSTALL for details."
58964a49 867fi
58964a49 868)