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