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