]> git.ipfire.org Git - thirdparty/openssl.git/blame - config
The version of the shared library should, for now, reflect the version
[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
58964a49 199 FreeBSD:*)
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" ;;
208 Alpha* ) MACH="alpha" ;;
209 * ) MACH="$MACHINE" ;;
210 esac
211 case ${MACH} in
212 i[0-9]86 ) ARCH="pc" ;;
213 esac
214 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
215 ;;
58964a49 216
c6fdd7dc 217 NetBSD:*:*:*386*)
48d89b56 218 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
58964a49
RE
219 ;;
220
221 NetBSD:*)
222 echo "${MACHINE}-whatever-netbsd"; exit 0
223 ;;
224
225 OpenBSD:*)
226 echo "${MACHINE}-whatever-openbsd"; exit 0
227 ;;
228
6c36f7a9
LJ
229 OpenUNIX:*)
230 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
231 ;;
232
58964a49 233 OSF1:*:*:*alpha*)
6bc847e4
RL
234 OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'`
235 case "$OSFMAJOR" in
236 4|5)
237 echo "${MACHINE}-dec-tru64"; exit 0
238 ;;
239 1|2|3)
240 echo "${MACHINE}-dec-osf"; exit 0
241 ;;
242 *)
243 echo "${MACHINE}-dec-osf"; exit 0
244 ;;
245 esac
58964a49
RE
246 ;;
247
248 QNX:*)
6a9af68b 249 case "$RELEASE" in
36124b10
BM
250 4*)
251 echo "${MACHINE}-whatever-qnx4"
58964a49 252 ;;
6a9af68b
LJ
253 6*)
254 echo "${MACHINE}-whatever-qnx6"
255 ;;
58964a49 256 *)
36124b10 257 echo "${MACHINE}-whatever-qnx"
58964a49
RE
258 ;;
259 esac
260 exit 0
261 ;;
262
263 Paragon*:*:*:*)
264 echo "i860-intel-osf1"; exit 0
265 ;;
266
0fad6cb7
AP
267 Rhapsody:*)
268 echo "ppc-apple-rhapsody"; exit 0
269 ;;
270
9b7a552f 271 Darwin:*)
70d70a3c
RL
272 case "$MACHINE" in
273 Power*)
274 echo "ppc-apple-darwin${VERSION}"
275 ;;
276 *)
277 echo "i386-apple-darwin${VERSION}"
278 ;;
279 esac
280 exit 0
9b7a552f
RL
281 ;;
282
58964a49 283 SunOS:5.*)
7228920c 284 echo "${MACHINE}-whatever-solaris2"; exit 0
58964a49
RE
285 ;;
286
287 SunOS:*)
288 echo "${MACHINE}-sun-sunos4"; exit 0
289 ;;
290
291 UNIX_System_V:4.*:*)
292 echo "${MACHINE}-whatever-sysv4"; exit 0
293 ;;
294
295 *:4*:R4*:m88k)
296 echo "${MACHINE}-whatever-sysv4"; exit 0
297 ;;
298
299 DYNIX/ptx:4*:*)
300 echo "${MACHINE}-whatever-sysv4"; exit 0
301 ;;
302
303 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
304 echo "i486-ncr-sysv4"; exit 0
305 ;;
306
307 ULTRIX:*)
308 echo "${MACHINE}-unknown-ultrix"; exit 0
309 ;;
310
1fac96e4
UM
311 SINIX*|ReliantUNIX*)
312 echo "${MACHINE}-siemens-sysv4"; exit 0
58964a49
RE
313 ;;
314
9231f477
UM
315 POSIX-BC*)
316 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
317 ;;
318
58964a49
RE
319 machten:*)
320 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
321 ;;
322
323 library:*)
324 echo "${MACHINE}-ncr-sysv4"; exit 0
325 ;;
326
327 ConvexOS:*:11.0:*)
328 echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
329 ;;
330
72660f5f
RL
331 NEWS-OS:4.*)
332 echo "mips-sony-newsos4"; exit 0;
333 ;;
334
d78e5298 335 CYGWIN*)
1fe198b6
RL
336 case "$RELEASE" in
337 [bB]*|1.0|1.[12].*)
49e04548 338 echo "${MACHINE}-whatever-cygwin_pre1.3"
ba47f5c9 339 ;;
1fe198b6 340 *)
49e04548 341 echo "${MACHINE}-whatever-cygwin"
ba47f5c9
RL
342 ;;
343 esac
344 exit 0
d78e5298
UM
345 ;;
346
c46acbac
BM
347 *"CRAY T3E")
348 echo "t3e-cray-unicosmk"; exit 0;
349 ;;
350
351 *CRAY*)
352 echo "j90-cray-unicos"; exit 0;
353 ;;
58964a49
RE
354esac
355
356#
357# Ugg. These are all we can determine by what we know about
358# the output of uname. Be more creative:
359#
360
361# Do the Apollo stuff first. Here, we just simply assume
362# that the existance of the /usr/apollo directory is proof
363# enough
364if [ -d /usr/apollo ]; then
365 echo "whatever-apollo-whatever"
366 exit 0
367fi
368
369# Now NeXT
370ISNEXT=`hostinfo 2>/dev/null`
371case "$ISNEXT" in
8e9eae0f 372 *'NeXT Mach 3.3'*)
74a6c7f3
BM
373 echo "whatever-next-nextstep3.3"; exit 0
374 ;;
58964a49
RE
375 *NeXT*)
376 echo "whatever-next-nextstep"; exit 0
377 ;;
378esac
379
380# At this point we gone through all the one's
381# we know of: Punt
382
b1fe6b43 383echo "${MACHINE}-whatever-${SYSTEM}"
58964a49
RE
384exit 0
385) 2>/dev/null | (
386
387# ---------------------------------------------------------------------------
388# this is where the translation occurs into SSLeay terms
389# ---------------------------------------------------------------------------
390
58964a49
RE
391# figure out if gcc is available and if so we use it otherwise
392# we fallback to whatever cc does on the system
d51092f4 393GCCVER=`(gcc -dumpversion) 2>/dev/null`
a0618e3e 394if [ "$GCCVER" != "" ]; then
58964a49 395 CC=gcc
d51092f4
LJ
396 # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion
397 # does give us what we want though, so we use that. We just just the
398 # major and minor version numbers.
1656ef29 399 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
da8fa72f 400 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
58964a49
RE
401else
402 CC=cc
1656ef29 403fi
ac7b4261 404GCCVER=${GCCVER:-0}
1d4547a4
LJ
405if [ "$SYSTEM" = "HP-UX" ];then
406 # By default gcc is a ILP32 compiler (with long long == 64).
407 GCC_BITS="32"
408 if [ $GCCVER -ge 30 ]; then
409 # PA64 support only came in with gcc 3.0.x.
410 # We look for the preprocessor symbol __LP64__ indicating
411 # 64bit bit long and pointer. sizeof(int) == 32 on HPUX64.
412 if gcc -v -E -x c /dev/null 2>&1 | grep __LP64__ > /dev/null; then
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
da8fa72f
AP
457CCVER=${CCVER:-0}
458
58964a49
RE
459# read the output of the embedded GuessOS
460read GUESSOS
461
b1fe6b43 462echo Operating system: $GUESSOS
58964a49
RE
463
464# now map the output into SSLeay terms ... really should hack into the
465# script above so we end up with values in vars but that would take
466# more time that I want to waste at the moment
467case "$GUESSOS" in
da8fa72f
AP
468 mips2-sgi-irix)
469 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
470 CPU=${CPU:-0}
471 if [ $CPU -ge 4000 ]; then
472 options="$options -mips2"
473 fi
474 OUT="irix-$CC"
475 ;;
476 mips3-sgi-irix)
477 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
478 CPU=${CPU:-0}
479 if [ $CPU -ge 5000 ]; then
480 options="$options -mips4"
481 else
482 options="$options -mips3"
483 fi
484 OUT="irix-mips3-$CC"
485 ;;
486 mips4-sgi-irix64)
487 echo "WARNING! If you wish to build 64-bit library, then you have to"
720235ee 488 echo " invoke './Configure irix64-mips4-$CC' *manually*."
06a2b07b 489 if [ "$TEST" = "false" ]; then
ac7b4261
AP
490 echo " You have about 5 seconds to press Ctrl-C to abort."
491 (stty -icanon min 0 time 50; read waste) < /dev/tty
06a2b07b 492 fi
720235ee
UM
493 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
494 CPU=${CPU:-0}
495 if [ $CPU -ge 5000 ]; then
496 options="$options -mips4"
497 else
498 options="$options -mips3"
499 fi
da8fa72f
AP
500 OUT="irix-mips3-$CC"
501 ;;
93cd57a5 502 alpha-*-linux2)
bdf5e183
AP
503 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
504 case ${ISA:-generic} in
505 *[67]) OUT="linux-alpha+bwx-$CC" ;;
506 *) OUT="linux-alpha-$CC" ;;
507 esac
508 if [ "$CC" = "gcc" ]; then
509 case ${ISA:-generic} in
510 EV5|EV45) options="$options -mcpu=ev5";;
511 EV56|PCA56) options="$options -mcpu=ev56";;
512 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
513 esac
514 fi
515 ;;
815c83f7
RL
516 mips-*-linux?)
517 cat >dummy.c <<EOF
518#include <stdio.h> /* for printf() prototype */
519 int main (argc, argv) int argc; char *argv[]; {
520#ifdef __MIPSEB__
521 printf ("linux-%s\n", argv[1]);
522#endif
523#ifdef __MIPSEL__
524 printf ("linux-%sel\n", argv[1]);
525#endif
526 return 0;
527}
528EOF
529 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
530 rm dummy dummy.c
531 ;;
6fa865a3
LJ
532 ppc64-*-linux2)
533 #Use the standard target for PPC architecture until we create a
534 #special one for the 64bit architecture.
535 OUT="linux-ppc" ;;
bdf5e183 536 ppc-*-linux2) OUT="linux-ppc" ;;
2933ed4d 537 m68k-*-linux*) OUT="linux-m68k" ;;
010712ff 538 ia64-*-linux?) OUT="linux-ia64" ;;
0fad6cb7 539 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
70d70a3c
RL
540 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
541 i386-apple-darwin*) OUT="darwin-i386-cc" ;;
a0618e3e 542 sparc64-*-linux2)
1656ef29
AP
543 #Before we can uncomment following lines we have to wait at least
544 #till 64-bit glibc for SPARC is operational:-(
545 #echo "WARNING! If you wish to build 64-bit library, then you have to"
a0618e3e 546 #echo " invoke './Configure linux64-sparcv9' *manually*."
69e42952 547 #echo " Type return if you want to continue, Ctrl-C to abort."
a0618e3e
AP
548 #read waste < /dev/tty
549 OUT="linux-sparcv9" ;;
da8fa72f 550 sparc-*-linux2)
d5695a26 551 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
a0618e3e
AP
552 case ${KARCH:-sun4} in
553 sun4u*) OUT="linux-sparcv9" ;;
554 sun4m) OUT="linux-sparcv8" ;;
555 sun4d) OUT="linux-sparcv8" ;;
556 *) OUT="linux-sparcv7" ;;
557 esac ;;
95f8c719
RL
558 parisc-*-linux2)
559 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
560 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo`
561
562 # ??TODO ?? Model transformations
563 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
564 # assuming no further arch. identification will ever be used by GCC.
565 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
566 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
567 # for these chips in the future.
568 # PA7300LC -> 7100LC (1.1)
569 # PA8200 -> 8000 (2.0)
570 # PA8500 -> 8000 (2.0)
571 # PA8600 -> 8000 (2.0)
572
573 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
574 # Finish Model transformations
575
576 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
577 OUT="linux-parisc" ;;
b1086116 578 arm*-*-linux2) OUT="linux-elf-arm" ;;
49ce63cd 579 s390-*-linux2) OUT="linux-s390" ;;
f14845d9 580 s390x-*-linux?) OUT="linux-s390x" ;;
9d07fd03
UM
581 *-*-linux2) OUT="linux-elf"
582 if [ "$GCCVER" -gt 28 ]; then
583 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
584 OUT="linux-pentium"
585 fi
586 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
587 OUT="linux-ppro"
588 fi
589 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
590 OUT="linux-k6"
591 fi
592 fi ;;
dabba110 593 *-*-linux1) OUT="linux-aout" ;;
7228920c 594 sun4u*-*-solaris2)
ac7b4261 595 OUT="solaris-sparcv9-$CC"
1656ef29 596 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
ac7b4261
AP
597 if [ "$ISA64" != "" ]; then
598 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
1656ef29
AP
599 echo "WARNING! If you wish to build 64-bit library, then you have to"
600 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
06a2b07b 601 if [ "$TEST" = "false" ]; then
ac7b4261 602 echo " You have about 5 seconds to press Ctrl-C to abort."
62c27161 603 (stty -icanon min 0 time 50; read waste) < /dev/tty
06a2b07b 604 fi
ac7b4261
AP
605 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
606 # $GCC_ARCH denotes default ABI chosen by compiler driver
607 # (first one found on the $PATH). I assume that user
608 # expects certain consistency with the rest of his builds
609 # and therefore switch over to 64-bit. <appro>
610 OUT="solaris64-sparcv9-gcc"
611 echo "WARNING! If you wish to build 32-bit library, then you have to"
612 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
613 if [ "$TEST" = "false" ]; then
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
ac7b4261
AP
616 fi
617 elif [ "$GCC_ARCH" = "-m32" ]; then
618 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
619 echo " and wish to build 64-bit library, then you have to"
620 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
621 if [ "$TEST" = "false" ]; then
622 echo " You have about 5 seconds to press Ctrl-C to abort."
62c27161 623 (stty -icanon min 0 time 50; read waste) < /dev/tty
ac7b4261
AP
624 fi
625 fi
1656ef29 626 fi
ac7b4261 627 ;;
7228920c
BM
628 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
629 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
630 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
631 *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
58964a49 632 *-*-sunos4) OUT="sunos-$CC" ;;
44717474
RE
633 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
634 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
635 *-freebsd[1-2]*) OUT="FreeBSD" ;;
58964a49
RE
636 *86*-*-netbsd) OUT="NetBSD-x86" ;;
637 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
638 *-*-netbsd) OUT="NetBSD-sparc" ;;
dfeab068 639 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
b44e425f
RL
640 *86*-*-openbsd) OUT="OpenBSD-i386" ;;
641 m68k*-*-openbsd) OUT="OpenBSD-m68k" ;;
642 m88k*-*-openbsd) OUT="OpenBSD-m88k" ;;
643 mips*-*-openbsd) OUT="OpenBSD-mips" ;;
dfeab068 644 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
b44e425f
RL
645 powerpc*-*-openbsd) OUT="OpenBSD-powerpc" ;;
646 sparc64*-*-openbsd) OUT="OpenBSD-sparc64" ;;
647 sparc*-*-openbsd) OUT="OpenBSD-sparc" ;;
648 vax*-*-openbsd) OUT="OpenBSD-vax" ;;
649 hppa*-*-openbsd) OUT="OpenBSD-hppa" ;;
dfeab068 650 *-*-openbsd) OUT="OpenBSD" ;;
0cceb1c7 651 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
6bc847e4
RL
652 *-*-osf) OUT="alphaold-cc" ;;
653 *-*-tru64) OUT="alpha-cc" ;;
cb42ce0b
LJ
654 *-*-OpenUNIX*)
655 if [ "$CC" = "gcc" ]; then
656 OUT="OpenUNIX-8-gcc"
657 else
658 OUT="OpenUNIX-8"
659 fi
660 ;;
9a5a7401
RL
661 *-*-unixware7) OUT="unixware-7" ;;
662 *-*-UnixWare7) OUT="unixware-7" ;;
663 *-*-Unixware7) OUT="unixware-7" ;;
8bf49ea1
RL
664 *-*-unixware20*) OUT="unixware-2.0" ;;
665 *-*-unixware21*) OUT="unixware-2.1" ;;
666 *-*-UnixWare20*) OUT="unixware-2.0" ;;
667 *-*-UnixWare21*) OUT="unixware-2.1" ;;
668 *-*-Unixware20*) OUT="unixware-2.0" ;;
669 *-*-Unixware21*) OUT="unixware-2.1" ;;
9231f477 670 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
1fac96e4
UM
671 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
672 *-siemens-sysv4) OUT="SINIX" ;;
6d03b73e 673 *-hpux1*)
1d4547a4
LJ
674 if [ $CC = "gcc" ];
675 then
676 if [ $GCC_BITS = "64" ]; then
677 OUT="hpux64-parisc-gcc"
678 else
679 OUT="hpux-parisc-gcc"
680 fi
681 else
682 OUT="hpux-parisc-$CC"
683 fi
6d03b73e
AP
684 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
685 KERNEL_BITS=${KERNEL_BITS:-32}
686 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
687 CPU_VERSION=${CPU_VERSION:-0}
688 # See <sys/unistd.h> for further info on CPU_VERSION.
689 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
690 echo "NOTICE! 64-bit is the only ABI currently operational on HP-UXi."
691 echo " Post request to openssl-dev@openssl.org for 32-bit support."
692 if [ "$TEST" = "false" ]; then
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
697 if [ "$CC" = "cc" ]; then
698 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
699 fi
700 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
701 echo "WARNING! If you wish to build 64-bit library then you have to"
702 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
703 if [ "$TEST" = "false" ]; then
704 echo " You have about 5 seconds to press Ctrl-C to abort."
705 (stty -icanon min 0 time 50; read waste) < /dev/tty
706 fi
707 fi
708 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
709 :
710 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
711 :
712 else # Motorola(?) CPU
713 OUT="hpux-$CC"
714 fi
715 options="$options -D_REENTRANT" ;;
bcba6cc6 716 *-hpux) OUT="hpux-parisc-$CC" ;;
58964a49 717 # these are all covered by the catchall below
58964a49
RE
718 # *-aix) OUT="aix-$CC" ;;
719 # *-dgux) OUT="dgux" ;;
72660f5f 720 mips-sony-newsos4) OUT="newsos4-gcc" ;;
49e04548
RL
721 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
722 *-*-cygwin) OUT="Cygwin" ;;
c46acbac
BM
723 t3e-cray-unicosmk) OUT="cray-t3e" ;;
724 j90-cray-unicos) OUT="cray-j90" ;;
58964a49 725 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
5d3bb220
UM
726esac
727
5270e702
RL
728# NB: This atalla support has been superceded by the ENGINE support
729# That contains its own header and definitions anyway. Support can
730# be enabled or disabled on any supported platform without external
731# headers, eg. by adding the "hw-atalla" switch to ./config or
732# perl Configure
733#
bd03b99b 734# See whether we can compile Atalla support
5270e702
RL
735#if [ -f /usr/include/atasi.h ]
736#then
737# options="$options -DATALLA"
738#fi
bd03b99b 739
b6735832 740# gcc < 2.8 does not support -mcpu=ultrasparc
1656ef29 741if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
b6735832 742then
a0618e3e 743 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
1656ef29
AP
744 sleep 5
745 OUT=solaris-sparcv9-gcc27
a0618e3e
AP
746fi
747if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
748then
749 echo "WARNING! Falling down to 'linux-sparcv8'."
750 echo " Upgrade to gcc-2.8 or later."
1656ef29 751 sleep 5
a0618e3e 752 OUT=linux-sparcv8
b6735832
UM
753fi
754
5d3bb220
UM
755case "$GUESSOS" in
756 i386-*) options="$options 386" ;;
58964a49
RE
757esac
758
2413a397 759for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 rijndael ripemd rsa sha
9231f477
UM
760do
761 if [ ! -d crypto/$i ]
762 then
763 options="$options no-$i"
764 fi
765done
766
f9b3bff6
RL
767# Discover Kerberos 5 (since it's still a prototype, we don't
768# do any guesses yet, that's why this section is commented away.
769#if [ -d /usr/kerberos ]; then
770# krb5_dir=/usr/kerberos
771# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
772# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
773# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
774# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
775# -a \( -f $krb5_dir/include/krb5.h \) ]; then
776# options="$options --with-krb5-flavor=MIT"
777# fi
778#elif [ -d /usr/heimdal ]; then
779# krb5_dir=/usr/heimdal
780# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
781# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
782# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
783# -a \( -f $krb5_dir/include/krb5.h \) ]; then
784# options="$options --with-krb5-flavor=Heimdal"
785# fi
786#fi
787
58964a49
RE
788if [ -z "$OUT" ]; then
789 OUT="$CC"
790fi
791
99aab161
UM
792if [ ".$PERL" = . ] ; then
793 for i in . `echo $PATH | sed 's/:/ /g'`; do
794 if [ -f "$i/perl5" ] ; then
795 PERL="$i/perl5"
796 break;
797 fi;
798 done
799fi
800
801if [ ".$PERL" = . ] ; then
802 for i in . `echo $PATH | sed 's/:/ /g'`; do
803 if [ -f "$i/perl" ] ; then
a5a47e4a
UM
804 if "$i/perl" -e 'exit($]<5.0)'; then
805 PERL="$i/perl"
806 break;
807 fi;
99aab161
UM
808 fi;
809 done
810fi
811
a5a47e4a 812if [ ".$PERL" = . ] ; then
99aab161
UM
813 echo "You need Perl 5."
814 exit 1
815fi
816
58964a49
RE
817# run Configure to check to see if we need to specify the
818# compiler for the platform ... in which case we add it on
819# the end ... otherwise we leave it off
99aab161 820
10a926c1 821$PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
58964a49
RE
822if [ $? = "0" ]; then
823 OUT="$OUT-$CC"
824fi
825
826OUT="$PREFIX$OUT"
827
10a926c1 828$PERL ./Configure LIST | grep "$OUT" > /dev/null
b1fe6b43 829if [ $? = "0" ]; then
9e2c0f41 830 echo Configuring for $OUT
58964a49 831
b1fe6b43
UM
832 if [ "$TEST" = "true" ]; then
833 echo $PERL ./Configure $OUT $options
834 else
835 $PERL ./Configure $OUT $options
836 fi
58964a49 837else
744029c1 838 echo "This system ($OUT) is not supported. See file INSTALL for details."
58964a49 839fi
58964a49 840)