blob: 72905c90ed1a0f258bb47d30ba9b050972171644 [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)
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000077 case "x${VERSION}" in
Andy Polyakov9abff962003-01-19 21:47:06 +000078 x2.0*) echo "whatever-whatever-unixware20"; exit 0 ;;
79 x2.1*) echo "whatever-whatever-unixware21"; exit 0 ;;
80 x2*) echo "whatever-whatever-unixware2"; exit 0 ;;
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000081 esac
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000082 ;;
83 4.2)
84 echo "whatever-whatever-unixware1"; exit 0
85 ;;
Richard Levitte8f6dc9c2000-02-27 17:17:43 +000086 5)
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000087 case "x${VERSION}" in
88 # We hardcode i586 in place of ${MACHINE} for the
89 # following reason. The catch is that even though Pentium
90 # is minimum requirement for platforms in question,
91 # ${MACHINE} gets always assigned to i386. Now, problem
92 # with i386 is that it makes ./config pass 386 to
93 # ./Configure, which in turn makes make generate
94 # inefficient SHA-1 (for this moment) code.
Andy Polyakov59b846c2003-01-19 11:39:19 +000095 x7*) echo "i586-sco-unixware7"; exit 0 ;;
96 x8*) echo "i586-unkn-OpenUNIX${VERSION}"; exit 0 ;;
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000097 esac
Richard Levitte9a5a7402000-02-26 03:51:55 +000098 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000099 esac
100 fi
101fi
102# Now we simply scan though... In most cases, the SYSTEM info is enough
103#
104case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
Richard Levittec5f8bbb2000-09-21 05:42:01 +0000105 MPE/iX:*)
106 MACHINE=`echo "$MACHINE" | sed -e 's/-/_/g'`
107 echo "parisc-hp-MPE/iX"; exit 0
108 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000109 A/UX:*)
110 echo "m68k-apple-aux3"; exit 0
111 ;;
112
Richard Levitte36810172001-03-15 20:23:22 +0000113 AIX:[3456789]:4:*)
114 echo "${MACHINE}-ibm-aix43"; exit 0
115 ;;
116
117 AIX:*:[56789]:*)
118 echo "${MACHINE}-ibm-aix43"; exit 0
119 ;;
120
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000121 AIX:*)
122 echo "${MACHINE}-ibm-aix"; exit 0
123 ;;
124
125 dgux:*)
126 echo "${MACHINE}-dg-dgux"; exit 0
127 ;;
128
129 HI-UX:*)
130 echo "${MACHINE}-hi-hiux"; exit 0
131 ;;
132
133 HP-UX:*)
134 HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
135 case "$HPUXVER" in
Andy Polyakov6d03b732001-07-30 16:42:15 +0000136 1[0-9].*) # HPUX 10 and 11 targets are unified
Ulf Möllerafd1f9e1999-05-04 11:52:26 +0000137 echo "${MACHINE}-hp-hpux10"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000138 ;;
139 *)
140 echo "${MACHINE}-hp-hpux"; exit 0
141 ;;
142 esac
143 ;;
144
Andy Polyakovda8fa721999-07-25 20:40:58 +0000145 IRIX:5.*)
146 echo "mips2-sgi-irix"; exit 0
147 ;;
148
Andy Polyakov1656ef21999-07-25 22:25:12 +0000149 IRIX:6.*)
Andy Polyakovda8fa721999-07-25 20:40:58 +0000150 echo "mips3-sgi-irix"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000151 ;;
152
153 IRIX64:*)
Andy Polyakovda8fa721999-07-25 20:40:58 +0000154 echo "mips4-sgi-irix64"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000155 ;;
156
157 Linux:[2-9].*)
158 echo "${MACHINE}-whatever-linux2"; exit 0
159 ;;
160
161 Linux:1.*)
162 echo "${MACHINE}-whatever-linux1"; exit 0
163 ;;
164
Richard Levitte10a29752001-01-11 12:58:37 +0000165 GNU*)
166 echo "hurd-x86"; exit 0;
167 ;;
168
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000169 LynxOS:*)
170 echo "${MACHINE}-lynx-lynxos"; exit 0
171 ;;
172
Bodo Möllera9ffce01999-06-11 11:45:22 +0000173 BSD/OS:4.*) # BSD/OS always says 386
174 echo "i486-whatever-bsdi4"; exit 0
Bodo Möller0cceb1c1999-05-30 23:54:52 +0000175 ;;
176
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000177 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
Ulf Möller9c789ad1999-06-16 20:26:46 +0000178 case `/sbin/sysctl -n hw.model` in
179 Pentium*)
Ulf Möller8050bc71999-06-16 23:49:39 +0000180 echo "i586-whatever-bsdi"; exit 0
Ulf Möller9c789ad1999-06-16 20:26:46 +0000181 ;;
182 *)
Ulf Möller8050bc71999-06-16 23:49:39 +0000183 echo "i386-whatever-bsdi"; exit 0
Ulf Möller9c789ad1999-06-16 20:26:46 +0000184 ;;
185 esac;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000186 ;;
187
188 BSD/386:*|BSD/OS:*)
189 echo "${MACHINE}-whatever-bsdi"; exit 0
190 ;;
191
Richard Levitteafd41c92003-01-12 04:43:44 +0000192 FreeBSD:*:*:*386*)
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000193 VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
194 MACH=`sysctl -n hw.model`
195 ARCH='whatever'
196 case ${MACH} in
197 *386* ) MACH="i386" ;;
198 *486* ) MACH="i486" ;;
199 Pentium\ II*) MACH="i686" ;;
200 Pentium* ) MACH="i586" ;;
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000201 * ) MACH="$MACHINE" ;;
202 esac
203 case ${MACH} in
204 i[0-9]86 ) ARCH="pc" ;;
205 esac
206 echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
207 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000208
Richard Levitteafd41c92003-01-12 04:43:44 +0000209 FreeBSD:*)
210 echo "${MACHINE}-whatever-freebsd"; exit 0
211 ;;
212
Ulf Möllerc6fdd7d1999-04-23 16:32:04 +0000213 NetBSD:*:*:*386*)
Richard Levitte48d89b52000-10-21 22:18:52 +0000214 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 +0000215 ;;
216
217 NetBSD:*)
218 echo "${MACHINE}-whatever-netbsd"; exit 0
219 ;;
220
221 OpenBSD:*)
222 echo "${MACHINE}-whatever-openbsd"; exit 0
223 ;;
224
Lutz Jänicke6c36f7a2001-09-06 12:39:00 +0000225 OpenUNIX:*)
226 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
227 ;;
228
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000229 OSF1:*:*:*alpha*)
Richard Levitte6bc847e2001-08-10 15:26:21 +0000230 OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'`
231 case "$OSFMAJOR" in
232 4|5)
233 echo "${MACHINE}-dec-tru64"; exit 0
234 ;;
235 1|2|3)
236 echo "${MACHINE}-dec-osf"; exit 0
237 ;;
238 *)
239 echo "${MACHINE}-dec-osf"; exit 0
240 ;;
241 esac
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000242 ;;
243
244 QNX:*)
Lutz Jänicke6a9af682001-11-30 09:38:57 +0000245 case "$RELEASE" in
Bodo Möller36124b12000-09-06 12:25:58 +0000246 4*)
247 echo "${MACHINE}-whatever-qnx4"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000248 ;;
Lutz Jänicke6a9af682001-11-30 09:38:57 +0000249 6*)
250 echo "${MACHINE}-whatever-qnx6"
251 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000252 *)
Bodo Möller36124b12000-09-06 12:25:58 +0000253 echo "${MACHINE}-whatever-qnx"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000254 ;;
255 esac
256 exit 0
257 ;;
258
259 Paragon*:*:*:*)
260 echo "i860-intel-osf1"; exit 0
261 ;;
262
Andy Polyakov0fad6cb2000-02-06 11:15:20 +0000263 Rhapsody:*)
264 echo "ppc-apple-rhapsody"; exit 0
265 ;;
266
Richard Levitte9b7a5522000-12-01 01:11:54 +0000267 Darwin:*)
Richard Levitte70d70a32001-03-07 10:04:00 +0000268 case "$MACHINE" in
269 Power*)
270 echo "ppc-apple-darwin${VERSION}"
271 ;;
272 *)
273 echo "i386-apple-darwin${VERSION}"
274 ;;
275 esac
276 exit 0
Richard Levitte9b7a5522000-12-01 01:11:54 +0000277 ;;
278
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000279 SunOS:5.*)
Bodo Möller72289202000-09-06 17:09:58 +0000280 echo "${MACHINE}-whatever-solaris2"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000281 ;;
282
283 SunOS:*)
284 echo "${MACHINE}-sun-sunos4"; exit 0
285 ;;
286
287 UNIX_System_V:4.*:*)
288 echo "${MACHINE}-whatever-sysv4"; exit 0
289 ;;
290
291 *:4*:R4*:m88k)
292 echo "${MACHINE}-whatever-sysv4"; exit 0
293 ;;
294
295 DYNIX/ptx:4*:*)
296 echo "${MACHINE}-whatever-sysv4"; exit 0
297 ;;
298
299 *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
300 echo "i486-ncr-sysv4"; exit 0
301 ;;
302
303 ULTRIX:*)
304 echo "${MACHINE}-unknown-ultrix"; exit 0
305 ;;
306
Ulf Möller1fac96e1999-05-20 17:28:19 +0000307 SINIX*|ReliantUNIX*)
308 echo "${MACHINE}-siemens-sysv4"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000309 ;;
310
Ulf Möller9231f471999-06-04 21:32:31 +0000311 POSIX-BC*)
312 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
313 ;;
314
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000315 machten:*)
316 echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
317 ;;
318
319 library:*)
320 echo "${MACHINE}-ncr-sysv4"; exit 0
321 ;;
322
323 ConvexOS:*:11.0:*)
324 echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
325 ;;
326
Richard Levitte72660f52000-09-14 12:48:48 +0000327 NEWS-OS:4.*)
328 echo "mips-sony-newsos4"; exit 0;
329 ;;
330
Ulf Möllerd78e5292001-12-19 19:37:31 +0000331 CYGWIN*)
Richard Levitte1fe198b2002-02-13 14:44:33 +0000332 case "$RELEASE" in
333 [bB]*|1.0|1.[12].*)
Richard Levitte49e04542002-02-14 12:28:24 +0000334 echo "${MACHINE}-whatever-cygwin_pre1.3"
Richard Levitteba47f5c2002-02-14 02:20:34 +0000335 ;;
Richard Levitte1fe198b2002-02-13 14:44:33 +0000336 *)
Richard Levitte49e04542002-02-14 12:28:24 +0000337 echo "${MACHINE}-whatever-cygwin"
Richard Levitteba47f5c2002-02-14 02:20:34 +0000338 ;;
339 esac
340 exit 0
Ulf Möllerd78e5292001-12-19 19:37:31 +0000341 ;;
342
Bodo Möllerc46acba2002-03-15 16:46:41 +0000343 *"CRAY T3E")
344 echo "t3e-cray-unicosmk"; exit 0;
345 ;;
346
347 *CRAY*)
348 echo "j90-cray-unicos"; exit 0;
349 ;;
Richard Levitteb9c23cc2002-11-14 16:30:11 +0000350
351 NONSTOP_KERNEL*)
352 echo "nsr-tandem-nsk"; 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
Lutz Jänicked51092f2002-06-16 10:31:17 +0000393GCCVER=`(gcc -dumpversion) 2>/dev/null`
Andy Polyakova0618e31999-07-25 15:13:49 +0000394if [ "$GCCVER" != "" ]; then
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000395 CC=gcc
Richard Levittef8fe7fa2002-08-09 07:32:24 +0000396 # then strip off whatever prefix egcs prepends the number with...
397 # Hopefully, this will work for any future prefixes as well.
398 GCCVER=`echo $GCCVER | sed 's/^[a-zA-Z]*\-//'`
Lutz Jänicked51092f2002-06-16 10:31:17 +0000399 # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion
400 # does give us what we want though, so we use that. We just just the
401 # major and minor version numbers.
Andy Polyakov1656ef21999-07-25 22:25:12 +0000402 # peak single digit before and after first dot, e.g. 2.95.1 gives 29
Andy Polyakovda8fa721999-07-25 20:40:58 +0000403 GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000404else
405 CC=cc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000406fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000407GCCVER=${GCCVER:-0}
Lutz Jänicke1d4547a2002-06-14 20:15:18 +0000408if [ "$SYSTEM" = "HP-UX" ];then
409 # By default gcc is a ILP32 compiler (with long long == 64).
410 GCC_BITS="32"
411 if [ $GCCVER -ge 30 ]; then
412 # PA64 support only came in with gcc 3.0.x.
413 # We look for the preprocessor symbol __LP64__ indicating
414 # 64bit bit long and pointer. sizeof(int) == 32 on HPUX64.
415 if gcc -v -E -x c /dev/null 2>&1 | grep __LP64__ > /dev/null; then
416 GCC_BITS="64"
417 fi
418 fi
419fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000420if [ "$SYSTEM" = "SunOS" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000421 if [ $GCCVER -ge 30 ]; then
422 # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
423 # to be working, at the very least 'make test' passes...
424 if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
425 GCC_ARCH="-m64"
426 else
427 GCC_ARCH="-m32"
428 fi
429 fi
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000430 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
Andy Polyakov1656ef21999-07-25 22:25:12 +0000431 CCVER=`(cc -V 2>&1) 2>/dev/null | \
432 egrep -e '^cc: .* C [0-9]\.[0-9]' | \
433 sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
434 CCVER=${CCVER:-0}
435 if [ $CCVER -gt 40 ]; then
436 CC=cc # overrides gcc!!!
437 if [ $CCVER -eq 50 ]; then
438 echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
439 echo " patch #107357-01 or later applied."
440 sleep 5
441 fi
442 elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then
443 CC=sc3
Ulf Möller744029c1999-05-04 23:18:24 +0000444 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000445fi
446
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000447if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then
448 # check for Compaq C, expected output is "blah-blah C Vx.x"
449 CCCVER=`(ccc -V 2>&1) 2>/dev/null | \
450 egrep -e '.* C V[0-9]\.[0-9]' | \
451 sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'`
452 CCCVER=${CCCVER:-0}
453 if [ $CCCVER -gt 60 ]; then
454 CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably
455 # only on hash routines and des, otherwise gcc (2.95)
456 # keeps along rather tight...
457 fi
458fi
459
Andy Polyakov726c2232003-01-18 15:13:03 +0000460if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc
461 (cc) 2>&1 | grep -iv "command not found" > /dev/null && CC=cc
462fi
463
Andy Polyakovda8fa721999-07-25 20:40:58 +0000464CCVER=${CCVER:-0}
465
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000466# read the output of the embedded GuessOS
467read GUESSOS
468
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000469echo Operating system: $GUESSOS
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000470
471# now map the output into SSLeay terms ... really should hack into the
472# script above so we end up with values in vars but that would take
473# more time that I want to waste at the moment
474case "$GUESSOS" in
Andy Polyakovda8fa721999-07-25 20:40:58 +0000475 mips2-sgi-irix)
476 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
477 CPU=${CPU:-0}
478 if [ $CPU -ge 4000 ]; then
479 options="$options -mips2"
480 fi
481 OUT="irix-$CC"
482 ;;
483 mips3-sgi-irix)
484 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
485 CPU=${CPU:-0}
486 if [ $CPU -ge 5000 ]; then
487 options="$options -mips4"
488 else
489 options="$options -mips3"
490 fi
491 OUT="irix-mips3-$CC"
492 ;;
493 mips4-sgi-irix64)
494 echo "WARNING! If you wish to build 64-bit library, then you have to"
Ulf Möller720235e2001-02-14 00:14:09 +0000495 echo " invoke './Configure irix64-mips4-$CC' *manually*."
Ulf Möller06a2b072001-02-27 21:10:21 +0000496 if [ "$TEST" = "false" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000497 echo " You have about 5 seconds to press Ctrl-C to abort."
498 (stty -icanon min 0 time 50; read waste) < /dev/tty
Ulf Möller06a2b072001-02-27 21:10:21 +0000499 fi
Ulf Möller720235e2001-02-14 00:14:09 +0000500 CPU=`(hinv -t cpu) 2>/dev/null | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
501 CPU=${CPU:-0}
502 if [ $CPU -ge 5000 ]; then
503 options="$options -mips4"
504 else
505 options="$options -mips3"
506 fi
Andy Polyakovda8fa721999-07-25 20:40:58 +0000507 OUT="irix-mips3-$CC"
508 ;;
Bodo Möller93cd57a2001-02-09 09:40:18 +0000509 alpha-*-linux2)
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000510 ISA=`awk '/cpu model/{print$4}' /proc/cpuinfo`
511 case ${ISA:-generic} in
512 *[67]) OUT="linux-alpha+bwx-$CC" ;;
513 *) OUT="linux-alpha-$CC" ;;
514 esac
515 if [ "$CC" = "gcc" ]; then
516 case ${ISA:-generic} in
517 EV5|EV45) options="$options -mcpu=ev5";;
518 EV56|PCA56) options="$options -mcpu=ev56";;
519 EV6|EV67|PCA57) options="$options -mcpu=ev6";;
520 esac
521 fi
522 ;;
Richard Levitte815c83f2000-10-31 23:14:19 +0000523 mips-*-linux?)
524 cat >dummy.c <<EOF
525#include <stdio.h> /* for printf() prototype */
526 int main (argc, argv) int argc; char *argv[]; {
527#ifdef __MIPSEB__
528 printf ("linux-%s\n", argv[1]);
529#endif
530#ifdef __MIPSEL__
531 printf ("linux-%sel\n", argv[1]);
532#endif
533 return 0;
534}
535EOF
536 ${CC} -o dummy dummy.c && OUT=`./dummy ${MACHINE}`
537 rm dummy dummy.c
538 ;;
Lutz Jänicke6fa865a2002-05-12 19:45:51 +0000539 ppc64-*-linux2)
540 #Use the standard target for PPC architecture until we create a
541 #special one for the 64bit architecture.
542 OUT="linux-ppc" ;;
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000543 ppc-*-linux2) OUT="linux-ppc" ;;
Richard Levitte2933ed42000-05-24 22:00:59 +0000544 m68k-*-linux*) OUT="linux-m68k" ;;
Ralf S. Engelschall010712f2000-02-29 15:29:02 +0000545 ia64-*-linux?) OUT="linux-ia64" ;;
Andy Polyakov0fad6cb2000-02-06 11:15:20 +0000546 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
Richard Levitte70d70a32001-03-07 10:04:00 +0000547 ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
548 i386-apple-darwin*) OUT="darwin-i386-cc" ;;
Andy Polyakova0618e31999-07-25 15:13:49 +0000549 sparc64-*-linux2)
Bodo Möllerc14b4d62003-01-13 12:52:33 +0000550 echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
Andy Polyakov6d4ac672002-12-05 13:17:52 +0000551 echo " and wish to build 64-bit library, then you have to"
552 echo " invoke './Configure linux64-sparcv9' *manually*."
553 if [ "$TEST" = "false" ]; then
554 echo " You have about 5 seconds to press Ctrl-C to abort."
555 (stty -icanon min 0 time 50; read waste) < /dev/tty
556 fi
Andy Polyakova0618e31999-07-25 15:13:49 +0000557 OUT="linux-sparcv9" ;;
Andy Polyakovda8fa721999-07-25 20:40:58 +0000558 sparc-*-linux2)
Richard Levitted5695a22000-11-16 18:59:02 +0000559 KARCH=`awk '/^type/{print$3}' /proc/cpuinfo`
Andy Polyakova0618e31999-07-25 15:13:49 +0000560 case ${KARCH:-sun4} in
561 sun4u*) OUT="linux-sparcv9" ;;
562 sun4m) OUT="linux-sparcv8" ;;
563 sun4d) OUT="linux-sparcv8" ;;
564 *) OUT="linux-sparcv7" ;;
565 esac ;;
Richard Levitte95f8c712002-01-02 10:00:22 +0000566 parisc-*-linux2)
567 CPUARCH=`awk '/cpu family/{print substr($5,1,3)}' /proc/cpuinfo`
568 CPUSCHEDULE=`awk '/^cpu.[ ]: PA/{print substr($3,3)}' /proc/cpuinfo`
569
570 # ??TODO ?? Model transformations
571 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
572 # assuming no further arch. identification will ever be used by GCC.
573 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
574 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
575 # for these chips in the future.
576 # PA7300LC -> 7100LC (1.1)
577 # PA8200 -> 8000 (2.0)
578 # PA8500 -> 8000 (2.0)
579 # PA8600 -> 8000 (2.0)
580
581 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8?00/8000/'`
582 # Finish Model transformations
583
584 options="$options -mschedule=$CPUSCHEDULE -march=$CPUARCH"
585 OUT="linux-parisc" ;;
Richard Levitteb1086112000-05-31 17:06:10 +0000586 arm*-*-linux2) OUT="linux-elf-arm" ;;
Bodo Möller49ce63c2001-02-09 08:34:29 +0000587 s390-*-linux2) OUT="linux-s390" ;;
Richard Levittef14845d2002-01-25 22:06:59 +0000588 s390x-*-linux?) OUT="linux-s390x" ;;
Richard Levittef7a3e732002-12-04 09:17:43 +0000589 x86_64-*-linux?) OUT="linux-x86_64" ;;
Ulf Möller9d07fd02001-09-05 02:18:40 +0000590 *-*-linux2) OUT="linux-elf"
591 if [ "$GCCVER" -gt 28 ]; then
592 if grep '^model.*Pentium' /proc/cpuinfo >/dev/null ; then
593 OUT="linux-pentium"
594 fi
595 if grep '^model.*Pentium Pro' /proc/cpuinfo >/dev/null ; then
596 OUT="linux-ppro"
597 fi
598 if grep '^model.*K6' /proc/cpuinfo >/dev/null ; then
599 OUT="linux-k6"
600 fi
601 fi ;;
Ben Lauriedabba111999-01-17 14:20:20 +0000602 *-*-linux1) OUT="linux-aout" ;;
Bodo Möller72289202000-09-06 17:09:58 +0000603 sun4u*-*-solaris2)
Richard Levittecc8aa082002-08-16 09:41:14 +0000604 OUT="solaris-sparcv9-$CC"
605 ISA64=`(isalist) 2>/dev/null | grep sparcv9`
Andy Polyakovac7b4262001-07-25 15:58:57 +0000606 if [ "$ISA64" != "" ]; then
607 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
Andy Polyakov1656ef21999-07-25 22:25:12 +0000608 echo "WARNING! If you wish to build 64-bit library, then you have to"
609 echo " invoke './Configure solaris64-sparcv9-cc' *manually*."
Ulf Möller06a2b072001-02-27 21:10:21 +0000610 if [ "$TEST" = "false" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000611 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000612 (stty -icanon min 0 time 50; read waste) < /dev/tty
Ulf Möller06a2b072001-02-27 21:10:21 +0000613 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000614 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
615 # $GCC_ARCH denotes default ABI chosen by compiler driver
616 # (first one found on the $PATH). I assume that user
617 # expects certain consistency with the rest of his builds
618 # and therefore switch over to 64-bit. <appro>
619 OUT="solaris64-sparcv9-gcc"
620 echo "WARNING! If you wish to build 32-bit library, then you have to"
621 echo " invoke './Configure solaris-sparcv9-gcc' *manually*."
622 if [ "$TEST" = "false" ]; then
623 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000624 (stty -icanon min 0 time 50; read waste) < /dev/tty
Andy Polyakovac7b4262001-07-25 15:58:57 +0000625 fi
626 elif [ "$GCC_ARCH" = "-m32" ]; then
627 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
628 echo " and wish to build 64-bit library, then you have to"
629 echo " invoke './Configure solaris64-sparcv9-gcc' *manually*."
630 if [ "$TEST" = "false" ]; then
631 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov62c27162001-07-30 14:33:58 +0000632 (stty -icanon min 0 time 50; read waste) < /dev/tty
Andy Polyakovac7b4262001-07-25 15:58:57 +0000633 fi
634 fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000635 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000636 ;;
Bodo Möller72289202000-09-06 17:09:58 +0000637 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
638 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
639 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
640 *86*-*-solaris2) OUT="solaris-x86-$CC" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000641 *-*-sunos4) OUT="sunos-$CC" ;;
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000642 alpha*-*-freebsd*) OUT="FreeBSD-alpha" ;;
Richard Levitteafd41c92003-01-12 04:43:44 +0000643 sparc64-*-freebsd*) OUT="FreeBSD-sparc64" ;;
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000644 *-freebsd[3-9]*) OUT="FreeBSD-elf" ;;
645 *-freebsd[1-2]*) OUT="FreeBSD" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000646 *86*-*-netbsd) OUT="NetBSD-x86" ;;
647 sun3*-*-netbsd) OUT="NetBSD-m68" ;;
648 *-*-netbsd) OUT="NetBSD-sparc" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000649 alpha*-*-openbsd) OUT="OpenBSD-alpha" ;;
Richard Levitteb44e4252002-03-05 09:43:18 +0000650 *86*-*-openbsd) OUT="OpenBSD-i386" ;;
651 m68k*-*-openbsd) OUT="OpenBSD-m68k" ;;
652 m88k*-*-openbsd) OUT="OpenBSD-m88k" ;;
653 mips*-*-openbsd) OUT="OpenBSD-mips" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000654 pmax*-*-openbsd) OUT="OpenBSD-mips" ;;
Richard Levitteb44e4252002-03-05 09:43:18 +0000655 powerpc*-*-openbsd) OUT="OpenBSD-powerpc" ;;
656 sparc64*-*-openbsd) OUT="OpenBSD-sparc64" ;;
657 sparc*-*-openbsd) OUT="OpenBSD-sparc" ;;
658 vax*-*-openbsd) OUT="OpenBSD-vax" ;;
659 hppa*-*-openbsd) OUT="OpenBSD-hppa" ;;
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +0000660 *-*-openbsd) OUT="OpenBSD" ;;
Bodo Möller0cceb1c1999-05-30 23:54:52 +0000661 *86*-*-bsdi4) OUT="bsdi-elf-gcc" ;;
Richard Levitte6bc847e2001-08-10 15:26:21 +0000662 *-*-osf) OUT="alphaold-cc" ;;
663 *-*-tru64) OUT="alpha-cc" ;;
Lutz Jänickecb42ce02001-09-07 12:13:10 +0000664 *-*-OpenUNIX*)
665 if [ "$CC" = "gcc" ]; then
666 OUT="OpenUNIX-8-gcc"
667 else
668 OUT="OpenUNIX-8"
669 fi
670 ;;
Richard Levitte9a5a7402000-02-26 03:51:55 +0000671 *-*-unixware7) OUT="unixware-7" ;;
672 *-*-UnixWare7) OUT="unixware-7" ;;
673 *-*-Unixware7) OUT="unixware-7" ;;
Richard Levitte8bf49ea2001-03-18 14:25:01 +0000674 *-*-unixware20*) OUT="unixware-2.0" ;;
675 *-*-unixware21*) OUT="unixware-2.1" ;;
676 *-*-UnixWare20*) OUT="unixware-2.0" ;;
677 *-*-UnixWare21*) OUT="unixware-2.1" ;;
678 *-*-Unixware20*) OUT="unixware-2.0" ;;
679 *-*-Unixware21*) OUT="unixware-2.1" ;;
Ulf Möller9231f471999-06-04 21:32:31 +0000680 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
Ulf Möller1fac96e1999-05-20 17:28:19 +0000681 RM*-siemens-sysv4) OUT="ReliantUNIX" ;;
682 *-siemens-sysv4) OUT="SINIX" ;;
Andy Polyakov6d03b732001-07-30 16:42:15 +0000683 *-hpux1*)
Lutz Jänicke1d4547a2002-06-14 20:15:18 +0000684 if [ $CC = "gcc" ];
685 then
686 if [ $GCC_BITS = "64" ]; then
687 OUT="hpux64-parisc-gcc"
688 else
689 OUT="hpux-parisc-gcc"
690 fi
691 else
692 OUT="hpux-parisc-$CC"
693 fi
Andy Polyakov6d03b732001-07-30 16:42:15 +0000694 KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
695 KERNEL_BITS=${KERNEL_BITS:-32}
696 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
697 CPU_VERSION=${CPU_VERSION:-0}
698 # See <sys/unistd.h> for further info on CPU_VERSION.
699 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
Andy Polyakov46a0d4f2003-01-03 15:10:46 +0000700 echo "WARNING! 64-bit ABI is the default configured ABI on HP-UXi."
701 echo " If you wish to build 32-bit library, the you have to"
Andy Polyakovf68843e2003-01-04 15:18:00 +0000702 echo " invoke './Configure hpux-ia64-cc' *manually*."
Andy Polyakov6d03b732001-07-30 16:42:15 +0000703 if [ "$TEST" = "false" ]; then
Andy Polyakov46a0d4f2003-01-03 15:10:46 +0000704 echo " You have about 5 seconds to press Ctrl-C to abort."
Andy Polyakov6d03b732001-07-30 16:42:15 +0000705 (stty -icanon min 0 time 50; read waste) < /dev/tty
706 fi
707 OUT="hpux64-ia64-cc"
708 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
709 if [ "$CC" = "cc" ]; then
710 OUT="hpux-parisc2-cc" # can't we have hpux-parisc2-gcc?
711 fi
712 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
713 echo "WARNING! If you wish to build 64-bit library then you have to"
714 echo " invoke './Configure hpux64-parisc2-cc' *manually*."
715 if [ "$TEST" = "false" ]; then
716 echo " You have about 5 seconds to press Ctrl-C to abort."
717 (stty -icanon min 0 time 50; read waste) < /dev/tty
718 fi
719 fi
720 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
721 :
722 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
723 :
724 else # Motorola(?) CPU
725 OUT="hpux-$CC"
726 fi
727 options="$options -D_REENTRANT" ;;
Andy Polyakovbcba6cc2000-02-12 23:33:01 +0000728 *-hpux) OUT="hpux-parisc-$CC" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000729 # these are all covered by the catchall below
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000730 # *-aix) OUT="aix-$CC" ;;
731 # *-dgux) OUT="dgux" ;;
Richard Levitte72660f52000-09-14 12:48:48 +0000732 mips-sony-newsos4) OUT="newsos4-gcc" ;;
Richard Levitte49e04542002-02-14 12:28:24 +0000733 *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
734 *-*-cygwin) OUT="Cygwin" ;;
Bodo Möllerc46acba2002-03-15 16:46:41 +0000735 t3e-cray-unicosmk) OUT="cray-t3e" ;;
736 j90-cray-unicos) OUT="cray-j90" ;;
Richard Levitteb9c23cc2002-11-14 16:30:11 +0000737 nsr-tandem-nsk) OUT="tandem-c89" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000738 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
739esac
740
Richard Levitte5270e702000-10-26 21:07:28 +0000741# NB: This atalla support has been superceded by the ENGINE support
742# That contains its own header and definitions anyway. Support can
743# be enabled or disabled on any supported platform without external
744# headers, eg. by adding the "hw-atalla" switch to ./config or
745# perl Configure
746#
Ben Lauriebd03b992000-02-16 22:15:39 +0000747# See whether we can compile Atalla support
Richard Levitte5270e702000-10-26 21:07:28 +0000748#if [ -f /usr/include/atasi.h ]
749#then
750# options="$options -DATALLA"
751#fi
Ben Lauriebd03b992000-02-16 22:15:39 +0000752
Ulf Möllerb6735831999-05-18 23:44:38 +0000753# gcc < 2.8 does not support -mcpu=ultrasparc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000754if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
Ulf Möllerb6735831999-05-18 23:44:38 +0000755then
Andy Polyakova0618e31999-07-25 15:13:49 +0000756 echo "WARNING! Do consider upgrading to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000757 sleep 5
758 OUT=solaris-sparcv9-gcc27
Andy Polyakova0618e31999-07-25 15:13:49 +0000759fi
760if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
761then
762 echo "WARNING! Falling down to 'linux-sparcv8'."
763 echo " Upgrade to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000764 sleep 5
Andy Polyakova0618e31999-07-25 15:13:49 +0000765 OUT=linux-sparcv8
Ulf Möllerb6735831999-05-18 23:44:38 +0000766fi
767
Ulf Möller5d3bb221999-04-22 19:23:56 +0000768case "$GUESSOS" in
769 i386-*) options="$options 386" ;;
770esac
771
Richard Levitte97101fa2002-11-14 08:23:32 +0000772for i in bf cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 aes ripemd rsa sha
Ulf Möller9231f471999-06-04 21:32:31 +0000773do
774 if [ ! -d crypto/$i ]
775 then
776 options="$options no-$i"
777 fi
778done
779
Richard Levittef9b3bff2000-11-30 22:53:34 +0000780# Discover Kerberos 5 (since it's still a prototype, we don't
781# do any guesses yet, that's why this section is commented away.
782#if [ -d /usr/kerberos ]; then
783# krb5_dir=/usr/kerberos
784# if [ \( -f $krb5_dir/lib/libgssapi_krb5.a -o -f $krb5_dir/lib/libgssapi_krb5.so* \)\
785# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
786# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
787# -a \( -f $krb5_dir/lib/libk5crypto.a -o -f $krb5_dir/lib/libk5crypto.so* \)\
788# -a \( -f $krb5_dir/include/krb5.h \) ]; then
789# options="$options --with-krb5-flavor=MIT"
790# fi
791#elif [ -d /usr/heimdal ]; then
792# krb5_dir=/usr/heimdal
793# if [ \( -f $krb5_dir/lib/libgssapi.a -o -f $krb5_dir/lib/libgssapi.so* \)\
794# -a \( -f $krb5_dir/lib/libkrb5.a -o -f $krb5_dir/lib/libkrb5.so* \)\
795# -a \( -f $krb5_dir/lib/libcom_err.a -o -f $krb5_dir/lib/libcom_err.so* \)\
796# -a \( -f $krb5_dir/include/krb5.h \) ]; then
797# options="$options --with-krb5-flavor=Heimdal"
798# fi
799#fi
800
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000801if [ -z "$OUT" ]; then
802 OUT="$CC"
803fi
804
Ulf Möller99aab161999-04-01 12:34:33 +0000805if [ ".$PERL" = . ] ; then
806 for i in . `echo $PATH | sed 's/:/ /g'`; do
807 if [ -f "$i/perl5" ] ; then
808 PERL="$i/perl5"
809 break;
810 fi;
811 done
812fi
813
814if [ ".$PERL" = . ] ; then
815 for i in . `echo $PATH | sed 's/:/ /g'`; do
816 if [ -f "$i/perl" ] ; then
Ulf Möllera5a47e41999-04-09 16:25:25 +0000817 if "$i/perl" -e 'exit($]<5.0)'; then
818 PERL="$i/perl"
819 break;
820 fi;
Ulf Möller99aab161999-04-01 12:34:33 +0000821 fi;
822 done
823fi
824
Ulf Möllera5a47e41999-04-09 16:25:25 +0000825if [ ".$PERL" = . ] ; then
Ulf Möller99aab161999-04-01 12:34:33 +0000826 echo "You need Perl 5."
827 exit 1
828fi
829
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000830# run Configure to check to see if we need to specify the
831# compiler for the platform ... in which case we add it on
832# the end ... otherwise we leave it off
Ulf Möller99aab161999-04-01 12:34:33 +0000833
Ulf Möller10a926c2000-02-21 00:55:45 +0000834$PERL ./Configure LIST | grep "$OUT-$CC" > /dev/null
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000835if [ $? = "0" ]; then
836 OUT="$OUT-$CC"
837fi
838
839OUT="$PREFIX$OUT"
840
Ulf Möller10a926c2000-02-21 00:55:45 +0000841$PERL ./Configure LIST | grep "$OUT" > /dev/null
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000842if [ $? = "0" ]; then
Ulf Möller9e2c0f42000-10-11 00:08:15 +0000843 echo Configuring for $OUT
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000844
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000845 if [ "$TEST" = "true" ]; then
846 echo $PERL ./Configure $OUT $options
847 else
848 $PERL ./Configure $OUT $options
849 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000850else
Ulf Möller744029c1999-05-04 23:18:24 +0000851 echo "This system ($OUT) is not supported. See file INSTALL for details."
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000852fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000853)