blob: 502ca6720fe9e78ded54016fb19c95612ad809b3 [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].*)
338 echo "${MACHINE}-whatever-cygwin32_pre1.3"; exit 0
339 *)
340 echo "${MACHINE}-whatever-cygwin32"; exit 0
Ulf Möllerd78e5292001-12-19 19:37:31 +0000341 ;;
342
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000343esac
344
345#
346# Ugg. These are all we can determine by what we know about
347# the output of uname. Be more creative:
348#
349
350# Do the Apollo stuff first. Here, we just simply assume
351# that the existance of the /usr/apollo directory is proof
352# enough
353if [ -d /usr/apollo ]; then
354 echo "whatever-apollo-whatever"
355 exit 0
356fi
357
358# Now NeXT
359ISNEXT=`hostinfo 2>/dev/null`
360case "$ISNEXT" in
Bodo Möller8e9eae01999-06-11 10:54:42 +0000361 *'NeXT Mach 3.3'*)
Bodo Möller74a6c7f1999-06-10 18:05:58 +0000362 echo "whatever-next-nextstep3.3"; exit 0
363 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000364 *NeXT*)
365 echo "whatever-next-nextstep"; exit 0
366 ;;
367esac
368
369# At this point we gone through all the one's
370# we know of: Punt
371
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000372echo "${MACHINE}-whatever-${SYSTEM}"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000373exit 0
374) 2>/dev/null | (
375
376# ---------------------------------------------------------------------------
377# this is where the translation occurs into SSLeay terms
378# ---------------------------------------------------------------------------
379
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000380# figure out if gcc is available and if so we use it otherwise
381# we fallback to whatever cc does on the system
Andy Polyakova0618e31999-07-25 15:13:49 +0000382GCCVER=`(gcc --version) 2>/dev/null`
383if [ "$GCCVER" != "" ]; then
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000384 CC=gcc
Andy Polyakova0618e31999-07-25 15:13:49 +0000385 # then strip off whatever prefix Cygnus prepends the number with...
386 GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'`
Andy Polyakov1656ef21999-07-25 22:25:12 +0000387 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
Andy Polyakovda8fa721999-07-25 20:40:58 +0000388 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000389else
390 CC=cc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000391fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000392GCCVER=${GCCVER:-0}
Andy Polyakov1656ef21999-07-25 22:25:12 +0000393
394if [ "$SYSTEM" = "SunOS" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000395 if [ $GCCVER -ge 30 ]; then
396 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
397 # to be working, at the very least 'make test' passes...
398 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
399 GCC_ARCH="-m64"
400 else
401 GCC_ARCH="-m32"
402 fi
403 fi
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000404 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
Andy Polyakov1656ef21999-07-25 22:25:12 +0000405 CCVER=`(cc -V 2>&1) 2>/dev/null | \
406 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
407 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
408 CCVER=${CCVER:-0}
409 if [ $CCVER -gt 40 ]; then
410 CC=cc # overrides gcc!!!
411 if [ $CCVER -eq 50 ]; then
412 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
413 echo " patch #107357-01 or later applied."
414 sleep 5
415 fi
416 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
417 CC=sc3
Ulf Möller744029c1999-05-04 23:18:24 +0000418 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000419fi
420
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000421if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
422 # check for Compaq C, expected output is "blah-blah C Vx.x"
423 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
424 egrep -e '.* C V[0-9]\.[0-9]' | \
425 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
426 CCCVER=${CCCVER:-0}
427 if [ $CCCVER -gt 60 ]; then
428 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
429 # only on hash routines and des, otherwise gcc (2.95)
430 # keeps along rather tight...
431 fi
432fi
433
Andy Polyakovda8fa721999-07-25 20:40:58 +0000434CCVER=${CCVER:-0}
435
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000436# read the output of the embedded GuessOS
437read GUESSOS
438
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000439echo Operating system: $GUESSOS
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000440
441# now map the output into SSLeay terms ... really should hack into the
442# script above so we end up with values in vars but that would take
443# more time that I want to waste at the moment
444case "$GUESSOS" in
Andy Polyakovda8fa721999-07-25 20:40:58 +0000445 mips2-sgi-irix)
446 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
447 CPU=${CPU:-0}
448 if [ $CPU -ge 4000 ]; then
449 options="$options -mips2"
450 fi
451 OUT="irix-$CC"
452 ;;
453 mips3-sgi-irix)
454 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
455 CPU=${CPU:-0}
456 if [ $CPU -ge 5000 ]; then
457 options="$options -mips4"
458 else
459 options="$options -mips3"
460 fi
461 OUT="irix-mips3-$CC"
462 ;;
463 mips4-sgi-irix64)
464 echo "WARNING! If you wish to build 64-bit library, then you have to"
Ulf Möller720235e2001-02-14 00:14:09 +0000465 echo " invoke './Configure irix64-mips4-$CC' *manually*."
Ulf Möller06a2b072001-02-27 21:10:21 +0000466 if [ "$TEST" = "false" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000467 echo " You have about 5 seconds to press Ctrl-C to abort."
468 (stty -icanon min 0 time 50; read waste) < /dev/tty
Ulf Möller06a2b072001-02-27 21:10:21 +0000469 fi
Ulf Möller720235e2001-02-14 00:14:09 +0000470 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
471 CPU=${CPU:-0}
472 if [ $CPU -ge 5000 ]; then
473 options="$options -mips4"
474 else
475 options="$options -mips3"
476 fi
Andy Polyakovda8fa721999-07-25 20:40:58 +0000477 OUT="irix-mips3-$CC"
478 ;;
Bodo Möller93cd57a2001-02-09 09:40:18 +0000479 alpha-*-linux2)
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000480 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
481 case ${ISA:-generic} in
482 *[67]) OUT="linux-alpha+bwx-$CC" ;;
483 *) OUT="linux-alpha-$CC" ;;
484 esac
485 if [ "$CC" = "gcc" ]; then
486 case ${ISA:-generic} in
487 EV5|EV45) options="$options -mcpu=ev5";;
488 EV56|PCA56) options="$options -mcpu=ev56";;
489 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
490 esac
491 fi
492 ;;
Richard Levitte815c83f2000-10-31 23:14:19 +0000493 mips-*-linux?)
494 cat >dummy.c <<EOF
495#include <stdio.h> /* for printf() prototype */
496 int main (argc, argv) int argc; char *argv[]; {
497#ifdef __MIPSEB__
498 printf ("linux-%s\n", argv[1]);
499#endif
500#ifdef __MIPSEL__
501 printf ("linux-%sel\n", argv[1]);
502#endif
503 return 0;
504}
505EOF
506 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
507 rm dummy dummy.c
508 ;;
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000509 ppc-*-linux2) OUT="linux-ppc" ;;
Richard Levitte2933ed42000-05-24 22:00:59 +0000510 m68k-*-linux*) OUT="linux-m68k" ;;
Ralf S. Engelschall010712f2000-02-29 15:29:02 +0000511 ia64-*-linux?) OUT="linux-ia64" ;;
Andy Polyakov0fad6cb2000-02-06 11:15:20 +0000512 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
Richard Levitte70d70a32001-03-07 10:04:00 +0000513 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
514 i386-apple-darwin*) OUT="darwin-i386-cc" ;;
Andy Polyakova0618e31999-07-25 15:13:49 +0000515 sparc64-*-linux2)
Andy Polyakov1656ef21999-07-25 22:25:12 +0000516 #Before we can uncomment following lines we have to wait at least
517 #till 64-bit glibc for SPARC is operational:-(
518 #echo "WARNING! If you wish to build 64-bit library, then you have to"
Andy Polyakova0618e31999-07-25 15:13:49 +0000519 #echo " invoke './Configure linux64-sparcv9' *manually*."
Bodo Möller69e42952001-01-12 10:34:58 +0000520 #echo " Type return if you want to continue, Ctrl-C to abort."
Andy Polyakova0618e31999-07-25 15:13:49 +0000521 #read waste < /dev/tty
522 OUT="linux-sparcv9" ;;
Andy Polyakovda8fa721999-07-25 20:40:58 +0000523 sparc-*-linux2)
Richard Levitted5695a22000-11-16 18:59:02 +0000524 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
Andy Polyakova0618e31999-07-25 15:13:49 +0000525 case ${KARCH:-sun4} in
526 sun4u*) OUT="linux-sparcv9" ;;
527 sun4m) OUT="linux-sparcv8" ;;
528 sun4d) OUT="linux-sparcv8" ;;
529 *) OUT="linux-sparcv7" ;;
530 esac ;;
Richard Levitte95f8c712002-01-02 10:00:22 +0000531 parisc-*-linux2)
532 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
533 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo`
534
535 # ??TODO ?? Model transformations
536 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
537 # assuming no further arch. identification will ever be used by GCC.
538 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
539 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
540 # for these chips in the future.
541 # PA7300LC -> 7100LC (1.1)
542 # PA8200 -> 8000 (2.0)
543 # PA8500 -> 8000 (2.0)
544 # PA8600 -> 8000 (2.0)
545
546 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
547 # Finish Model transformations
548
549 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
550 OUT="linux-parisc" ;;
Richard Levitteb1086112000-05-31 17:06:10 +0000551 arm*-*-linux2) OUT="linux-elf-arm" ;;
Bodo Möller49ce63c2001-02-09 08:34:29 +0000552 s390-*-linux2) OUT="linux-s390" ;;
Richard Levittef14845d2002-01-25 22:06:59 +0000553 s390x-*-linux?) OUT="linux-s390x" ;;
Ulf Möller9d07fd02001-09-05 02:18:40 +0000554 *-*-linux2) OUT="linux-elf"
555 if [ "$GCCVER" -gt 28 ]; then
556 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
557 OUT="linux-pentium"
558 fi
559 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
560 OUT="linux-ppro"
561 fi
562 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
563 OUT="linux-k6"
564 fi
565 fi ;;
Ben Lauriedabba111999-01-17 14:20:20 +0000566 *-*-linux1) OUT="linux-aout" ;;
Bodo Möller72289202000-09-06 17:09:58 +0000567 sun4u*-*-solaris2)
Andy Polyakovac7b4262001-07-25 15:58:57 +0000568 OUT="solaris-sparcv9-$CC"
Andy Polyakov1656ef21999-07-25 22:25:12 +0000569 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
Andy Polyakovac7b4262001-07-25 15:58:57 +0000570 if [ "$ISA64" != "" ]; then
571 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
Andy Polyakov1656ef21999-07-25 22:25:12 +0000572 echo "WARNING! If you wish to build 64-bit library, then you have to"
573 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
Ulf Möller06a2b072001-02-27 21:10:21 +0000574 if [ "$TEST" = "false" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000575 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000576 (stty -icanon min 0 time 50; read waste) < /dev/tty
Ulf Möller06a2b072001-02-27 21:10:21 +0000577 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000578 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
579 # $GCC_ARCH denotes default ABI chosen by compiler driver
580 # (first one found on the $PATH). I assume that user
581 # expects certain consistency with the rest of his builds
582 # and therefore switch over to 64-bit. <appro>
583 OUT="solaris64-sparcv9-gcc"
584 echo "WARNING! If you wish to build 32-bit library, then you have to"
585 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
586 if [ "$TEST" = "false" ]; then
587 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000588 (stty -icanon min 0 time 50; read waste) < /dev/tty
Andy Polyakovac7b4262001-07-25 15:58:57 +0000589 fi
590 elif [ "$GCC_ARCH" = "-m32" ]; then
591 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
592 echo " and wish to build 64-bit library, then you have to"
593 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
594 if [ "$TEST" = "false" ]; then
595 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000596 (stty -icanon min 0 time 50; read waste) < /dev/tty
Andy Polyakovac7b4262001-07-25 15:58:57 +0000597 fi
598 fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000599 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000600 ;;
Bodo Möller72289202000-09-06 17:09:58 +0000601 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
602 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
603 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
604 *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000605 *-*-sunos4) OUT="sunos-$CC" ;;
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000606 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
607 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
608 *-freebsd[1-2]*) OUT="FreeBSD" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000609 *86*-*-netbsd) OUT="NetBSD-x86" ;;
610 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
611 *-*-netbsd) OUT="NetBSD-sparc" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000612 *86*-*-openbsd) OUT="OpenBSD-x86" ;;
613 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
614 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
615 *-*-openbsd) OUT="OpenBSD" ;;
Bodo Möller0cceb1c1999-05-30 23:54:52 +0000616 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
Richard Levitte6bc847e2001-08-10 15:26:21 +0000617 *-*-osf) OUT="alphaold-cc" ;;
618 *-*-tru64) OUT="alpha-cc" ;;
Lutz Jänickecb42ce02001-09-07 12:13:10 +0000619 *-*-OpenUNIX*)
620 if [ "$CC" = "gcc" ]; then
621 OUT="OpenUNIX-8-gcc"
622 else
623 OUT="OpenUNIX-8"
624 fi
625 ;;
Richard Levitte9a5a7402000-02-26 03:51:55 +0000626 *-*-unixware7) OUT="unixware-7" ;;
627 *-*-UnixWare7) OUT="unixware-7" ;;
628 *-*-Unixware7) OUT="unixware-7" ;;
Richard Levitte8bf49ea2001-03-18 14:25:01 +0000629 *-*-unixware20*) OUT="unixware-2.0" ;;
630 *-*-unixware21*) OUT="unixware-2.1" ;;
631 *-*-UnixWare20*) OUT="unixware-2.0" ;;
632 *-*-UnixWare21*) OUT="unixware-2.1" ;;
633 *-*-Unixware20*) OUT="unixware-2.0" ;;
634 *-*-Unixware21*) OUT="unixware-2.1" ;;
Ulf Möller9231f471999-06-04 21:32:31 +0000635 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
Ulf Möller1fac96e1999-05-20 17:28:19 +0000636 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
637 *-siemens-sysv4) OUT="SINIX" ;;
Andy Polyakov6d03b732001-07-30 16:42:15 +0000638 *-hpux1*)
639 OUT="hpux-parisc-$CC"
640 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
641 KERNEL_BITS=${KERNEL_BITS:-32}
642 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
643 CPU_VERSION=${CPU_VERSION:-0}
644 # See <sys/unistd.h> for further info on CPU_VERSION.
645 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
646 echo "NOTICE! 64-bit is the only ABI currently operational on HP-UXi."
647 echo " Post request to openssl-dev@openssl.org for 32-bit support."
648 if [ "$TEST" = "false" ]; then
649 (stty -icanon min 0 time 50; read waste) < /dev/tty
650 fi
651 OUT="hpux64-ia64-cc"
652 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
653 if [ "$CC" = "cc" ]; then
654 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
655 fi
656 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
657 echo "WARNING! If you wish to build 64-bit library then you have to"
658 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
659 if [ "$TEST" = "false" ]; then
660 echo " You have about 5 seconds to press Ctrl-C to abort."
661 (stty -icanon min 0 time 50; read waste) < /dev/tty
662 fi
663 fi
664 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
665 :
666 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
667 :
668 else # Motorola(?) CPU
669 OUT="hpux-$CC"
670 fi
671 options="$options -D_REENTRANT" ;;
Andy Polyakovbcba6cc2000-02-12 23:33:01 +0000672 *-hpux) OUT="hpux-parisc-$CC" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000673 # these are all covered by the catchall below
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000674 # *-aix) OUT="aix-$CC" ;;
675 # *-dgux) OUT="dgux" ;;
Richard Levitte72660f52000-09-14 12:48:48 +0000676 mips-sony-newsos4) OUT="newsos4-gcc" ;;
Richard Levitte1fe198b2002-02-13 14:44:33 +0000677 *-*-cygwin32_pre1.3) OUT="CygWin32-pre1.3" ;;
678 *-*-cygwin32) OUT="CygWin32" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000679 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
680esac
681
Richard Levitte5270e702000-10-26 21:07:28 +0000682# NB: This atalla support has been superceded by the ENGINE support
683# That contains its own header and definitions anyway. Support can
684# be enabled or disabled on any supported platform without external
685# headers, eg. by adding the "hw-atalla" switch to ./config or
686# perl Configure
687#
Ben Lauriebd03b992000-02-16 22:15:39 +0000688# See whether we can compile Atalla support
Richard Levitte5270e702000-10-26 21:07:28 +0000689#if [ -f /usr/include/atasi.h ]
690#then
691# options="$options -DATALLA"
692#fi
Ben Lauriebd03b992000-02-16 22:15:39 +0000693
Ulf Möllerb6735831999-05-18 23:44:38 +0000694# gcc < 2.8 does not support -mcpu=ultrasparc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000695if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
Ulf Möllerb6735831999-05-18 23:44:38 +0000696then
Andy Polyakova0618e31999-07-25 15:13:49 +0000697 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000698 sleep 5
699 OUT=solaris-sparcv9-gcc27
Andy Polyakova0618e31999-07-25 15:13:49 +0000700fi
701if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
702then
703 echo "WARNING! Falling down to 'linux-sparcv8'."
704 echo " Upgrade to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000705 sleep 5
Andy Polyakova0618e31999-07-25 15:13:49 +0000706 OUT=linux-sparcv8
Ulf Möllerb6735831999-05-18 23:44:38 +0000707fi
708
Ulf Möller5d3bb221999-04-22 19:23:56 +0000709case "$GUESSOS" in
710 i386-*) options="$options 386" ;;
711esac
712
Bodo Möller2413a392001-09-22 01:39:51 +0000713for 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 +0000714do
715 if [ ! -d crypto/$i ]
716 then
717 options="$options no-$i"
718 fi
719done
720
Richard Levittef9b3bff2000-11-30 22:53:34 +0000721# Discover Kerberos 5 (since it's still a prototype, we don't
722# do any guesses yet, that's why this section is commented away.
723#if [ -d /usr/kerberos ]; then
724# krb5_dir=/usr/kerberos
725# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
726# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
727# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
728# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
729# -a \( -f $krb5_dir/include/krb5.h \) ]; then
730# options="$options --with-krb5-flavor=MIT"
731# fi
732#elif [ -d /usr/heimdal ]; then
733# krb5_dir=/usr/heimdal
734# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
735# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
736# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
737# -a \( -f $krb5_dir/include/krb5.h \) ]; then
738# options="$options --with-krb5-flavor=Heimdal"
739# fi
740#fi
741
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000742if [ -z "$OUT" ]; then
743 OUT="$CC"
744fi
745
Ulf Möller99aab161999-04-01 12:34:33 +0000746if [ ".$PERL" = . ] ; then
747 for i in . `echo $PATH | sed 's/:/ /g'`; do
748 if [ -f "$i/perl5" ] ; then
749 PERL="$i/perl5"
750 break;
751 fi;
752 done
753fi
754
755if [ ".$PERL" = . ] ; then
756 for i in . `echo $PATH | sed 's/:/ /g'`; do
757 if [ -f "$i/perl" ] ; then
Ulf Möllera5a47e41999-04-09 16:25:25 +0000758 if "$i/perl" -e 'exit($]<5.0)'; then
759 PERL="$i/perl"
760 break;
761 fi;
Ulf Möller99aab161999-04-01 12:34:33 +0000762 fi;
763 done
764fi
765
Ulf Möllera5a47e41999-04-09 16:25:25 +0000766if [ ".$PERL" = . ] ; then
Ulf Möller99aab161999-04-01 12:34:33 +0000767 echo "You need Perl 5."
768 exit 1
769fi
770
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000771# run Configure to check to see if we need to specify the
772# compiler for the platform ... in which case we add it on
773# the end ... otherwise we leave it off
Ulf Möller99aab161999-04-01 12:34:33 +0000774
Ulf Möller10a926c2000-02-21 00:55:45 +0000775$PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000776if [ $? = "0" ]; then
777 OUT="$OUT-$CC"
778fi
779
780OUT="$PREFIX$OUT"
781
Ulf Möller10a926c2000-02-21 00:55:45 +0000782$PERL ./Configure LIST | grep "$OUT" > /dev/null
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000783if [ $? = "0" ]; then
Ulf Möller9e2c0f42000-10-11 00:08:15 +0000784 echo Configuring for $OUT
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000785
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000786 if [ "$TEST" = "true" ]; then
787 echo $PERL ./Configure $OUT $options
788 else
789 $PERL ./Configure $OUT $options
790 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000791else
Ulf Möller744029c1999-05-04 23:18:24 +0000792 echo "This system ($OUT) is not supported. See file INSTALL for details."
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000793fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000794)