blob: 3d443da6fb5e9047a47d424231353cfaf9bc29a7 [file] [log] [blame]
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00001#!/bin/sh
2#
Ulf Möller5d3bb221999-04-22 19:23:56 +00003# OpenSSL config: determine the operating system and run ./Configure
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00004#
Ulf Möller5d3bb221999-04-22 19:23:56 +00005# "config -h" for usage information.
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00006#
Ulf Möller5d3bb221999-04-22 19:23:56 +00007# this is a merge of minarch and GuessOS from the Apache Group.
8# Originally written by Tim Hudson <tjh@cryptsoft.com>.
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00009
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
Ulf Möller06a2b072001-02-27 21:10:21 +000023PREFIX=""
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
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000048# 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
Richard Levitte8f6dc9c2000-02-27 17:17:43 +000055
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000056# 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)
Richard Levitte8bf49ea2001-03-18 14:25:01 +000077 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
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000084 echo "${MACHINE}-whatever-unixware211"; exit 0
Richard Levitte8f6dc9c2000-02-27 17:17:43 +000085 elif [ "x$VERSION" = "x2.1.2" ]; then
86 echo "${MACHINE}-whatever-unixware212"; exit 0
Richard Levitte8bf49ea2001-03-18 14:25:01 +000087 elif [ "x$VERSION" = "x2.1.3" ]; then
88 echo "${MACHINE}-whatever-unixware213"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000089 else
90 echo "${MACHINE}-whatever-unixware2"; exit 0
91 fi
92 ;;
93 4.2)
94 echo "whatever-whatever-unixware1"; exit 0
95 ;;
Lutz Jänicke6c36f7a2001-09-06 12:39:00 +000096 OpenUNIX)
97 if [ "`echo x$VERSION | sed -e 's/\..*//'`" = "x8" ]; then
98 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
99 fi
100 ;;
Richard Levitte8f6dc9c2000-02-27 17:17:43 +0000101 5)
Richard Levitte2eb5bc52000-02-27 17:23:25 +0000102 if [ "`echo x$VERSION | sed -e 's/\..*//'`" = "x7" ]; then
Richard Levitte8f6dc9c2000-02-27 17:17:43 +0000103 echo "${MACHINE}-sco-unixware7"; exit 0
104 fi
Richard Levitte9a5a7402000-02-26 03:51:55 +0000105 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000106 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
Richard Levittec5f8bbb2000-09-21 05:42:01 +0000112 MPE/iX:*)
113 MACHINE=`echo "$MACHINE" | sed -e 's/-/_/g'`
114 echo "parisc-hp-MPE/iX"; exit 0
115 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000116 A/UX:*)
117 echo "m68k-apple-aux3"; exit 0
118 ;;
119
Richard Levitte36810172001-03-15 20:23:22 +0000120 AIX:[3456789]:4:*)
121 echo "${MACHINE}-ibm-aix43"; exit 0
122 ;;
123
124 AIX:*:[56789]:*)
125 echo "${MACHINE}-ibm-aix43"; exit 0
126 ;;
127
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000128 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
Andy Polyakov6d03b732001-07-30 16:42:15 +0000143 1[0-9].*) # HPUX 10 and 11 targets are unified
Ulf Möllerafd1f9e1999-05-04 11:52:26 +0000144 echo "${MACHINE}-hp-hpux10"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000145 ;;
146 *)
147 echo "${MACHINE}-hp-hpux"; exit 0
148 ;;
149 esac
150 ;;
151
Andy Polyakovda8fa721999-07-25 20:40:58 +0000152 IRIX:5.*)
153 echo "mips2-sgi-irix"; exit 0
154 ;;
155
Andy Polyakov1656ef21999-07-25 22:25:12 +0000156 IRIX:6.*)
Andy Polyakovda8fa721999-07-25 20:40:58 +0000157 echo "mips3-sgi-irix"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000158 ;;
159
160 IRIX64:*)
Andy Polyakovda8fa721999-07-25 20:40:58 +0000161 echo "mips4-sgi-irix64"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000162 ;;
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
Richard Levitte10a29752001-01-11 12:58:37 +0000172 GNU*)
173 echo "hurd-x86"; exit 0;
174 ;;
175
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000176 LynxOS:*)
177 echo "${MACHINE}-lynx-lynxos"; exit 0
178 ;;
179
Bodo Möllera9ffce01999-06-11 11:45:22 +0000180 BSD/OS:4.*) # BSD/OS always says 386
181 echo "i486-whatever-bsdi4"; exit 0
Bodo Möller0cceb1c1999-05-30 23:54:52 +0000182 ;;
183
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000184 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
Ulf Möller9c789ad1999-06-16 20:26:46 +0000185 case `/sbin/sysctl -n hw.model` in
186 Pentium*)
Ulf Möller8050bc71999-06-16 23:49:39 +0000187 echo "i586-whatever-bsdi"; exit 0
Ulf Möller9c789ad1999-06-16 20:26:46 +0000188 ;;
189 *)
Ulf Möller8050bc71999-06-16 23:49:39 +0000190 echo "i386-whatever-bsdi"; exit 0
Ulf Möller9c789ad1999-06-16 20:26:46 +0000191 ;;
192 esac;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000193 ;;
194
195 BSD/386:*|BSD/OS:*)
196 echo "${MACHINE}-whatever-bsdi"; exit 0
197 ;;
198
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000199 FreeBSD:*)
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000200 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 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000216
Ulf Möllerc6fdd7d1999-04-23 16:32:04 +0000217 NetBSD:*:*:*386*)
Richard Levitte48d89b52000-10-21 22:18:52 +0000218 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000219 ;;
220
221 NetBSD:*)
222 echo "${MACHINE}-whatever-netbsd"; exit 0
223 ;;
224
225 OpenBSD:*)
226 echo "${MACHINE}-whatever-openbsd"; exit 0
227 ;;
228
Lutz Jänicke6c36f7a2001-09-06 12:39:00 +0000229 OpenUNIX:*)
230 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
231 ;;
232
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000233 OSF1:*:*:*alpha*)
Richard Levitte6bc847e2001-08-10 15:26:21 +0000234 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
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000246 ;;
247
248 QNX:*)
Lutz Jänicke6a9af682001-11-30 09:38:57 +0000249 case "$RELEASE" in
Bodo Möller36124b12000-09-06 12:25:58 +0000250 4*)
251 echo "${MACHINE}-whatever-qnx4"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000252 ;;
Lutz Jänicke6a9af682001-11-30 09:38:57 +0000253 6*)
254 echo "${MACHINE}-whatever-qnx6"
255 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000256 *)
Bodo Möller36124b12000-09-06 12:25:58 +0000257 echo "${MACHINE}-whatever-qnx"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000258 ;;
259 esac
260 exit 0
261 ;;
262
263 Paragon*:*:*:*)
264 echo "i860-intel-osf1"; exit 0
265 ;;
266
Andy Polyakov0fad6cb2000-02-06 11:15:20 +0000267 Rhapsody:*)
268 echo "ppc-apple-rhapsody"; exit 0
269 ;;
270
Richard Levitte9b7a5522000-12-01 01:11:54 +0000271 Darwin:*)
Richard Levitte70d70a32001-03-07 10:04:00 +0000272 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
Richard Levitte9b7a5522000-12-01 01:11:54 +0000281 ;;
282
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000283 SunOS:5.*)
Bodo Möller72289202000-09-06 17:09:58 +0000284 echo "${MACHINE}-whatever-solaris2"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000285 ;;
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
Ulf Möller1fac96e1999-05-20 17:28:19 +0000311 SINIX*|ReliantUNIX*)
312 echo "${MACHINE}-siemens-sysv4"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000313 ;;
314
Ulf Möller9231f471999-06-04 21:32:31 +0000315 POSIX-BC*)
316 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
317 ;;
318
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000319 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
Richard Levitte72660f52000-09-14 12:48:48 +0000331 NEWS-OS:4.*)
332 echo "mips-sony-newsos4"; exit 0;
333 ;;
334
Ulf Möllerd78e5292001-12-19 19:37:31 +0000335 CYGWIN*)
Richard Levitte1fe198b2002-02-13 14:44:33 +0000336 case "$RELEASE" in
337 [bB]*|1.0|1.[12].*)
Richard Levitte49e04542002-02-14 12:28:24 +0000338 echo "${MACHINE}-whatever-cygwin_pre1.3"
Richard Levitteba47f5c2002-02-14 02:20:34 +0000339 ;;
Richard Levitte1fe198b2002-02-13 14:44:33 +0000340 *)
Richard Levitte49e04542002-02-14 12:28:24 +0000341 echo "${MACHINE}-whatever-cygwin"
Richard Levitteba47f5c2002-02-14 02:20:34 +0000342 ;;
343 esac
344 exit 0
Ulf Möllerd78e5292001-12-19 19:37:31 +0000345 ;;
346
Bodo Möllerc46acba2002-03-15 16:46:41 +0000347 *"CRAY T3E")
348 echo "t3e-cray-unicosmk"; exit 0;
349 ;;
350
351 *CRAY*)
352 echo "j90-cray-unicos"; exit 0;
353 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000354esac
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
Bodo Möller8e9eae01999-06-11 10:54:42 +0000372 *'NeXT Mach 3.3'*)
Bodo Möller74a6c7f1999-06-10 18:05:58 +0000373 echo "whatever-next-nextstep3.3"; exit 0
374 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000375 *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
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000383echo "${MACHINE}-whatever-${SYSTEM}"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000384exit 0
385) 2>/dev/null | (
386
387# ---------------------------------------------------------------------------
388# this is where the translation occurs into SSLeay terms
389# ---------------------------------------------------------------------------
390
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000391# figure out if gcc is available and if so we use it otherwise
392# we fallback to whatever cc does on the system
Andy Polyakova0618e31999-07-25 15:13:49 +0000393GCCVER=`(gcc --version) 2>/dev/null`
394if [ "$GCCVER" != "" ]; then
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000395 CC=gcc
Andy Polyakova0618e31999-07-25 15:13:49 +0000396 # then strip off whatever prefix Cygnus prepends the number with...
397 GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'`
Andy Polyakov1656ef21999-07-25 22:25:12 +0000398 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
Andy Polyakovda8fa721999-07-25 20:40:58 +0000399 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000400else
401 CC=cc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000402fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000403GCCVER=${GCCVER:-0}
Andy Polyakov1656ef21999-07-25 22:25:12 +0000404
405if [ "$SYSTEM" = "SunOS" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000406 if [ $GCCVER -ge 30 ]; then
407 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
408 # to be working, at the very least 'make test' passes...
409 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
410 GCC_ARCH="-m64"
411 else
412 GCC_ARCH="-m32"
413 fi
414 fi
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000415 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
Andy Polyakov1656ef21999-07-25 22:25:12 +0000416 CCVER=`(cc -V 2>&1) 2>/dev/null | \
417 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
418 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
419 CCVER=${CCVER:-0}
420 if [ $CCVER -gt 40 ]; then
421 CC=cc # overrides gcc!!!
422 if [ $CCVER -eq 50 ]; then
423 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
424 echo " patch #107357-01 or later applied."
425 sleep 5
426 fi
427 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
428 CC=sc3
Ulf Möller744029c1999-05-04 23:18:24 +0000429 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000430fi
431
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000432if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
433 # check for Compaq C, expected output is "blah-blah C Vx.x"
434 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
435 egrep -e '.* C V[0-9]\.[0-9]' | \
436 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
437 CCCVER=${CCCVER:-0}
438 if [ $CCCVER -gt 60 ]; then
439 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
440 # only on hash routines and des, otherwise gcc (2.95)
441 # keeps along rather tight...
442 fi
443fi
444
Andy Polyakovda8fa721999-07-25 20:40:58 +0000445CCVER=${CCVER:-0}
446
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000447# read the output of the embedded GuessOS
448read GUESSOS
449
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000450echo Operating system: $GUESSOS
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000451
452# now map the output into SSLeay terms ... really should hack into the
453# script above so we end up with values in vars but that would take
454# more time that I want to waste at the moment
455case "$GUESSOS" in
Andy Polyakovda8fa721999-07-25 20:40:58 +0000456 mips2-sgi-irix)
457 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
458 CPU=${CPU:-0}
459 if [ $CPU -ge 4000 ]; then
460 options="$options -mips2"
461 fi
462 OUT="irix-$CC"
463 ;;
464 mips3-sgi-irix)
465 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
466 CPU=${CPU:-0}
467 if [ $CPU -ge 5000 ]; then
468 options="$options -mips4"
469 else
470 options="$options -mips3"
471 fi
472 OUT="irix-mips3-$CC"
473 ;;
474 mips4-sgi-irix64)
475 echo "WARNING! If you wish to build 64-bit library, then you have to"
Ulf Möller720235e2001-02-14 00:14:09 +0000476 echo " invoke './Configure irix64-mips4-$CC' *manually*."
Ulf Möller06a2b072001-02-27 21:10:21 +0000477 if [ "$TEST" = "false" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000478 echo " You have about 5 seconds to press Ctrl-C to abort."
479 (stty -icanon min 0 time 50; read waste) < /dev/tty
Ulf Möller06a2b072001-02-27 21:10:21 +0000480 fi
Ulf Möller720235e2001-02-14 00:14:09 +0000481 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
482 CPU=${CPU:-0}
483 if [ $CPU -ge 5000 ]; then
484 options="$options -mips4"
485 else
486 options="$options -mips3"
487 fi
Andy Polyakovda8fa721999-07-25 20:40:58 +0000488 OUT="irix-mips3-$CC"
489 ;;
Bodo Möller93cd57a2001-02-09 09:40:18 +0000490 alpha-*-linux2)
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000491 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
492 case ${ISA:-generic} in
493 *[67]) OUT="linux-alpha+bwx-$CC" ;;
494 *) OUT="linux-alpha-$CC" ;;
495 esac
496 if [ "$CC" = "gcc" ]; then
497 case ${ISA:-generic} in
498 EV5|EV45) options="$options -mcpu=ev5";;
499 EV56|PCA56) options="$options -mcpu=ev56";;
500 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
501 esac
502 fi
503 ;;
Richard Levitte815c83f2000-10-31 23:14:19 +0000504 mips-*-linux?)
505 cat >dummy.c <<EOF
506#include <stdio.h> /* for printf() prototype */
507 int main (argc, argv) int argc; char *argv[]; {
508#ifdef __MIPSEB__
509 printf ("linux-%s\n", argv[1]);
510#endif
511#ifdef __MIPSEL__
512 printf ("linux-%sel\n", argv[1]);
513#endif
514 return 0;
515}
516EOF
517 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
518 rm dummy dummy.c
519 ;;
Lutz Jänicke6fa865a2002-05-12 19:45:51 +0000520 ppc64-*-linux2)
521 #Use the standard target for PPC architecture until we create a
522 #special one for the 64bit architecture.
523 OUT="linux-ppc" ;;
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000524 ppc-*-linux2) OUT="linux-ppc" ;;
Richard Levitte2933ed42000-05-24 22:00:59 +0000525 m68k-*-linux*) OUT="linux-m68k" ;;
Ralf S. Engelschall010712f2000-02-29 15:29:02 +0000526 ia64-*-linux?) OUT="linux-ia64" ;;
Andy Polyakov0fad6cb2000-02-06 11:15:20 +0000527 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
Richard Levitte70d70a32001-03-07 10:04:00 +0000528 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
529 i386-apple-darwin*) OUT="darwin-i386-cc" ;;
Andy Polyakova0618e31999-07-25 15:13:49 +0000530 sparc64-*-linux2)
Andy Polyakov1656ef21999-07-25 22:25:12 +0000531 #Before we can uncomment following lines we have to wait at least
532 #till 64-bit glibc for SPARC is operational:-(
533 #echo "WARNING! If you wish to build 64-bit library, then you have to"
Andy Polyakova0618e31999-07-25 15:13:49 +0000534 #echo " invoke './Configure linux64-sparcv9' *manually*."
Bodo Möller69e42952001-01-12 10:34:58 +0000535 #echo " Type return if you want to continue, Ctrl-C to abort."
Andy Polyakova0618e31999-07-25 15:13:49 +0000536 #read waste < /dev/tty
537 OUT="linux-sparcv9" ;;
Andy Polyakovda8fa721999-07-25 20:40:58 +0000538 sparc-*-linux2)
Richard Levitted5695a22000-11-16 18:59:02 +0000539 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
Andy Polyakova0618e31999-07-25 15:13:49 +0000540 case ${KARCH:-sun4} in
541 sun4u*) OUT="linux-sparcv9" ;;
542 sun4m) OUT="linux-sparcv8" ;;
543 sun4d) OUT="linux-sparcv8" ;;
544 *) OUT="linux-sparcv7" ;;
545 esac ;;
Richard Levitte95f8c712002-01-02 10:00:22 +0000546 parisc-*-linux2)
547 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
548 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo`
549
550 # ??TODO ?? Model transformations
551 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
552 # assuming no further arch. identification will ever be used by GCC.
553 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
554 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
555 # for these chips in the future.
556 # PA7300LC -> 7100LC (1.1)
557 # PA8200 -> 8000 (2.0)
558 # PA8500 -> 8000 (2.0)
559 # PA8600 -> 8000 (2.0)
560
561 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
562 # Finish Model transformations
563
564 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
565 OUT="linux-parisc" ;;
Richard Levitteb1086112000-05-31 17:06:10 +0000566 arm*-*-linux2) OUT="linux-elf-arm" ;;
Bodo Möller49ce63c2001-02-09 08:34:29 +0000567 s390-*-linux2) OUT="linux-s390" ;;
Richard Levittef14845d2002-01-25 22:06:59 +0000568 s390x-*-linux?) OUT="linux-s390x" ;;
Ulf Möller9d07fd02001-09-05 02:18:40 +0000569 *-*-linux2) OUT="linux-elf"
570 if [ "$GCCVER" -gt 28 ]; then
571 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
572 OUT="linux-pentium"
573 fi
574 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
575 OUT="linux-ppro"
576 fi
577 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
578 OUT="linux-k6"
579 fi
580 fi ;;
Ben Lauriedabba111999-01-17 14:20:20 +0000581 *-*-linux1) OUT="linux-aout" ;;
Bodo Möller72289202000-09-06 17:09:58 +0000582 sun4u*-*-solaris2)
Andy Polyakovac7b4262001-07-25 15:58:57 +0000583 OUT="solaris-sparcv9-$CC"
Andy Polyakov1656ef21999-07-25 22:25:12 +0000584 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
Andy Polyakovac7b4262001-07-25 15:58:57 +0000585 if [ "$ISA64" != "" ]; then
586 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
Andy Polyakov1656ef21999-07-25 22:25:12 +0000587 echo "WARNING! If you wish to build 64-bit library, then you have to"
588 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
Ulf Möller06a2b072001-02-27 21:10:21 +0000589 if [ "$TEST" = "false" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000590 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000591 (stty -icanon min 0 time 50; read waste) < /dev/tty
Ulf Möller06a2b072001-02-27 21:10:21 +0000592 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000593 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
594 # $GCC_ARCH denotes default ABI chosen by compiler driver
595 # (first one found on the $PATH). I assume that user
596 # expects certain consistency with the rest of his builds
597 # and therefore switch over to 64-bit. <appro>
598 OUT="solaris64-sparcv9-gcc"
599 echo "WARNING! If you wish to build 32-bit library, then you have to"
600 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
601 if [ "$TEST" = "false" ]; then
602 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000603 (stty -icanon min 0 time 50; read waste) < /dev/tty
Andy Polyakovac7b4262001-07-25 15:58:57 +0000604 fi
605 elif [ "$GCC_ARCH" = "-m32" ]; then
606 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
607 echo " and wish to build 64-bit library, then you have to"
608 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
609 if [ "$TEST" = "false" ]; then
610 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000611 (stty -icanon min 0 time 50; read waste) < /dev/tty
Andy Polyakovac7b4262001-07-25 15:58:57 +0000612 fi
613 fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000614 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000615 ;;
Bodo Möller72289202000-09-06 17:09:58 +0000616 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
617 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
618 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
619 *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000620 *-*-sunos4) OUT="sunos-$CC" ;;
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000621 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
622 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
623 *-freebsd[1-2]*) OUT="FreeBSD" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000624 *86*-*-netbsd) OUT="NetBSD-x86" ;;
625 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
626 *-*-netbsd) OUT="NetBSD-sparc" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000627 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
Richard Levitteb44e4252002-03-05 09:43:18 +0000628 *86*-*-openbsd) OUT="OpenBSD-i386" ;;
629 m68k*-*-openbsd) OUT="OpenBSD-m68k" ;;
630 m88k*-*-openbsd) OUT="OpenBSD-m88k" ;;
631 mips*-*-openbsd) OUT="OpenBSD-mips" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000632 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
Richard Levitteb44e4252002-03-05 09:43:18 +0000633 powerpc*-*-openbsd) OUT="OpenBSD-powerpc" ;;
634 sparc64*-*-openbsd) OUT="OpenBSD-sparc64" ;;
635 sparc*-*-openbsd) OUT="OpenBSD-sparc" ;;
636 vax*-*-openbsd) OUT="OpenBSD-vax" ;;
637 hppa*-*-openbsd) OUT="OpenBSD-hppa" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000638 *-*-openbsd) OUT="OpenBSD" ;;
Bodo Möller0cceb1c1999-05-30 23:54:52 +0000639 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
Richard Levitte6bc847e2001-08-10 15:26:21 +0000640 *-*-osf) OUT="alphaold-cc" ;;
641 *-*-tru64) OUT="alpha-cc" ;;
Lutz Jänickecb42ce02001-09-07 12:13:10 +0000642 *-*-OpenUNIX*)
643 if [ "$CC" = "gcc" ]; then
644 OUT="OpenUNIX-8-gcc"
645 else
646 OUT="OpenUNIX-8"
647 fi
648 ;;
Richard Levitte9a5a7402000-02-26 03:51:55 +0000649 *-*-unixware7) OUT="unixware-7" ;;
650 *-*-UnixWare7) OUT="unixware-7" ;;
651 *-*-Unixware7) OUT="unixware-7" ;;
Richard Levitte8bf49ea2001-03-18 14:25:01 +0000652 *-*-unixware20*) OUT="unixware-2.0" ;;
653 *-*-unixware21*) OUT="unixware-2.1" ;;
654 *-*-UnixWare20*) OUT="unixware-2.0" ;;
655 *-*-UnixWare21*) OUT="unixware-2.1" ;;
656 *-*-Unixware20*) OUT="unixware-2.0" ;;
657 *-*-Unixware21*) OUT="unixware-2.1" ;;
Ulf Möller9231f471999-06-04 21:32:31 +0000658 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
Ulf Möller1fac96e1999-05-20 17:28:19 +0000659 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
660 *-siemens-sysv4) OUT="SINIX" ;;
Andy Polyakov6d03b732001-07-30 16:42:15 +0000661 *-hpux1*)
662 OUT="hpux-parisc-$CC"
663 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
664 KERNEL_BITS=${KERNEL_BITS:-32}
665 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
666 CPU_VERSION=${CPU_VERSION:-0}
667 # See <sys/unistd.h> for further info on CPU_VERSION.
668 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
669 echo "NOTICE! 64-bit is the only ABI currently operational on HP-UXi."
670 echo " Post request to openssl-dev@openssl.org for 32-bit support."
671 if [ "$TEST" = "false" ]; then
672 (stty -icanon min 0 time 50; read waste) < /dev/tty
673 fi
674 OUT="hpux64-ia64-cc"
675 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
676 if [ "$CC" = "cc" ]; then
677 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
678 fi
679 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
680 echo "WARNING! If you wish to build 64-bit library then you have to"
681 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
682 if [ "$TEST" = "false" ]; then
683 echo " You have about 5 seconds to press Ctrl-C to abort."
684 (stty -icanon min 0 time 50; read waste) < /dev/tty
685 fi
686 fi
687 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
688 :
689 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
690 :
691 else # Motorola(?) CPU
692 OUT="hpux-$CC"
693 fi
694 options="$options -D_REENTRANT" ;;
Andy Polyakovbcba6cc2000-02-12 23:33:01 +0000695 *-hpux) OUT="hpux-parisc-$CC" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000696 # these are all covered by the catchall below
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000697 # *-aix) OUT="aix-$CC" ;;
698 # *-dgux) OUT="dgux" ;;
Richard Levitte72660f52000-09-14 12:48:48 +0000699 mips-sony-newsos4) OUT="newsos4-gcc" ;;
Richard Levitte49e04542002-02-14 12:28:24 +0000700 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
701 *-*-cygwin) OUT="Cygwin" ;;
Bodo Möllerc46acba2002-03-15 16:46:41 +0000702 t3e-cray-unicosmk) OUT="cray-t3e" ;;
703 j90-cray-unicos) OUT="cray-j90" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000704 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
705esac
706
Richard Levitte5270e702000-10-26 21:07:28 +0000707# NB: This atalla support has been superceded by the ENGINE support
708# That contains its own header and definitions anyway. Support can
709# be enabled or disabled on any supported platform without external
710# headers, eg. by adding the "hw-atalla" switch to ./config or
711# perl Configure
712#
Ben Lauriebd03b992000-02-16 22:15:39 +0000713# See whether we can compile Atalla support
Richard Levitte5270e702000-10-26 21:07:28 +0000714#if [ -f /usr/include/atasi.h ]
715#then
716# options="$options -DATALLA"
717#fi
Ben Lauriebd03b992000-02-16 22:15:39 +0000718
Ulf Möllerb6735831999-05-18 23:44:38 +0000719# gcc < 2.8 does not support -mcpu=ultrasparc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000720if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
Ulf Möllerb6735831999-05-18 23:44:38 +0000721then
Andy Polyakova0618e31999-07-25 15:13:49 +0000722 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000723 sleep 5
724 OUT=solaris-sparcv9-gcc27
Andy Polyakova0618e31999-07-25 15:13:49 +0000725fi
726if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
727then
728 echo "WARNING! Falling down to 'linux-sparcv8'."
729 echo " Upgrade to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000730 sleep 5
Andy Polyakova0618e31999-07-25 15:13:49 +0000731 OUT=linux-sparcv8
Ulf Möllerb6735831999-05-18 23:44:38 +0000732fi
733
Ulf Möller5d3bb221999-04-22 19:23:56 +0000734case "$GUESSOS" in
735 i386-*) options="$options 386" ;;
736esac
737
Bodo Möller2413a392001-09-22 01:39:51 +0000738for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 rijndael ripemd rsa sha
Ulf Möller9231f471999-06-04 21:32:31 +0000739do
740 if [ ! -d crypto/$i ]
741 then
742 options="$options no-$i"
743 fi
744done
745
Richard Levittef9b3bff2000-11-30 22:53:34 +0000746# Discover Kerberos 5 (since it's still a prototype, we don't
747# do any guesses yet, that's why this section is commented away.
748#if [ -d /usr/kerberos ]; then
749# krb5_dir=/usr/kerberos
750# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
751# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
752# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
753# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
754# -a \( -f $krb5_dir/include/krb5.h \) ]; then
755# options="$options --with-krb5-flavor=MIT"
756# fi
757#elif [ -d /usr/heimdal ]; then
758# krb5_dir=/usr/heimdal
759# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
760# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
761# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
762# -a \( -f $krb5_dir/include/krb5.h \) ]; then
763# options="$options --with-krb5-flavor=Heimdal"
764# fi
765#fi
766
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000767if [ -z "$OUT" ]; then
768 OUT="$CC"
769fi
770
Ulf Möller99aab161999-04-01 12:34:33 +0000771if [ ".$PERL" = . ] ; then
772 for i in . `echo $PATH | sed 's/:/ /g'`; do
773 if [ -f "$i/perl5" ] ; then
774 PERL="$i/perl5"
775 break;
776 fi;
777 done
778fi
779
780if [ ".$PERL" = . ] ; then
781 for i in . `echo $PATH | sed 's/:/ /g'`; do
782 if [ -f "$i/perl" ] ; then
Ulf Möllera5a47e41999-04-09 16:25:25 +0000783 if "$i/perl" -e 'exit($]<5.0)'; then
784 PERL="$i/perl"
785 break;
786 fi;
Ulf Möller99aab161999-04-01 12:34:33 +0000787 fi;
788 done
789fi
790
Ulf Möllera5a47e41999-04-09 16:25:25 +0000791if [ ".$PERL" = . ] ; then
Ulf Möller99aab161999-04-01 12:34:33 +0000792 echo "You need Perl 5."
793 exit 1
794fi
795
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000796# run Configure to check to see if we need to specify the
797# compiler for the platform ... in which case we add it on
798# the end ... otherwise we leave it off
Ulf Möller99aab161999-04-01 12:34:33 +0000799
Ulf Möller10a926c2000-02-21 00:55:45 +0000800$PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000801if [ $? = "0" ]; then
802 OUT="$OUT-$CC"
803fi
804
805OUT="$PREFIX$OUT"
806
Ulf Möller10a926c2000-02-21 00:55:45 +0000807$PERL ./Configure LIST | grep "$OUT" > /dev/null
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000808if [ $? = "0" ]; then
Ulf Möller9e2c0f42000-10-11 00:08:15 +0000809 echo Configuring for $OUT
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000810
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000811 if [ "$TEST" = "true" ]; then
812 echo $PERL ./Configure $OUT $options
813 else
814 $PERL ./Configure $OUT $options
815 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000816else
Ulf Möller744029c1999-05-04 23:18:24 +0000817 echo "This system ($OUT) is not supported. See file INSTALL for details."
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000818fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000819)