Merge lp:~bkerensa/ubuntu/quantal/wulfware/move-homepage-field into lp:ubuntu/quantal/wulfware

Proposed by Benjamin Kerensa on 2012-09-13
Status: Rejected
Rejected by: Martin Pitt on 2012-09-18
Proposed branch: lp:~bkerensa/ubuntu/quantal/wulfware/move-homepage-field
Merge into: lp:ubuntu/quantal/wulfware
Diff against target: 24374 lines (+20/-24229)
11 files modified
config.guess (+0/-1463)
config.sub (+0/-1579)
configure (+0/-12191)
debian/changelog (+7/-0)
debian/control (+13/-18)
libwulf/Makefile.in (+0/-425)
ltmain.sh (+0/-6911)
wulf2html/Makefile.in (+0/-379)
wulflogger/Makefile.in (+0/-419)
wulfstat/Makefile.in (+0/-419)
xmlsysd/Makefile.in (+0/-425)
To merge this branch: bzr merge lp:~bkerensa/ubuntu/quantal/wulfware/move-homepage-field
Reviewer Review Type Date Requested Status
Ubuntu branches 2012-09-13 Pending
Review via email: mp+124137@code.launchpad.net
To post a comment you must log in.
Daniel Holbach (dholbach) wrote :

Looks good. Maybe you could fix the debhelper-but-no-misc-depends problem as well?

Bryce Harrington (bryce) wrote :

[Please set back to Needs Review when dholbach's suggestion is resolved.]

Unmerged revisions

5. By Benjamin Kerensa on 2012-09-14

Added

4. By Benjamin Kerensa on 2012-09-13

Updated Changelog Release to Quantal

3. By Benjamin Kerensa on 2012-09-13

debian/control: add Homepage field

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== removed file 'config.guess'
2--- config.guess 2007-08-23 15:39:01 +0000
3+++ config.guess 1970-01-01 00:00:00 +0000
4@@ -1,1463 +0,0 @@
5-#! /bin/sh
6-# Attempt to guess a canonical system name.
7-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
8-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
9-
10-timestamp='2005-07-08'
11-
12-# This file is free software; you can redistribute it and/or modify it
13-# under the terms of the GNU General Public License as published by
14-# the Free Software Foundation; either version 2 of the License, or
15-# (at your option) any later version.
16-#
17-# This program is distributed in the hope that it will be useful, but
18-# WITHOUT ANY WARRANTY; without even the implied warranty of
19-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20-# General Public License for more details.
21-#
22-# You should have received a copy of the GNU General Public License
23-# along with this program; if not, write to the Free Software
24-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
25-# 02110-1301, USA.
26-#
27-# As a special exception to the GNU General Public License, if you
28-# distribute this file as part of a program that contains a
29-# configuration script generated by Autoconf, you may include it under
30-# the same distribution terms that you use for the rest of that program.
31-
32-
33-# Originally written by Per Bothner <per@bothner.com>.
34-# Please send patches to <config-patches@gnu.org>. Submit a context
35-# diff and a properly formatted ChangeLog entry.
36-#
37-# This script attempts to guess a canonical system name similar to
38-# config.sub. If it succeeds, it prints the system name on stdout, and
39-# exits with 0. Otherwise, it exits with 1.
40-#
41-# The plan is that this can be called by configure scripts if you
42-# don't specify an explicit build system type.
43-
44-me=`echo "$0" | sed -e 's,.*/,,'`
45-
46-usage="\
47-Usage: $0 [OPTION]
48-
49-Output the configuration name of the system \`$me' is run on.
50-
51-Operation modes:
52- -h, --help print this help, then exit
53- -t, --time-stamp print date of last modification, then exit
54- -v, --version print version number, then exit
55-
56-Report bugs and patches to <config-patches@gnu.org>."
57-
58-version="\
59-GNU config.guess ($timestamp)
60-
61-Originally written by Per Bothner.
62-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
63-Free Software Foundation, Inc.
64-
65-This is free software; see the source for copying conditions. There is NO
66-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
67-
68-help="
69-Try \`$me --help' for more information."
70-
71-# Parse command line
72-while test $# -gt 0 ; do
73- case $1 in
74- --time-stamp | --time* | -t )
75- echo "$timestamp" ; exit ;;
76- --version | -v )
77- echo "$version" ; exit ;;
78- --help | --h* | -h )
79- echo "$usage"; exit ;;
80- -- ) # Stop option processing
81- shift; break ;;
82- - ) # Use stdin as input.
83- break ;;
84- -* )
85- echo "$me: invalid option $1$help" >&2
86- exit 1 ;;
87- * )
88- break ;;
89- esac
90-done
91-
92-if test $# != 0; then
93- echo "$me: too many arguments$help" >&2
94- exit 1
95-fi
96-
97-trap 'exit 1' 1 2 15
98-
99-# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
100-# compiler to aid in system detection is discouraged as it requires
101-# temporary files to be created and, as you can see below, it is a
102-# headache to deal with in a portable fashion.
103-
104-# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
105-# use `HOST_CC' if defined, but it is deprecated.
106-
107-# Portable tmp directory creation inspired by the Autoconf team.
108-
109-set_cc_for_build='
110-trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
111-trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
112-: ${TMPDIR=/tmp} ;
113- { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
114- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
115- { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
116- { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
117-dummy=$tmp/dummy ;
118-tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
119-case $CC_FOR_BUILD,$HOST_CC,$CC in
120- ,,) echo "int x;" > $dummy.c ;
121- for c in cc gcc c89 c99 ; do
122- if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
123- CC_FOR_BUILD="$c"; break ;
124- fi ;
125- done ;
126- if test x"$CC_FOR_BUILD" = x ; then
127- CC_FOR_BUILD=no_compiler_found ;
128- fi
129- ;;
130- ,,*) CC_FOR_BUILD=$CC ;;
131- ,*,*) CC_FOR_BUILD=$HOST_CC ;;
132-esac ; set_cc_for_build= ;'
133-
134-# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
135-# (ghazi@noc.rutgers.edu 1994-08-24)
136-if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
137- PATH=$PATH:/.attbin ; export PATH
138-fi
139-
140-UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
141-UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
142-UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
143-UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
144-
145-# Note: order is significant - the case branches are not exclusive.
146-
147-case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
148- *:NetBSD:*:*)
149- # NetBSD (nbsd) targets should (where applicable) match one or
150- # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
151- # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
152- # switched to ELF, *-*-netbsd* would select the old
153- # object file format. This provides both forward
154- # compatibility and a consistent mechanism for selecting the
155- # object file format.
156- #
157- # Note: NetBSD doesn't particularly care about the vendor
158- # portion of the name. We always set it to "unknown".
159- sysctl="sysctl -n hw.machine_arch"
160- UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
161- /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
162- case "${UNAME_MACHINE_ARCH}" in
163- armeb) machine=armeb-unknown ;;
164- arm*) machine=arm-unknown ;;
165- sh3el) machine=shl-unknown ;;
166- sh3eb) machine=sh-unknown ;;
167- *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
168- esac
169- # The Operating System including object format, if it has switched
170- # to ELF recently, or will in the future.
171- case "${UNAME_MACHINE_ARCH}" in
172- arm*|i386|m68k|ns32k|sh3*|sparc|vax)
173- eval $set_cc_for_build
174- if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
175- | grep __ELF__ >/dev/null
176- then
177- # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
178- # Return netbsd for either. FIX?
179- os=netbsd
180- else
181- os=netbsdelf
182- fi
183- ;;
184- *)
185- os=netbsd
186- ;;
187- esac
188- # The OS release
189- # Debian GNU/NetBSD machines have a different userland, and
190- # thus, need a distinct triplet. However, they do not need
191- # kernel version information, so it can be replaced with a
192- # suitable tag, in the style of linux-gnu.
193- case "${UNAME_VERSION}" in
194- Debian*)
195- release='-gnu'
196- ;;
197- *)
198- release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
199- ;;
200- esac
201- # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
202- # contains redundant information, the shorter form:
203- # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
204- echo "${machine}-${os}${release}"
205- exit ;;
206- *:OpenBSD:*:*)
207- UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
208- echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
209- exit ;;
210- *:ekkoBSD:*:*)
211- echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
212- exit ;;
213- macppc:MirBSD:*:*)
214- echo powerppc-unknown-mirbsd${UNAME_RELEASE}
215- exit ;;
216- *:MirBSD:*:*)
217- echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
218- exit ;;
219- alpha:OSF1:*:*)
220- case $UNAME_RELEASE in
221- *4.0)
222- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
223- ;;
224- *5.*)
225- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
226- ;;
227- esac
228- # According to Compaq, /usr/sbin/psrinfo has been available on
229- # OSF/1 and Tru64 systems produced since 1995. I hope that
230- # covers most systems running today. This code pipes the CPU
231- # types through head -n 1, so we only detect the type of CPU 0.
232- ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
233- case "$ALPHA_CPU_TYPE" in
234- "EV4 (21064)")
235- UNAME_MACHINE="alpha" ;;
236- "EV4.5 (21064)")
237- UNAME_MACHINE="alpha" ;;
238- "LCA4 (21066/21068)")
239- UNAME_MACHINE="alpha" ;;
240- "EV5 (21164)")
241- UNAME_MACHINE="alphaev5" ;;
242- "EV5.6 (21164A)")
243- UNAME_MACHINE="alphaev56" ;;
244- "EV5.6 (21164PC)")
245- UNAME_MACHINE="alphapca56" ;;
246- "EV5.7 (21164PC)")
247- UNAME_MACHINE="alphapca57" ;;
248- "EV6 (21264)")
249- UNAME_MACHINE="alphaev6" ;;
250- "EV6.7 (21264A)")
251- UNAME_MACHINE="alphaev67" ;;
252- "EV6.8CB (21264C)")
253- UNAME_MACHINE="alphaev68" ;;
254- "EV6.8AL (21264B)")
255- UNAME_MACHINE="alphaev68" ;;
256- "EV6.8CX (21264D)")
257- UNAME_MACHINE="alphaev68" ;;
258- "EV6.9A (21264/EV69A)")
259- UNAME_MACHINE="alphaev69" ;;
260- "EV7 (21364)")
261- UNAME_MACHINE="alphaev7" ;;
262- "EV7.9 (21364A)")
263- UNAME_MACHINE="alphaev79" ;;
264- esac
265- # A Pn.n version is a patched version.
266- # A Vn.n version is a released version.
267- # A Tn.n version is a released field test version.
268- # A Xn.n version is an unreleased experimental baselevel.
269- # 1.2 uses "1.2" for uname -r.
270- echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
271- exit ;;
272- Alpha\ *:Windows_NT*:*)
273- # How do we know it's Interix rather than the generic POSIX subsystem?
274- # Should we change UNAME_MACHINE based on the output of uname instead
275- # of the specific Alpha model?
276- echo alpha-pc-interix
277- exit ;;
278- 21064:Windows_NT:50:3)
279- echo alpha-dec-winnt3.5
280- exit ;;
281- Amiga*:UNIX_System_V:4.0:*)
282- echo m68k-unknown-sysv4
283- exit ;;
284- *:[Aa]miga[Oo][Ss]:*:*)
285- echo ${UNAME_MACHINE}-unknown-amigaos
286- exit ;;
287- *:[Mm]orph[Oo][Ss]:*:*)
288- echo ${UNAME_MACHINE}-unknown-morphos
289- exit ;;
290- *:OS/390:*:*)
291- echo i370-ibm-openedition
292- exit ;;
293- *:z/VM:*:*)
294- echo s390-ibm-zvmoe
295- exit ;;
296- *:OS400:*:*)
297- echo powerpc-ibm-os400
298- exit ;;
299- arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
300- echo arm-acorn-riscix${UNAME_RELEASE}
301- exit ;;
302- arm:riscos:*:*|arm:RISCOS:*:*)
303- echo arm-unknown-riscos
304- exit ;;
305- SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
306- echo hppa1.1-hitachi-hiuxmpp
307- exit ;;
308- Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
309- # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
310- if test "`(/bin/universe) 2>/dev/null`" = att ; then
311- echo pyramid-pyramid-sysv3
312- else
313- echo pyramid-pyramid-bsd
314- fi
315- exit ;;
316- NILE*:*:*:dcosx)
317- echo pyramid-pyramid-svr4
318- exit ;;
319- DRS?6000:unix:4.0:6*)
320- echo sparc-icl-nx6
321- exit ;;
322- DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
323- case `/usr/bin/uname -p` in
324- sparc) echo sparc-icl-nx7; exit ;;
325- esac ;;
326- sun4H:SunOS:5.*:*)
327- echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
328- exit ;;
329- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
330- echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
331- exit ;;
332- i86pc:SunOS:5.*:*)
333- echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
334- exit ;;
335- sun4*:SunOS:6*:*)
336- # According to config.sub, this is the proper way to canonicalize
337- # SunOS6. Hard to guess exactly what SunOS6 will be like, but
338- # it's likely to be more like Solaris than SunOS4.
339- echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
340- exit ;;
341- sun4*:SunOS:*:*)
342- case "`/usr/bin/arch -k`" in
343- Series*|S4*)
344- UNAME_RELEASE=`uname -v`
345- ;;
346- esac
347- # Japanese Language versions have a version number like `4.1.3-JL'.
348- echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
349- exit ;;
350- sun3*:SunOS:*:*)
351- echo m68k-sun-sunos${UNAME_RELEASE}
352- exit ;;
353- sun*:*:4.2BSD:*)
354- UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
355- test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
356- case "`/bin/arch`" in
357- sun3)
358- echo m68k-sun-sunos${UNAME_RELEASE}
359- ;;
360- sun4)
361- echo sparc-sun-sunos${UNAME_RELEASE}
362- ;;
363- esac
364- exit ;;
365- aushp:SunOS:*:*)
366- echo sparc-auspex-sunos${UNAME_RELEASE}
367- exit ;;
368- # The situation for MiNT is a little confusing. The machine name
369- # can be virtually everything (everything which is not
370- # "atarist" or "atariste" at least should have a processor
371- # > m68000). The system name ranges from "MiNT" over "FreeMiNT"
372- # to the lowercase version "mint" (or "freemint"). Finally
373- # the system name "TOS" denotes a system which is actually not
374- # MiNT. But MiNT is downward compatible to TOS, so this should
375- # be no problem.
376- atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
377- echo m68k-atari-mint${UNAME_RELEASE}
378- exit ;;
379- atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
380- echo m68k-atari-mint${UNAME_RELEASE}
381- exit ;;
382- *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
383- echo m68k-atari-mint${UNAME_RELEASE}
384- exit ;;
385- milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
386- echo m68k-milan-mint${UNAME_RELEASE}
387- exit ;;
388- hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
389- echo m68k-hades-mint${UNAME_RELEASE}
390- exit ;;
391- *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
392- echo m68k-unknown-mint${UNAME_RELEASE}
393- exit ;;
394- m68k:machten:*:*)
395- echo m68k-apple-machten${UNAME_RELEASE}
396- exit ;;
397- powerpc:machten:*:*)
398- echo powerpc-apple-machten${UNAME_RELEASE}
399- exit ;;
400- RISC*:Mach:*:*)
401- echo mips-dec-mach_bsd4.3
402- exit ;;
403- RISC*:ULTRIX:*:*)
404- echo mips-dec-ultrix${UNAME_RELEASE}
405- exit ;;
406- VAX*:ULTRIX*:*:*)
407- echo vax-dec-ultrix${UNAME_RELEASE}
408- exit ;;
409- 2020:CLIX:*:* | 2430:CLIX:*:*)
410- echo clipper-intergraph-clix${UNAME_RELEASE}
411- exit ;;
412- mips:*:*:UMIPS | mips:*:*:RISCos)
413- eval $set_cc_for_build
414- sed 's/^ //' << EOF >$dummy.c
415-#ifdef __cplusplus
416-#include <stdio.h> /* for printf() prototype */
417- int main (int argc, char *argv[]) {
418-#else
419- int main (argc, argv) int argc; char *argv[]; {
420-#endif
421- #if defined (host_mips) && defined (MIPSEB)
422- #if defined (SYSTYPE_SYSV)
423- printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
424- #endif
425- #if defined (SYSTYPE_SVR4)
426- printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
427- #endif
428- #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
429- printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
430- #endif
431- #endif
432- exit (-1);
433- }
434-EOF
435- $CC_FOR_BUILD -o $dummy $dummy.c &&
436- dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
437- SYSTEM_NAME=`$dummy $dummyarg` &&
438- { echo "$SYSTEM_NAME"; exit; }
439- echo mips-mips-riscos${UNAME_RELEASE}
440- exit ;;
441- Motorola:PowerMAX_OS:*:*)
442- echo powerpc-motorola-powermax
443- exit ;;
444- Motorola:*:4.3:PL8-*)
445- echo powerpc-harris-powermax
446- exit ;;
447- Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
448- echo powerpc-harris-powermax
449- exit ;;
450- Night_Hawk:Power_UNIX:*:*)
451- echo powerpc-harris-powerunix
452- exit ;;
453- m88k:CX/UX:7*:*)
454- echo m88k-harris-cxux7
455- exit ;;
456- m88k:*:4*:R4*)
457- echo m88k-motorola-sysv4
458- exit ;;
459- m88k:*:3*:R3*)
460- echo m88k-motorola-sysv3
461- exit ;;
462- AViiON:dgux:*:*)
463- # DG/UX returns AViiON for all architectures
464- UNAME_PROCESSOR=`/usr/bin/uname -p`
465- if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
466- then
467- if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
468- [ ${TARGET_BINARY_INTERFACE}x = x ]
469- then
470- echo m88k-dg-dgux${UNAME_RELEASE}
471- else
472- echo m88k-dg-dguxbcs${UNAME_RELEASE}
473- fi
474- else
475- echo i586-dg-dgux${UNAME_RELEASE}
476- fi
477- exit ;;
478- M88*:DolphinOS:*:*) # DolphinOS (SVR3)
479- echo m88k-dolphin-sysv3
480- exit ;;
481- M88*:*:R3*:*)
482- # Delta 88k system running SVR3
483- echo m88k-motorola-sysv3
484- exit ;;
485- XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
486- echo m88k-tektronix-sysv3
487- exit ;;
488- Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
489- echo m68k-tektronix-bsd
490- exit ;;
491- *:IRIX*:*:*)
492- echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
493- exit ;;
494- ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
495- echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
496- exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
497- i*86:AIX:*:*)
498- echo i386-ibm-aix
499- exit ;;
500- ia64:AIX:*:*)
501- if [ -x /usr/bin/oslevel ] ; then
502- IBM_REV=`/usr/bin/oslevel`
503- else
504- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
505- fi
506- echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
507- exit ;;
508- *:AIX:2:3)
509- if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
510- eval $set_cc_for_build
511- sed 's/^ //' << EOF >$dummy.c
512- #include <sys/systemcfg.h>
513-
514- main()
515- {
516- if (!__power_pc())
517- exit(1);
518- puts("powerpc-ibm-aix3.2.5");
519- exit(0);
520- }
521-EOF
522- if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
523- then
524- echo "$SYSTEM_NAME"
525- else
526- echo rs6000-ibm-aix3.2.5
527- fi
528- elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
529- echo rs6000-ibm-aix3.2.4
530- else
531- echo rs6000-ibm-aix3.2
532- fi
533- exit ;;
534- *:AIX:*:[45])
535- IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
536- if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
537- IBM_ARCH=rs6000
538- else
539- IBM_ARCH=powerpc
540- fi
541- if [ -x /usr/bin/oslevel ] ; then
542- IBM_REV=`/usr/bin/oslevel`
543- else
544- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
545- fi
546- echo ${IBM_ARCH}-ibm-aix${IBM_REV}
547- exit ;;
548- *:AIX:*:*)
549- echo rs6000-ibm-aix
550- exit ;;
551- ibmrt:4.4BSD:*|romp-ibm:BSD:*)
552- echo romp-ibm-bsd4.4
553- exit ;;
554- ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
555- echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
556- exit ;; # report: romp-ibm BSD 4.3
557- *:BOSX:*:*)
558- echo rs6000-bull-bosx
559- exit ;;
560- DPX/2?00:B.O.S.:*:*)
561- echo m68k-bull-sysv3
562- exit ;;
563- 9000/[34]??:4.3bsd:1.*:*)
564- echo m68k-hp-bsd
565- exit ;;
566- hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
567- echo m68k-hp-bsd4.4
568- exit ;;
569- 9000/[34678]??:HP-UX:*:*)
570- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
571- case "${UNAME_MACHINE}" in
572- 9000/31? ) HP_ARCH=m68000 ;;
573- 9000/[34]?? ) HP_ARCH=m68k ;;
574- 9000/[678][0-9][0-9])
575- if [ -x /usr/bin/getconf ]; then
576- sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
577- sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
578- case "${sc_cpu_version}" in
579- 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
580- 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
581- 532) # CPU_PA_RISC2_0
582- case "${sc_kernel_bits}" in
583- 32) HP_ARCH="hppa2.0n" ;;
584- 64) HP_ARCH="hppa2.0w" ;;
585- '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20
586- esac ;;
587- esac
588- fi
589- if [ "${HP_ARCH}" = "" ]; then
590- eval $set_cc_for_build
591- sed 's/^ //' << EOF >$dummy.c
592-
593- #define _HPUX_SOURCE
594- #include <stdlib.h>
595- #include <unistd.h>
596-
597- int main ()
598- {
599- #if defined(_SC_KERNEL_BITS)
600- long bits = sysconf(_SC_KERNEL_BITS);
601- #endif
602- long cpu = sysconf (_SC_CPU_VERSION);
603-
604- switch (cpu)
605- {
606- case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
607- case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
608- case CPU_PA_RISC2_0:
609- #if defined(_SC_KERNEL_BITS)
610- switch (bits)
611- {
612- case 64: puts ("hppa2.0w"); break;
613- case 32: puts ("hppa2.0n"); break;
614- default: puts ("hppa2.0"); break;
615- } break;
616- #else /* !defined(_SC_KERNEL_BITS) */
617- puts ("hppa2.0"); break;
618- #endif
619- default: puts ("hppa1.0"); break;
620- }
621- exit (0);
622- }
623-EOF
624- (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
625- test -z "$HP_ARCH" && HP_ARCH=hppa
626- fi ;;
627- esac
628- if [ ${HP_ARCH} = "hppa2.0w" ]
629- then
630- eval $set_cc_for_build
631-
632- # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
633- # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
634- # generating 64-bit code. GNU and HP use different nomenclature:
635- #
636- # $ CC_FOR_BUILD=cc ./config.guess
637- # => hppa2.0w-hp-hpux11.23
638- # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
639- # => hppa64-hp-hpux11.23
640-
641- if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
642- grep __LP64__ >/dev/null
643- then
644- HP_ARCH="hppa2.0w"
645- else
646- HP_ARCH="hppa64"
647- fi
648- fi
649- echo ${HP_ARCH}-hp-hpux${HPUX_REV}
650- exit ;;
651- ia64:HP-UX:*:*)
652- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
653- echo ia64-hp-hpux${HPUX_REV}
654- exit ;;
655- 3050*:HI-UX:*:*)
656- eval $set_cc_for_build
657- sed 's/^ //' << EOF >$dummy.c
658- #include <unistd.h>
659- int
660- main ()
661- {
662- long cpu = sysconf (_SC_CPU_VERSION);
663- /* The order matters, because CPU_IS_HP_MC68K erroneously returns
664- true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
665- results, however. */
666- if (CPU_IS_PA_RISC (cpu))
667- {
668- switch (cpu)
669- {
670- case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
671- case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
672- case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
673- default: puts ("hppa-hitachi-hiuxwe2"); break;
674- }
675- }
676- else if (CPU_IS_HP_MC68K (cpu))
677- puts ("m68k-hitachi-hiuxwe2");
678- else puts ("unknown-hitachi-hiuxwe2");
679- exit (0);
680- }
681-EOF
682- $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
683- { echo "$SYSTEM_NAME"; exit; }
684- echo unknown-hitachi-hiuxwe2
685- exit ;;
686- 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
687- echo hppa1.1-hp-bsd
688- exit ;;
689- 9000/8??:4.3bsd:*:*)
690- echo hppa1.0-hp-bsd
691- exit ;;
692- *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
693- echo hppa1.0-hp-mpeix
694- exit ;;
695- hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
696- echo hppa1.1-hp-osf
697- exit ;;
698- hp8??:OSF1:*:*)
699- echo hppa1.0-hp-osf
700- exit ;;
701- i*86:OSF1:*:*)
702- if [ -x /usr/sbin/sysversion ] ; then
703- echo ${UNAME_MACHINE}-unknown-osf1mk
704- else
705- echo ${UNAME_MACHINE}-unknown-osf1
706- fi
707- exit ;;
708- parisc*:Lites*:*:*)
709- echo hppa1.1-hp-lites
710- exit ;;
711- C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
712- echo c1-convex-bsd
713- exit ;;
714- C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
715- if getsysinfo -f scalar_acc
716- then echo c32-convex-bsd
717- else echo c2-convex-bsd
718- fi
719- exit ;;
720- C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
721- echo c34-convex-bsd
722- exit ;;
723- C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
724- echo c38-convex-bsd
725- exit ;;
726- C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
727- echo c4-convex-bsd
728- exit ;;
729- CRAY*Y-MP:*:*:*)
730- echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
731- exit ;;
732- CRAY*[A-Z]90:*:*:*)
733- echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
734- | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
735- -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
736- -e 's/\.[^.]*$/.X/'
737- exit ;;
738- CRAY*TS:*:*:*)
739- echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
740- exit ;;
741- CRAY*T3E:*:*:*)
742- echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
743- exit ;;
744- CRAY*SV1:*:*:*)
745- echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
746- exit ;;
747- *:UNICOS/mp:*:*)
748- echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
749- exit ;;
750- F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
751- FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
752- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
753- FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
754- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
755- exit ;;
756- 5000:UNIX_System_V:4.*:*)
757- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
758- FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
759- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
760- exit ;;
761- i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
762- echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
763- exit ;;
764- sparc*:BSD/OS:*:*)
765- echo sparc-unknown-bsdi${UNAME_RELEASE}
766- exit ;;
767- *:BSD/OS:*:*)
768- echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
769- exit ;;
770- *:FreeBSD:*:*)
771- echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
772- exit ;;
773- i*:CYGWIN*:*)
774- echo ${UNAME_MACHINE}-pc-cygwin
775- exit ;;
776- i*:MINGW*:*)
777- echo ${UNAME_MACHINE}-pc-mingw32
778- exit ;;
779- i*:windows32*:*)
780- # uname -m includes "-pc" on this system.
781- echo ${UNAME_MACHINE}-mingw32
782- exit ;;
783- i*:PW*:*)
784- echo ${UNAME_MACHINE}-pc-pw32
785- exit ;;
786- x86:Interix*:[34]*)
787- echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
788- exit ;;
789- [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
790- echo i${UNAME_MACHINE}-pc-mks
791- exit ;;
792- i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
793- # How do we know it's Interix rather than the generic POSIX subsystem?
794- # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
795- # UNAME_MACHINE based on the output of uname instead of i386?
796- echo i586-pc-interix
797- exit ;;
798- i*:UWIN*:*)
799- echo ${UNAME_MACHINE}-pc-uwin
800- exit ;;
801- amd64:CYGWIN*:*:*)
802- echo x86_64-unknown-cygwin
803- exit ;;
804- p*:CYGWIN*:*)
805- echo powerpcle-unknown-cygwin
806- exit ;;
807- prep*:SunOS:5.*:*)
808- echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
809- exit ;;
810- *:GNU:*:*)
811- # the GNU system
812- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
813- exit ;;
814- *:GNU/*:*:*)
815- # other systems with GNU libc and userland
816- echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
817- exit ;;
818- i*86:Minix:*:*)
819- echo ${UNAME_MACHINE}-pc-minix
820- exit ;;
821- arm*:Linux:*:*)
822- echo ${UNAME_MACHINE}-unknown-linux-gnu
823- exit ;;
824- cris:Linux:*:*)
825- echo cris-axis-linux-gnu
826- exit ;;
827- crisv32:Linux:*:*)
828- echo crisv32-axis-linux-gnu
829- exit ;;
830- frv:Linux:*:*)
831- echo frv-unknown-linux-gnu
832- exit ;;
833- ia64:Linux:*:*)
834- echo ${UNAME_MACHINE}-unknown-linux-gnu
835- exit ;;
836- m32r*:Linux:*:*)
837- echo ${UNAME_MACHINE}-unknown-linux-gnu
838- exit ;;
839- m68*:Linux:*:*)
840- echo ${UNAME_MACHINE}-unknown-linux-gnu
841- exit ;;
842- mips:Linux:*:*)
843- eval $set_cc_for_build
844- sed 's/^ //' << EOF >$dummy.c
845- #undef CPU
846- #undef mips
847- #undef mipsel
848- #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
849- CPU=mipsel
850- #else
851- #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
852- CPU=mips
853- #else
854- CPU=
855- #endif
856- #endif
857-EOF
858- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
859- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
860- ;;
861- mips64:Linux:*:*)
862- eval $set_cc_for_build
863- sed 's/^ //' << EOF >$dummy.c
864- #undef CPU
865- #undef mips64
866- #undef mips64el
867- #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
868- CPU=mips64el
869- #else
870- #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
871- CPU=mips64
872- #else
873- CPU=
874- #endif
875- #endif
876-EOF
877- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
878- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
879- ;;
880- ppc:Linux:*:*)
881- echo powerpc-unknown-linux-gnu
882- exit ;;
883- ppc64:Linux:*:*)
884- echo powerpc64-unknown-linux-gnu
885- exit ;;
886- alpha:Linux:*:*)
887- case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
888- EV5) UNAME_MACHINE=alphaev5 ;;
889- EV56) UNAME_MACHINE=alphaev56 ;;
890- PCA56) UNAME_MACHINE=alphapca56 ;;
891- PCA57) UNAME_MACHINE=alphapca56 ;;
892- EV6) UNAME_MACHINE=alphaev6 ;;
893- EV67) UNAME_MACHINE=alphaev67 ;;
894- EV68*) UNAME_MACHINE=alphaev68 ;;
895- esac
896- objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
897- if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
898- echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
899- exit ;;
900- parisc:Linux:*:* | hppa:Linux:*:*)
901- # Look for CPU level
902- case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
903- PA7*) echo hppa1.1-unknown-linux-gnu ;;
904- PA8*) echo hppa2.0-unknown-linux-gnu ;;
905- *) echo hppa-unknown-linux-gnu ;;
906- esac
907- exit ;;
908- parisc64:Linux:*:* | hppa64:Linux:*:*)
909- echo hppa64-unknown-linux-gnu
910- exit ;;
911- s390:Linux:*:* | s390x:Linux:*:*)
912- echo ${UNAME_MACHINE}-ibm-linux
913- exit ;;
914- sh64*:Linux:*:*)
915- echo ${UNAME_MACHINE}-unknown-linux-gnu
916- exit ;;
917- sh*:Linux:*:*)
918- echo ${UNAME_MACHINE}-unknown-linux-gnu
919- exit ;;
920- sparc:Linux:*:* | sparc64:Linux:*:*)
921- echo ${UNAME_MACHINE}-unknown-linux-gnu
922- exit ;;
923- x86_64:Linux:*:*)
924- echo x86_64-unknown-linux-gnu
925- exit ;;
926- i*86:Linux:*:*)
927- # The BFD linker knows what the default object file format is, so
928- # first see if it will tell us. cd to the root directory to prevent
929- # problems with other programs or directories called `ld' in the path.
930- # Set LC_ALL=C to ensure ld outputs messages in English.
931- ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
932- | sed -ne '/supported targets:/!d
933- s/[ ][ ]*/ /g
934- s/.*supported targets: *//
935- s/ .*//
936- p'`
937- case "$ld_supported_targets" in
938- elf32-i386)
939- TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
940- ;;
941- a.out-i386-linux)
942- echo "${UNAME_MACHINE}-pc-linux-gnuaout"
943- exit ;;
944- coff-i386)
945- echo "${UNAME_MACHINE}-pc-linux-gnucoff"
946- exit ;;
947- "")
948- # Either a pre-BFD a.out linker (linux-gnuoldld) or
949- # one that does not give us useful --help.
950- echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
951- exit ;;
952- esac
953- # Determine whether the default compiler is a.out or elf
954- eval $set_cc_for_build
955- sed 's/^ //' << EOF >$dummy.c
956- #include <features.h>
957- #ifdef __ELF__
958- # ifdef __GLIBC__
959- # if __GLIBC__ >= 2
960- LIBC=gnu
961- # else
962- LIBC=gnulibc1
963- # endif
964- # else
965- LIBC=gnulibc1
966- # endif
967- #else
968- #ifdef __INTEL_COMPILER
969- LIBC=gnu
970- #else
971- LIBC=gnuaout
972- #endif
973- #endif
974- #ifdef __dietlibc__
975- LIBC=dietlibc
976- #endif
977-EOF
978- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
979- test x"${LIBC}" != x && {
980- echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
981- exit
982- }
983- test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
984- ;;
985- i*86:DYNIX/ptx:4*:*)
986- # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
987- # earlier versions are messed up and put the nodename in both
988- # sysname and nodename.
989- echo i386-sequent-sysv4
990- exit ;;
991- i*86:UNIX_SV:4.2MP:2.*)
992- # Unixware is an offshoot of SVR4, but it has its own version
993- # number series starting with 2...
994- # I am not positive that other SVR4 systems won't match this,
995- # I just have to hope. -- rms.
996- # Use sysv4.2uw... so that sysv4* matches it.
997- echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
998- exit ;;
999- i*86:OS/2:*:*)
1000- # If we were able to find `uname', then EMX Unix compatibility
1001- # is probably installed.
1002- echo ${UNAME_MACHINE}-pc-os2-emx
1003- exit ;;
1004- i*86:XTS-300:*:STOP)
1005- echo ${UNAME_MACHINE}-unknown-stop
1006- exit ;;
1007- i*86:atheos:*:*)
1008- echo ${UNAME_MACHINE}-unknown-atheos
1009- exit ;;
1010- i*86:syllable:*:*)
1011- echo ${UNAME_MACHINE}-pc-syllable
1012- exit ;;
1013- i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
1014- echo i386-unknown-lynxos${UNAME_RELEASE}
1015- exit ;;
1016- i*86:*DOS:*:*)
1017- echo ${UNAME_MACHINE}-pc-msdosdjgpp
1018- exit ;;
1019- i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
1020- UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
1021- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1022- echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
1023- else
1024- echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
1025- fi
1026- exit ;;
1027- i*86:*:5:[678]*)
1028- # UnixWare 7.x, OpenUNIX and OpenServer 6.
1029- case `/bin/uname -X | grep "^Machine"` in
1030- *486*) UNAME_MACHINE=i486 ;;
1031- *Pentium) UNAME_MACHINE=i586 ;;
1032- *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
1033- esac
1034- echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1035- exit ;;
1036- i*86:*:3.2:*)
1037- if test -f /usr/options/cb.name; then
1038- UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
1039- echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
1040- elif /bin/uname -X 2>/dev/null >/dev/null ; then
1041- UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
1042- (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
1043- (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
1044- && UNAME_MACHINE=i586
1045- (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
1046- && UNAME_MACHINE=i686
1047- (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
1048- && UNAME_MACHINE=i686
1049- echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
1050- else
1051- echo ${UNAME_MACHINE}-pc-sysv32
1052- fi
1053- exit ;;
1054- pc:*:*:*)
1055- # Left here for compatibility:
1056- # uname -m prints for DJGPP always 'pc', but it prints nothing about
1057- # the processor, so we play safe by assuming i386.
1058- echo i386-pc-msdosdjgpp
1059- exit ;;
1060- Intel:Mach:3*:*)
1061- echo i386-pc-mach3
1062- exit ;;
1063- paragon:*:*:*)
1064- echo i860-intel-osf1
1065- exit ;;
1066- i860:*:4.*:*) # i860-SVR4
1067- if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1068- echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1069- else # Add other i860-SVR4 vendors below as they are discovered.
1070- echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
1071- fi
1072- exit ;;
1073- mini*:CTIX:SYS*5:*)
1074- # "miniframe"
1075- echo m68010-convergent-sysv
1076- exit ;;
1077- mc68k:UNIX:SYSTEM5:3.51m)
1078- echo m68k-convergent-sysv
1079- exit ;;
1080- M680?0:D-NIX:5.3:*)
1081- echo m68k-diab-dnix
1082- exit ;;
1083- M68*:*:R3V[5678]*:*)
1084- test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
1085- 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
1086- OS_REL=''
1087- test -r /etc/.relid \
1088- && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
1089- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1090- && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1091- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1092- && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1093- 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
1094- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1095- && { echo i486-ncr-sysv4; exit; } ;;
1096- m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1097- echo m68k-unknown-lynxos${UNAME_RELEASE}
1098- exit ;;
1099- mc68030:UNIX_System_V:4.*:*)
1100- echo m68k-atari-sysv4
1101- exit ;;
1102- TSUNAMI:LynxOS:2.*:*)
1103- echo sparc-unknown-lynxos${UNAME_RELEASE}
1104- exit ;;
1105- rs6000:LynxOS:2.*:*)
1106- echo rs6000-unknown-lynxos${UNAME_RELEASE}
1107- exit ;;
1108- PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
1109- echo powerpc-unknown-lynxos${UNAME_RELEASE}
1110- exit ;;
1111- SM[BE]S:UNIX_SV:*:*)
1112- echo mips-dde-sysv${UNAME_RELEASE}
1113- exit ;;
1114- RM*:ReliantUNIX-*:*:*)
1115- echo mips-sni-sysv4
1116- exit ;;
1117- RM*:SINIX-*:*:*)
1118- echo mips-sni-sysv4
1119- exit ;;
1120- *:SINIX-*:*:*)
1121- if uname -p 2>/dev/null >/dev/null ; then
1122- UNAME_MACHINE=`(uname -p) 2>/dev/null`
1123- echo ${UNAME_MACHINE}-sni-sysv4
1124- else
1125- echo ns32k-sni-sysv
1126- fi
1127- exit ;;
1128- PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
1129- # says <Richard.M.Bartel@ccMail.Census.GOV>
1130- echo i586-unisys-sysv4
1131- exit ;;
1132- *:UNIX_System_V:4*:FTX*)
1133- # From Gerald Hewes <hewes@openmarket.com>.
1134- # How about differentiating between stratus architectures? -djm
1135- echo hppa1.1-stratus-sysv4
1136- exit ;;
1137- *:*:*:FTX*)
1138- # From seanf@swdc.stratus.com.
1139- echo i860-stratus-sysv4
1140- exit ;;
1141- i*86:VOS:*:*)
1142- # From Paul.Green@stratus.com.
1143- echo ${UNAME_MACHINE}-stratus-vos
1144- exit ;;
1145- *:VOS:*:*)
1146- # From Paul.Green@stratus.com.
1147- echo hppa1.1-stratus-vos
1148- exit ;;
1149- mc68*:A/UX:*:*)
1150- echo m68k-apple-aux${UNAME_RELEASE}
1151- exit ;;
1152- news*:NEWS-OS:6*:*)
1153- echo mips-sony-newsos6
1154- exit ;;
1155- R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
1156- if [ -d /usr/nec ]; then
1157- echo mips-nec-sysv${UNAME_RELEASE}
1158- else
1159- echo mips-unknown-sysv${UNAME_RELEASE}
1160- fi
1161- exit ;;
1162- BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
1163- echo powerpc-be-beos
1164- exit ;;
1165- BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
1166- echo powerpc-apple-beos
1167- exit ;;
1168- BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
1169- echo i586-pc-beos
1170- exit ;;
1171- SX-4:SUPER-UX:*:*)
1172- echo sx4-nec-superux${UNAME_RELEASE}
1173- exit ;;
1174- SX-5:SUPER-UX:*:*)
1175- echo sx5-nec-superux${UNAME_RELEASE}
1176- exit ;;
1177- SX-6:SUPER-UX:*:*)
1178- echo sx6-nec-superux${UNAME_RELEASE}
1179- exit ;;
1180- Power*:Rhapsody:*:*)
1181- echo powerpc-apple-rhapsody${UNAME_RELEASE}
1182- exit ;;
1183- *:Rhapsody:*:*)
1184- echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1185- exit ;;
1186- *:Darwin:*:*)
1187- UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1188- case $UNAME_PROCESSOR in
1189- *86) UNAME_PROCESSOR=i686 ;;
1190- unknown) UNAME_PROCESSOR=powerpc ;;
1191- esac
1192- echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1193- exit ;;
1194- *:procnto*:*:* | *:QNX:[0123456789]*:*)
1195- UNAME_PROCESSOR=`uname -p`
1196- if test "$UNAME_PROCESSOR" = "x86"; then
1197- UNAME_PROCESSOR=i386
1198- UNAME_MACHINE=pc
1199- fi
1200- echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1201- exit ;;
1202- *:QNX:*:4*)
1203- echo i386-pc-qnx
1204- exit ;;
1205- NSE-?:NONSTOP_KERNEL:*:*)
1206- echo nse-tandem-nsk${UNAME_RELEASE}
1207- exit ;;
1208- NSR-?:NONSTOP_KERNEL:*:*)
1209- echo nsr-tandem-nsk${UNAME_RELEASE}
1210- exit ;;
1211- *:NonStop-UX:*:*)
1212- echo mips-compaq-nonstopux
1213- exit ;;
1214- BS2000:POSIX*:*:*)
1215- echo bs2000-siemens-sysv
1216- exit ;;
1217- DS/*:UNIX_System_V:*:*)
1218- echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1219- exit ;;
1220- *:Plan9:*:*)
1221- # "uname -m" is not consistent, so use $cputype instead. 386
1222- # is converted to i386 for consistency with other x86
1223- # operating systems.
1224- if test "$cputype" = "386"; then
1225- UNAME_MACHINE=i386
1226- else
1227- UNAME_MACHINE="$cputype"
1228- fi
1229- echo ${UNAME_MACHINE}-unknown-plan9
1230- exit ;;
1231- *:TOPS-10:*:*)
1232- echo pdp10-unknown-tops10
1233- exit ;;
1234- *:TENEX:*:*)
1235- echo pdp10-unknown-tenex
1236- exit ;;
1237- KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
1238- echo pdp10-dec-tops20
1239- exit ;;
1240- XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
1241- echo pdp10-xkl-tops20
1242- exit ;;
1243- *:TOPS-20:*:*)
1244- echo pdp10-unknown-tops20
1245- exit ;;
1246- *:ITS:*:*)
1247- echo pdp10-unknown-its
1248- exit ;;
1249- SEI:*:*:SEIUX)
1250- echo mips-sei-seiux${UNAME_RELEASE}
1251- exit ;;
1252- *:DragonFly:*:*)
1253- echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1254- exit ;;
1255- *:*VMS:*:*)
1256- UNAME_MACHINE=`(uname -p) 2>/dev/null`
1257- case "${UNAME_MACHINE}" in
1258- A*) echo alpha-dec-vms ; exit ;;
1259- I*) echo ia64-dec-vms ; exit ;;
1260- V*) echo vax-dec-vms ; exit ;;
1261- esac ;;
1262- *:XENIX:*:SysV)
1263- echo i386-pc-xenix
1264- exit ;;
1265- i*86:skyos:*:*)
1266- echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
1267- exit ;;
1268-esac
1269-
1270-#echo '(No uname command or uname output not recognized.)' 1>&2
1271-#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
1272-
1273-eval $set_cc_for_build
1274-cat >$dummy.c <<EOF
1275-#ifdef _SEQUENT_
1276-# include <sys/types.h>
1277-# include <sys/utsname.h>
1278-#endif
1279-main ()
1280-{
1281-#if defined (sony)
1282-#if defined (MIPSEB)
1283- /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
1284- I don't know.... */
1285- printf ("mips-sony-bsd\n"); exit (0);
1286-#else
1287-#include <sys/param.h>
1288- printf ("m68k-sony-newsos%s\n",
1289-#ifdef NEWSOS4
1290- "4"
1291-#else
1292- ""
1293-#endif
1294- ); exit (0);
1295-#endif
1296-#endif
1297-
1298-#if defined (__arm) && defined (__acorn) && defined (__unix)
1299- printf ("arm-acorn-riscix\n"); exit (0);
1300-#endif
1301-
1302-#if defined (hp300) && !defined (hpux)
1303- printf ("m68k-hp-bsd\n"); exit (0);
1304-#endif
1305-
1306-#if defined (NeXT)
1307-#if !defined (__ARCHITECTURE__)
1308-#define __ARCHITECTURE__ "m68k"
1309-#endif
1310- int version;
1311- version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
1312- if (version < 4)
1313- printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
1314- else
1315- printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
1316- exit (0);
1317-#endif
1318-
1319-#if defined (MULTIMAX) || defined (n16)
1320-#if defined (UMAXV)
1321- printf ("ns32k-encore-sysv\n"); exit (0);
1322-#else
1323-#if defined (CMU)
1324- printf ("ns32k-encore-mach\n"); exit (0);
1325-#else
1326- printf ("ns32k-encore-bsd\n"); exit (0);
1327-#endif
1328-#endif
1329-#endif
1330-
1331-#if defined (__386BSD__)
1332- printf ("i386-pc-bsd\n"); exit (0);
1333-#endif
1334-
1335-#if defined (sequent)
1336-#if defined (i386)
1337- printf ("i386-sequent-dynix\n"); exit (0);
1338-#endif
1339-#if defined (ns32000)
1340- printf ("ns32k-sequent-dynix\n"); exit (0);
1341-#endif
1342-#endif
1343-
1344-#if defined (_SEQUENT_)
1345- struct utsname un;
1346-
1347- uname(&un);
1348-
1349- if (strncmp(un.version, "V2", 2) == 0) {
1350- printf ("i386-sequent-ptx2\n"); exit (0);
1351- }
1352- if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
1353- printf ("i386-sequent-ptx1\n"); exit (0);
1354- }
1355- printf ("i386-sequent-ptx\n"); exit (0);
1356-
1357-#endif
1358-
1359-#if defined (vax)
1360-# if !defined (ultrix)
1361-# include <sys/param.h>
1362-# if defined (BSD)
1363-# if BSD == 43
1364- printf ("vax-dec-bsd4.3\n"); exit (0);
1365-# else
1366-# if BSD == 199006
1367- printf ("vax-dec-bsd4.3reno\n"); exit (0);
1368-# else
1369- printf ("vax-dec-bsd\n"); exit (0);
1370-# endif
1371-# endif
1372-# else
1373- printf ("vax-dec-bsd\n"); exit (0);
1374-# endif
1375-# else
1376- printf ("vax-dec-ultrix\n"); exit (0);
1377-# endif
1378-#endif
1379-
1380-#if defined (alliant) && defined (i860)
1381- printf ("i860-alliant-bsd\n"); exit (0);
1382-#endif
1383-
1384- exit (1);
1385-}
1386-EOF
1387-
1388-$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
1389- { echo "$SYSTEM_NAME"; exit; }
1390-
1391-# Apollos put the system type in the environment.
1392-
1393-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
1394-
1395-# Convex versions that predate uname can use getsysinfo(1)
1396-
1397-if [ -x /usr/convex/getsysinfo ]
1398-then
1399- case `getsysinfo -f cpu_type` in
1400- c1*)
1401- echo c1-convex-bsd
1402- exit ;;
1403- c2*)
1404- if getsysinfo -f scalar_acc
1405- then echo c32-convex-bsd
1406- else echo c2-convex-bsd
1407- fi
1408- exit ;;
1409- c34*)
1410- echo c34-convex-bsd
1411- exit ;;
1412- c38*)
1413- echo c38-convex-bsd
1414- exit ;;
1415- c4*)
1416- echo c4-convex-bsd
1417- exit ;;
1418- esac
1419-fi
1420-
1421-cat >&2 <<EOF
1422-$0: unable to guess system type
1423-
1424-This script, last modified $timestamp, has failed to recognize
1425-the operating system you are using. It is advised that you
1426-download the most up to date version of the config scripts from
1427-
1428- http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess
1429-and
1430- http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub
1431-
1432-If the version you run ($0) is already up to date, please
1433-send the following data and any information you think might be
1434-pertinent to <config-patches@gnu.org> in order to provide the needed
1435-information to handle your system.
1436-
1437-config.guess timestamp = $timestamp
1438-
1439-uname -m = `(uname -m) 2>/dev/null || echo unknown`
1440-uname -r = `(uname -r) 2>/dev/null || echo unknown`
1441-uname -s = `(uname -s) 2>/dev/null || echo unknown`
1442-uname -v = `(uname -v) 2>/dev/null || echo unknown`
1443-
1444-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
1445-/bin/uname -X = `(/bin/uname -X) 2>/dev/null`
1446-
1447-hostinfo = `(hostinfo) 2>/dev/null`
1448-/bin/universe = `(/bin/universe) 2>/dev/null`
1449-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
1450-/bin/arch = `(/bin/arch) 2>/dev/null`
1451-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
1452-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
1453-
1454-UNAME_MACHINE = ${UNAME_MACHINE}
1455-UNAME_RELEASE = ${UNAME_RELEASE}
1456-UNAME_SYSTEM = ${UNAME_SYSTEM}
1457-UNAME_VERSION = ${UNAME_VERSION}
1458-EOF
1459-
1460-exit 1
1461-
1462-# Local variables:
1463-# eval: (add-hook 'write-file-hooks 'time-stamp)
1464-# time-stamp-start: "timestamp='"
1465-# time-stamp-format: "%:y-%02m-%02d"
1466-# time-stamp-end: "'"
1467-# End:
1468
1469=== removed file 'config.sub'
1470--- config.sub 2007-08-23 15:39:01 +0000
1471+++ config.sub 1970-01-01 00:00:00 +0000
1472@@ -1,1579 +0,0 @@
1473-#! /bin/sh
1474-# Configuration validation subroutine script.
1475-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
1476-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
1477-
1478-timestamp='2005-07-08'
1479-
1480-# This file is (in principle) common to ALL GNU software.
1481-# The presence of a machine in this file suggests that SOME GNU software
1482-# can handle that machine. It does not imply ALL GNU software can.
1483-#
1484-# This file is free software; you can redistribute it and/or modify
1485-# it under the terms of the GNU General Public License as published by
1486-# the Free Software Foundation; either version 2 of the License, or
1487-# (at your option) any later version.
1488-#
1489-# This program is distributed in the hope that it will be useful,
1490-# but WITHOUT ANY WARRANTY; without even the implied warranty of
1491-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1492-# GNU General Public License for more details.
1493-#
1494-# You should have received a copy of the GNU General Public License
1495-# along with this program; if not, write to the Free Software
1496-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
1497-# 02110-1301, USA.
1498-#
1499-# As a special exception to the GNU General Public License, if you
1500-# distribute this file as part of a program that contains a
1501-# configuration script generated by Autoconf, you may include it under
1502-# the same distribution terms that you use for the rest of that program.
1503-
1504-
1505-# Please send patches to <config-patches@gnu.org>. Submit a context
1506-# diff and a properly formatted ChangeLog entry.
1507-#
1508-# Configuration subroutine to validate and canonicalize a configuration type.
1509-# Supply the specified configuration type as an argument.
1510-# If it is invalid, we print an error message on stderr and exit with code 1.
1511-# Otherwise, we print the canonical config type on stdout and succeed.
1512-
1513-# This file is supposed to be the same for all GNU packages
1514-# and recognize all the CPU types, system types and aliases
1515-# that are meaningful with *any* GNU software.
1516-# Each package is responsible for reporting which valid configurations
1517-# it does not support. The user should be able to distinguish
1518-# a failure to support a valid configuration from a meaningless
1519-# configuration.
1520-
1521-# The goal of this file is to map all the various variations of a given
1522-# machine specification into a single specification in the form:
1523-# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
1524-# or in some cases, the newer four-part form:
1525-# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
1526-# It is wrong to echo any other type of specification.
1527-
1528-me=`echo "$0" | sed -e 's,.*/,,'`
1529-
1530-usage="\
1531-Usage: $0 [OPTION] CPU-MFR-OPSYS
1532- $0 [OPTION] ALIAS
1533-
1534-Canonicalize a configuration name.
1535-
1536-Operation modes:
1537- -h, --help print this help, then exit
1538- -t, --time-stamp print date of last modification, then exit
1539- -v, --version print version number, then exit
1540-
1541-Report bugs and patches to <config-patches@gnu.org>."
1542-
1543-version="\
1544-GNU config.sub ($timestamp)
1545-
1546-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
1547-Free Software Foundation, Inc.
1548-
1549-This is free software; see the source for copying conditions. There is NO
1550-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
1551-
1552-help="
1553-Try \`$me --help' for more information."
1554-
1555-# Parse command line
1556-while test $# -gt 0 ; do
1557- case $1 in
1558- --time-stamp | --time* | -t )
1559- echo "$timestamp" ; exit ;;
1560- --version | -v )
1561- echo "$version" ; exit ;;
1562- --help | --h* | -h )
1563- echo "$usage"; exit ;;
1564- -- ) # Stop option processing
1565- shift; break ;;
1566- - ) # Use stdin as input.
1567- break ;;
1568- -* )
1569- echo "$me: invalid option $1$help"
1570- exit 1 ;;
1571-
1572- *local*)
1573- # First pass through any local machine types.
1574- echo $1
1575- exit ;;
1576-
1577- * )
1578- break ;;
1579- esac
1580-done
1581-
1582-case $# in
1583- 0) echo "$me: missing argument$help" >&2
1584- exit 1;;
1585- 1) ;;
1586- *) echo "$me: too many arguments$help" >&2
1587- exit 1;;
1588-esac
1589-
1590-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
1591-# Here we must recognize all the valid KERNEL-OS combinations.
1592-maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
1593-case $maybe_os in
1594- nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
1595- kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
1596- os=-$maybe_os
1597- basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
1598- ;;
1599- *)
1600- basic_machine=`echo $1 | sed 's/-[^-]*$//'`
1601- if [ $basic_machine != $1 ]
1602- then os=`echo $1 | sed 's/.*-/-/'`
1603- else os=; fi
1604- ;;
1605-esac
1606-
1607-### Let's recognize common machines as not being operating systems so
1608-### that things like config.sub decstation-3100 work. We also
1609-### recognize some manufacturers as not being operating systems, so we
1610-### can provide default operating systems below.
1611-case $os in
1612- -sun*os*)
1613- # Prevent following clause from handling this invalid input.
1614- ;;
1615- -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
1616- -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
1617- -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
1618- -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
1619- -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
1620- -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
1621- -apple | -axis | -knuth | -cray)
1622- os=
1623- basic_machine=$1
1624- ;;
1625- -sim | -cisco | -oki | -wec | -winbond)
1626- os=
1627- basic_machine=$1
1628- ;;
1629- -scout)
1630- ;;
1631- -wrs)
1632- os=-vxworks
1633- basic_machine=$1
1634- ;;
1635- -chorusos*)
1636- os=-chorusos
1637- basic_machine=$1
1638- ;;
1639- -chorusrdb)
1640- os=-chorusrdb
1641- basic_machine=$1
1642- ;;
1643- -hiux*)
1644- os=-hiuxwe2
1645- ;;
1646- -sco5)
1647- os=-sco3.2v5
1648- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1649- ;;
1650- -sco4)
1651- os=-sco3.2v4
1652- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1653- ;;
1654- -sco3.2.[4-9]*)
1655- os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
1656- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1657- ;;
1658- -sco3.2v[4-9]*)
1659- # Don't forget version if it is 3.2v4 or newer.
1660- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1661- ;;
1662- -sco*)
1663- os=-sco3.2v2
1664- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1665- ;;
1666- -udk*)
1667- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1668- ;;
1669- -isc)
1670- os=-isc2.2
1671- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1672- ;;
1673- -clix*)
1674- basic_machine=clipper-intergraph
1675- ;;
1676- -isc*)
1677- basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
1678- ;;
1679- -lynx*)
1680- os=-lynxos
1681- ;;
1682- -ptx*)
1683- basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
1684- ;;
1685- -windowsnt*)
1686- os=`echo $os | sed -e 's/windowsnt/winnt/'`
1687- ;;
1688- -psos*)
1689- os=-psos
1690- ;;
1691- -mint | -mint[0-9]*)
1692- basic_machine=m68k-atari
1693- os=-mint
1694- ;;
1695-esac
1696-
1697-# Decode aliases for certain CPU-COMPANY combinations.
1698-case $basic_machine in
1699- # Recognize the basic CPU types without company name.
1700- # Some are omitted here because they have special meanings below.
1701- 1750a | 580 \
1702- | a29k \
1703- | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
1704- | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
1705- | am33_2.0 \
1706- | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
1707- | bfin \
1708- | c4x | clipper \
1709- | d10v | d30v | dlx | dsp16xx \
1710- | fr30 | frv \
1711- | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
1712- | i370 | i860 | i960 | ia64 \
1713- | ip2k | iq2000 \
1714- | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
1715- | mips | mipsbe | mipseb | mipsel | mipsle \
1716- | mips16 \
1717- | mips64 | mips64el \
1718- | mips64vr | mips64vrel \
1719- | mips64orion | mips64orionel \
1720- | mips64vr4100 | mips64vr4100el \
1721- | mips64vr4300 | mips64vr4300el \
1722- | mips64vr5000 | mips64vr5000el \
1723- | mips64vr5900 | mips64vr5900el \
1724- | mipsisa32 | mipsisa32el \
1725- | mipsisa32r2 | mipsisa32r2el \
1726- | mipsisa64 | mipsisa64el \
1727- | mipsisa64r2 | mipsisa64r2el \
1728- | mipsisa64sb1 | mipsisa64sb1el \
1729- | mipsisa64sr71k | mipsisa64sr71kel \
1730- | mipstx39 | mipstx39el \
1731- | mn10200 | mn10300 \
1732- | ms1 \
1733- | msp430 \
1734- | ns16k | ns32k \
1735- | or32 \
1736- | pdp10 | pdp11 | pj | pjl \
1737- | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
1738- | pyramid \
1739- | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
1740- | sh64 | sh64le \
1741- | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \
1742- | sparcv8 | sparcv9 | sparcv9b \
1743- | strongarm \
1744- | tahoe | thumb | tic4x | tic80 | tron \
1745- | v850 | v850e \
1746- | we32k \
1747- | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \
1748- | z8k)
1749- basic_machine=$basic_machine-unknown
1750- ;;
1751- m32c)
1752- basic_machine=$basic_machine-unknown
1753- ;;
1754- m6811 | m68hc11 | m6812 | m68hc12)
1755- # Motorola 68HC11/12.
1756- basic_machine=$basic_machine-unknown
1757- os=-none
1758- ;;
1759- m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
1760- ;;
1761-
1762- # We use `pc' rather than `unknown'
1763- # because (1) that's what they normally are, and
1764- # (2) the word "unknown" tends to confuse beginning users.
1765- i*86 | x86_64)
1766- basic_machine=$basic_machine-pc
1767- ;;
1768- # Object if more than one company name word.
1769- *-*-*)
1770- echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1771- exit 1
1772- ;;
1773- # Recognize the basic CPU types with company name.
1774- 580-* \
1775- | a29k-* \
1776- | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
1777- | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
1778- | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
1779- | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
1780- | avr-* \
1781- | bfin-* | bs2000-* \
1782- | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
1783- | clipper-* | craynv-* | cydra-* \
1784- | d10v-* | d30v-* | dlx-* \
1785- | elxsi-* \
1786- | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
1787- | h8300-* | h8500-* \
1788- | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
1789- | i*86-* | i860-* | i960-* | ia64-* \
1790- | ip2k-* | iq2000-* \
1791- | m32r-* | m32rle-* \
1792- | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
1793- | m88110-* | m88k-* | maxq-* | mcore-* \
1794- | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
1795- | mips16-* \
1796- | mips64-* | mips64el-* \
1797- | mips64vr-* | mips64vrel-* \
1798- | mips64orion-* | mips64orionel-* \
1799- | mips64vr4100-* | mips64vr4100el-* \
1800- | mips64vr4300-* | mips64vr4300el-* \
1801- | mips64vr5000-* | mips64vr5000el-* \
1802- | mips64vr5900-* | mips64vr5900el-* \
1803- | mipsisa32-* | mipsisa32el-* \
1804- | mipsisa32r2-* | mipsisa32r2el-* \
1805- | mipsisa64-* | mipsisa64el-* \
1806- | mipsisa64r2-* | mipsisa64r2el-* \
1807- | mipsisa64sb1-* | mipsisa64sb1el-* \
1808- | mipsisa64sr71k-* | mipsisa64sr71kel-* \
1809- | mipstx39-* | mipstx39el-* \
1810- | mmix-* \
1811- | ms1-* \
1812- | msp430-* \
1813- | none-* | np1-* | ns16k-* | ns32k-* \
1814- | orion-* \
1815- | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
1816- | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
1817- | pyramid-* \
1818- | romp-* | rs6000-* \
1819- | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \
1820- | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
1821- | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \
1822- | sparclite-* \
1823- | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
1824- | tahoe-* | thumb-* \
1825- | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
1826- | tron-* \
1827- | v850-* | v850e-* | vax-* \
1828- | we32k-* \
1829- | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \
1830- | xstormy16-* | xtensa-* \
1831- | ymp-* \
1832- | z8k-*)
1833- ;;
1834- m32c-*)
1835- ;;
1836- # Recognize the various machine names and aliases which stand
1837- # for a CPU type and a company and sometimes even an OS.
1838- 386bsd)
1839- basic_machine=i386-unknown
1840- os=-bsd
1841- ;;
1842- 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
1843- basic_machine=m68000-att
1844- ;;
1845- 3b*)
1846- basic_machine=we32k-att
1847- ;;
1848- a29khif)
1849- basic_machine=a29k-amd
1850- os=-udi
1851- ;;
1852- abacus)
1853- basic_machine=abacus-unknown
1854- ;;
1855- adobe68k)
1856- basic_machine=m68010-adobe
1857- os=-scout
1858- ;;
1859- alliant | fx80)
1860- basic_machine=fx80-alliant
1861- ;;
1862- altos | altos3068)
1863- basic_machine=m68k-altos
1864- ;;
1865- am29k)
1866- basic_machine=a29k-none
1867- os=-bsd
1868- ;;
1869- amd64)
1870- basic_machine=x86_64-pc
1871- ;;
1872- amd64-*)
1873- basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
1874- ;;
1875- amdahl)
1876- basic_machine=580-amdahl
1877- os=-sysv
1878- ;;
1879- amiga | amiga-*)
1880- basic_machine=m68k-unknown
1881- ;;
1882- amigaos | amigados)
1883- basic_machine=m68k-unknown
1884- os=-amigaos
1885- ;;
1886- amigaunix | amix)
1887- basic_machine=m68k-unknown
1888- os=-sysv4
1889- ;;
1890- apollo68)
1891- basic_machine=m68k-apollo
1892- os=-sysv
1893- ;;
1894- apollo68bsd)
1895- basic_machine=m68k-apollo
1896- os=-bsd
1897- ;;
1898- aux)
1899- basic_machine=m68k-apple
1900- os=-aux
1901- ;;
1902- balance)
1903- basic_machine=ns32k-sequent
1904- os=-dynix
1905- ;;
1906- c90)
1907- basic_machine=c90-cray
1908- os=-unicos
1909- ;;
1910- convex-c1)
1911- basic_machine=c1-convex
1912- os=-bsd
1913- ;;
1914- convex-c2)
1915- basic_machine=c2-convex
1916- os=-bsd
1917- ;;
1918- convex-c32)
1919- basic_machine=c32-convex
1920- os=-bsd
1921- ;;
1922- convex-c34)
1923- basic_machine=c34-convex
1924- os=-bsd
1925- ;;
1926- convex-c38)
1927- basic_machine=c38-convex
1928- os=-bsd
1929- ;;
1930- cray | j90)
1931- basic_machine=j90-cray
1932- os=-unicos
1933- ;;
1934- craynv)
1935- basic_machine=craynv-cray
1936- os=-unicosmp
1937- ;;
1938- cr16c)
1939- basic_machine=cr16c-unknown
1940- os=-elf
1941- ;;
1942- crds | unos)
1943- basic_machine=m68k-crds
1944- ;;
1945- crisv32 | crisv32-* | etraxfs*)
1946- basic_machine=crisv32-axis
1947- ;;
1948- cris | cris-* | etrax*)
1949- basic_machine=cris-axis
1950- ;;
1951- crx)
1952- basic_machine=crx-unknown
1953- os=-elf
1954- ;;
1955- da30 | da30-*)
1956- basic_machine=m68k-da30
1957- ;;
1958- decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
1959- basic_machine=mips-dec
1960- ;;
1961- decsystem10* | dec10*)
1962- basic_machine=pdp10-dec
1963- os=-tops10
1964- ;;
1965- decsystem20* | dec20*)
1966- basic_machine=pdp10-dec
1967- os=-tops20
1968- ;;
1969- delta | 3300 | motorola-3300 | motorola-delta \
1970- | 3300-motorola | delta-motorola)
1971- basic_machine=m68k-motorola
1972- ;;
1973- delta88)
1974- basic_machine=m88k-motorola
1975- os=-sysv3
1976- ;;
1977- djgpp)
1978- basic_machine=i586-pc
1979- os=-msdosdjgpp
1980- ;;
1981- dpx20 | dpx20-*)
1982- basic_machine=rs6000-bull
1983- os=-bosx
1984- ;;
1985- dpx2* | dpx2*-bull)
1986- basic_machine=m68k-bull
1987- os=-sysv3
1988- ;;
1989- ebmon29k)
1990- basic_machine=a29k-amd
1991- os=-ebmon
1992- ;;
1993- elxsi)
1994- basic_machine=elxsi-elxsi
1995- os=-bsd
1996- ;;
1997- encore | umax | mmax)
1998- basic_machine=ns32k-encore
1999- ;;
2000- es1800 | OSE68k | ose68k | ose | OSE)
2001- basic_machine=m68k-ericsson
2002- os=-ose
2003- ;;
2004- fx2800)
2005- basic_machine=i860-alliant
2006- ;;
2007- genix)
2008- basic_machine=ns32k-ns
2009- ;;
2010- gmicro)
2011- basic_machine=tron-gmicro
2012- os=-sysv
2013- ;;
2014- go32)
2015- basic_machine=i386-pc
2016- os=-go32
2017- ;;
2018- h3050r* | hiux*)
2019- basic_machine=hppa1.1-hitachi
2020- os=-hiuxwe2
2021- ;;
2022- h8300hms)
2023- basic_machine=h8300-hitachi
2024- os=-hms
2025- ;;
2026- h8300xray)
2027- basic_machine=h8300-hitachi
2028- os=-xray
2029- ;;
2030- h8500hms)
2031- basic_machine=h8500-hitachi
2032- os=-hms
2033- ;;
2034- harris)
2035- basic_machine=m88k-harris
2036- os=-sysv3
2037- ;;
2038- hp300-*)
2039- basic_machine=m68k-hp
2040- ;;
2041- hp300bsd)
2042- basic_machine=m68k-hp
2043- os=-bsd
2044- ;;
2045- hp300hpux)
2046- basic_machine=m68k-hp
2047- os=-hpux
2048- ;;
2049- hp3k9[0-9][0-9] | hp9[0-9][0-9])
2050- basic_machine=hppa1.0-hp
2051- ;;
2052- hp9k2[0-9][0-9] | hp9k31[0-9])
2053- basic_machine=m68000-hp
2054- ;;
2055- hp9k3[2-9][0-9])
2056- basic_machine=m68k-hp
2057- ;;
2058- hp9k6[0-9][0-9] | hp6[0-9][0-9])
2059- basic_machine=hppa1.0-hp
2060- ;;
2061- hp9k7[0-79][0-9] | hp7[0-79][0-9])
2062- basic_machine=hppa1.1-hp
2063- ;;
2064- hp9k78[0-9] | hp78[0-9])
2065- # FIXME: really hppa2.0-hp
2066- basic_machine=hppa1.1-hp
2067- ;;
2068- hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
2069- # FIXME: really hppa2.0-hp
2070- basic_machine=hppa1.1-hp
2071- ;;
2072- hp9k8[0-9][13679] | hp8[0-9][13679])
2073- basic_machine=hppa1.1-hp
2074- ;;
2075- hp9k8[0-9][0-9] | hp8[0-9][0-9])
2076- basic_machine=hppa1.0-hp
2077- ;;
2078- hppa-next)
2079- os=-nextstep3
2080- ;;
2081- hppaosf)
2082- basic_machine=hppa1.1-hp
2083- os=-osf
2084- ;;
2085- hppro)
2086- basic_machine=hppa1.1-hp
2087- os=-proelf
2088- ;;
2089- i370-ibm* | ibm*)
2090- basic_machine=i370-ibm
2091- ;;
2092-# I'm not sure what "Sysv32" means. Should this be sysv3.2?
2093- i*86v32)
2094- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
2095- os=-sysv32
2096- ;;
2097- i*86v4*)
2098- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
2099- os=-sysv4
2100- ;;
2101- i*86v)
2102- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
2103- os=-sysv
2104- ;;
2105- i*86sol2)
2106- basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
2107- os=-solaris2
2108- ;;
2109- i386mach)
2110- basic_machine=i386-mach
2111- os=-mach
2112- ;;
2113- i386-vsta | vsta)
2114- basic_machine=i386-unknown
2115- os=-vsta
2116- ;;
2117- iris | iris4d)
2118- basic_machine=mips-sgi
2119- case $os in
2120- -irix*)
2121- ;;
2122- *)
2123- os=-irix4
2124- ;;
2125- esac
2126- ;;
2127- isi68 | isi)
2128- basic_machine=m68k-isi
2129- os=-sysv
2130- ;;
2131- m88k-omron*)
2132- basic_machine=m88k-omron
2133- ;;
2134- magnum | m3230)
2135- basic_machine=mips-mips
2136- os=-sysv
2137- ;;
2138- merlin)
2139- basic_machine=ns32k-utek
2140- os=-sysv
2141- ;;
2142- mingw32)
2143- basic_machine=i386-pc
2144- os=-mingw32
2145- ;;
2146- miniframe)
2147- basic_machine=m68000-convergent
2148- ;;
2149- *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
2150- basic_machine=m68k-atari
2151- os=-mint
2152- ;;
2153- mips3*-*)
2154- basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
2155- ;;
2156- mips3*)
2157- basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
2158- ;;
2159- monitor)
2160- basic_machine=m68k-rom68k
2161- os=-coff
2162- ;;
2163- morphos)
2164- basic_machine=powerpc-unknown
2165- os=-morphos
2166- ;;
2167- msdos)
2168- basic_machine=i386-pc
2169- os=-msdos
2170- ;;
2171- mvs)
2172- basic_machine=i370-ibm
2173- os=-mvs
2174- ;;
2175- ncr3000)
2176- basic_machine=i486-ncr
2177- os=-sysv4
2178- ;;
2179- netbsd386)
2180- basic_machine=i386-unknown
2181- os=-netbsd
2182- ;;
2183- netwinder)
2184- basic_machine=armv4l-rebel
2185- os=-linux
2186- ;;
2187- news | news700 | news800 | news900)
2188- basic_machine=m68k-sony
2189- os=-newsos
2190- ;;
2191- news1000)
2192- basic_machine=m68030-sony
2193- os=-newsos
2194- ;;
2195- news-3600 | risc-news)
2196- basic_machine=mips-sony
2197- os=-newsos
2198- ;;
2199- necv70)
2200- basic_machine=v70-nec
2201- os=-sysv
2202- ;;
2203- next | m*-next )
2204- basic_machine=m68k-next
2205- case $os in
2206- -nextstep* )
2207- ;;
2208- -ns2*)
2209- os=-nextstep2
2210- ;;
2211- *)
2212- os=-nextstep3
2213- ;;
2214- esac
2215- ;;
2216- nh3000)
2217- basic_machine=m68k-harris
2218- os=-cxux
2219- ;;
2220- nh[45]000)
2221- basic_machine=m88k-harris
2222- os=-cxux
2223- ;;
2224- nindy960)
2225- basic_machine=i960-intel
2226- os=-nindy
2227- ;;
2228- mon960)
2229- basic_machine=i960-intel
2230- os=-mon960
2231- ;;
2232- nonstopux)
2233- basic_machine=mips-compaq
2234- os=-nonstopux
2235- ;;
2236- np1)
2237- basic_machine=np1-gould
2238- ;;
2239- nsr-tandem)
2240- basic_machine=nsr-tandem
2241- ;;
2242- op50n-* | op60c-*)
2243- basic_machine=hppa1.1-oki
2244- os=-proelf
2245- ;;
2246- openrisc | openrisc-*)
2247- basic_machine=or32-unknown
2248- ;;
2249- os400)
2250- basic_machine=powerpc-ibm
2251- os=-os400
2252- ;;
2253- OSE68000 | ose68000)
2254- basic_machine=m68000-ericsson
2255- os=-ose
2256- ;;
2257- os68k)
2258- basic_machine=m68k-none
2259- os=-os68k
2260- ;;
2261- pa-hitachi)
2262- basic_machine=hppa1.1-hitachi
2263- os=-hiuxwe2
2264- ;;
2265- paragon)
2266- basic_machine=i860-intel
2267- os=-osf
2268- ;;
2269- pbd)
2270- basic_machine=sparc-tti
2271- ;;
2272- pbb)
2273- basic_machine=m68k-tti
2274- ;;
2275- pc532 | pc532-*)
2276- basic_machine=ns32k-pc532
2277- ;;
2278- pentium | p5 | k5 | k6 | nexgen | viac3)
2279- basic_machine=i586-pc
2280- ;;
2281- pentiumpro | p6 | 6x86 | athlon | athlon_*)
2282- basic_machine=i686-pc
2283- ;;
2284- pentiumii | pentium2 | pentiumiii | pentium3)
2285- basic_machine=i686-pc
2286- ;;
2287- pentium4)
2288- basic_machine=i786-pc
2289- ;;
2290- pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
2291- basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
2292- ;;
2293- pentiumpro-* | p6-* | 6x86-* | athlon-*)
2294- basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
2295- ;;
2296- pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
2297- basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
2298- ;;
2299- pentium4-*)
2300- basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
2301- ;;
2302- pn)
2303- basic_machine=pn-gould
2304- ;;
2305- power) basic_machine=power-ibm
2306- ;;
2307- ppc) basic_machine=powerpc-unknown
2308- ;;
2309- ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
2310- ;;
2311- ppcle | powerpclittle | ppc-le | powerpc-little)
2312- basic_machine=powerpcle-unknown
2313- ;;
2314- ppcle-* | powerpclittle-*)
2315- basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
2316- ;;
2317- ppc64) basic_machine=powerpc64-unknown
2318- ;;
2319- ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
2320- ;;
2321- ppc64le | powerpc64little | ppc64-le | powerpc64-little)
2322- basic_machine=powerpc64le-unknown
2323- ;;
2324- ppc64le-* | powerpc64little-*)
2325- basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
2326- ;;
2327- ps2)
2328- basic_machine=i386-ibm
2329- ;;
2330- pw32)
2331- basic_machine=i586-unknown
2332- os=-pw32
2333- ;;
2334- rom68k)
2335- basic_machine=m68k-rom68k
2336- os=-coff
2337- ;;
2338- rm[46]00)
2339- basic_machine=mips-siemens
2340- ;;
2341- rtpc | rtpc-*)
2342- basic_machine=romp-ibm
2343- ;;
2344- s390 | s390-*)
2345- basic_machine=s390-ibm
2346- ;;
2347- s390x | s390x-*)
2348- basic_machine=s390x-ibm
2349- ;;
2350- sa29200)
2351- basic_machine=a29k-amd
2352- os=-udi
2353- ;;
2354- sb1)
2355- basic_machine=mipsisa64sb1-unknown
2356- ;;
2357- sb1el)
2358- basic_machine=mipsisa64sb1el-unknown
2359- ;;
2360- sei)
2361- basic_machine=mips-sei
2362- os=-seiux
2363- ;;
2364- sequent)
2365- basic_machine=i386-sequent
2366- ;;
2367- sh)
2368- basic_machine=sh-hitachi
2369- os=-hms
2370- ;;
2371- sh64)
2372- basic_machine=sh64-unknown
2373- ;;
2374- sparclite-wrs | simso-wrs)
2375- basic_machine=sparclite-wrs
2376- os=-vxworks
2377- ;;
2378- sps7)
2379- basic_machine=m68k-bull
2380- os=-sysv2
2381- ;;
2382- spur)
2383- basic_machine=spur-unknown
2384- ;;
2385- st2000)
2386- basic_machine=m68k-tandem
2387- ;;
2388- stratus)
2389- basic_machine=i860-stratus
2390- os=-sysv4
2391- ;;
2392- sun2)
2393- basic_machine=m68000-sun
2394- ;;
2395- sun2os3)
2396- basic_machine=m68000-sun
2397- os=-sunos3
2398- ;;
2399- sun2os4)
2400- basic_machine=m68000-sun
2401- os=-sunos4
2402- ;;
2403- sun3os3)
2404- basic_machine=m68k-sun
2405- os=-sunos3
2406- ;;
2407- sun3os4)
2408- basic_machine=m68k-sun
2409- os=-sunos4
2410- ;;
2411- sun4os3)
2412- basic_machine=sparc-sun
2413- os=-sunos3
2414- ;;
2415- sun4os4)
2416- basic_machine=sparc-sun
2417- os=-sunos4
2418- ;;
2419- sun4sol2)
2420- basic_machine=sparc-sun
2421- os=-solaris2
2422- ;;
2423- sun3 | sun3-*)
2424- basic_machine=m68k-sun
2425- ;;
2426- sun4)
2427- basic_machine=sparc-sun
2428- ;;
2429- sun386 | sun386i | roadrunner)
2430- basic_machine=i386-sun
2431- ;;
2432- sv1)
2433- basic_machine=sv1-cray
2434- os=-unicos
2435- ;;
2436- symmetry)
2437- basic_machine=i386-sequent
2438- os=-dynix
2439- ;;
2440- t3e)
2441- basic_machine=alphaev5-cray
2442- os=-unicos
2443- ;;
2444- t90)
2445- basic_machine=t90-cray
2446- os=-unicos
2447- ;;
2448- tic54x | c54x*)
2449- basic_machine=tic54x-unknown
2450- os=-coff
2451- ;;
2452- tic55x | c55x*)
2453- basic_machine=tic55x-unknown
2454- os=-coff
2455- ;;
2456- tic6x | c6x*)
2457- basic_machine=tic6x-unknown
2458- os=-coff
2459- ;;
2460- tx39)
2461- basic_machine=mipstx39-unknown
2462- ;;
2463- tx39el)
2464- basic_machine=mipstx39el-unknown
2465- ;;
2466- toad1)
2467- basic_machine=pdp10-xkl
2468- os=-tops20
2469- ;;
2470- tower | tower-32)
2471- basic_machine=m68k-ncr
2472- ;;
2473- tpf)
2474- basic_machine=s390x-ibm
2475- os=-tpf
2476- ;;
2477- udi29k)
2478- basic_machine=a29k-amd
2479- os=-udi
2480- ;;
2481- ultra3)
2482- basic_machine=a29k-nyu
2483- os=-sym1
2484- ;;
2485- v810 | necv810)
2486- basic_machine=v810-nec
2487- os=-none
2488- ;;
2489- vaxv)
2490- basic_machine=vax-dec
2491- os=-sysv
2492- ;;
2493- vms)
2494- basic_machine=vax-dec
2495- os=-vms
2496- ;;
2497- vpp*|vx|vx-*)
2498- basic_machine=f301-fujitsu
2499- ;;
2500- vxworks960)
2501- basic_machine=i960-wrs
2502- os=-vxworks
2503- ;;
2504- vxworks68)
2505- basic_machine=m68k-wrs
2506- os=-vxworks
2507- ;;
2508- vxworks29k)
2509- basic_machine=a29k-wrs
2510- os=-vxworks
2511- ;;
2512- w65*)
2513- basic_machine=w65-wdc
2514- os=-none
2515- ;;
2516- w89k-*)
2517- basic_machine=hppa1.1-winbond
2518- os=-proelf
2519- ;;
2520- xbox)
2521- basic_machine=i686-pc
2522- os=-mingw32
2523- ;;
2524- xps | xps100)
2525- basic_machine=xps100-honeywell
2526- ;;
2527- ymp)
2528- basic_machine=ymp-cray
2529- os=-unicos
2530- ;;
2531- z8k-*-coff)
2532- basic_machine=z8k-unknown
2533- os=-sim
2534- ;;
2535- none)
2536- basic_machine=none-none
2537- os=-none
2538- ;;
2539-
2540-# Here we handle the default manufacturer of certain CPU types. It is in
2541-# some cases the only manufacturer, in others, it is the most popular.
2542- w89k)
2543- basic_machine=hppa1.1-winbond
2544- ;;
2545- op50n)
2546- basic_machine=hppa1.1-oki
2547- ;;
2548- op60c)
2549- basic_machine=hppa1.1-oki
2550- ;;
2551- romp)
2552- basic_machine=romp-ibm
2553- ;;
2554- mmix)
2555- basic_machine=mmix-knuth
2556- ;;
2557- rs6000)
2558- basic_machine=rs6000-ibm
2559- ;;
2560- vax)
2561- basic_machine=vax-dec
2562- ;;
2563- pdp10)
2564- # there are many clones, so DEC is not a safe bet
2565- basic_machine=pdp10-unknown
2566- ;;
2567- pdp11)
2568- basic_machine=pdp11-dec
2569- ;;
2570- we32k)
2571- basic_machine=we32k-att
2572- ;;
2573- sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
2574- basic_machine=sh-unknown
2575- ;;
2576- sparc | sparcv8 | sparcv9 | sparcv9b)
2577- basic_machine=sparc-sun
2578- ;;
2579- cydra)
2580- basic_machine=cydra-cydrome
2581- ;;
2582- orion)
2583- basic_machine=orion-highlevel
2584- ;;
2585- orion105)
2586- basic_machine=clipper-highlevel
2587- ;;
2588- mac | mpw | mac-mpw)
2589- basic_machine=m68k-apple
2590- ;;
2591- pmac | pmac-mpw)
2592- basic_machine=powerpc-apple
2593- ;;
2594- *-unknown)
2595- # Make sure to match an already-canonicalized machine name.
2596- ;;
2597- *)
2598- echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
2599- exit 1
2600- ;;
2601-esac
2602-
2603-# Here we canonicalize certain aliases for manufacturers.
2604-case $basic_machine in
2605- *-digital*)
2606- basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
2607- ;;
2608- *-commodore*)
2609- basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
2610- ;;
2611- *)
2612- ;;
2613-esac
2614-
2615-# Decode manufacturer-specific aliases for certain operating systems.
2616-
2617-if [ x"$os" != x"" ]
2618-then
2619-case $os in
2620- # First match some system type aliases
2621- # that might get confused with valid system types.
2622- # -solaris* is a basic system type, with this one exception.
2623- -solaris1 | -solaris1.*)
2624- os=`echo $os | sed -e 's|solaris1|sunos4|'`
2625- ;;
2626- -solaris)
2627- os=-solaris2
2628- ;;
2629- -svr4*)
2630- os=-sysv4
2631- ;;
2632- -unixware*)
2633- os=-sysv4.2uw
2634- ;;
2635- -gnu/linux*)
2636- os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
2637- ;;
2638- # First accept the basic system types.
2639- # The portable systems comes first.
2640- # Each alternative MUST END IN A *, to match a version number.
2641- # -sysv* is not here because it comes later, after sysvr4.
2642- -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
2643- | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
2644- | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
2645- | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
2646- | -aos* \
2647- | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
2648- | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
2649- | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
2650- | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
2651- | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
2652- | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
2653- | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
2654- | -chorusos* | -chorusrdb* \
2655- | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
2656- | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
2657- | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
2658- | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
2659- | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
2660- | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
2661- | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
2662- | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
2663- | -skyos* | -haiku*)
2664- # Remember, each alternative MUST END IN *, to match a version number.
2665- ;;
2666- -qnx*)
2667- case $basic_machine in
2668- x86-* | i*86-*)
2669- ;;
2670- *)
2671- os=-nto$os
2672- ;;
2673- esac
2674- ;;
2675- -nto-qnx*)
2676- ;;
2677- -nto*)
2678- os=`echo $os | sed -e 's|nto|nto-qnx|'`
2679- ;;
2680- -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
2681- | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
2682- | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
2683- ;;
2684- -mac*)
2685- os=`echo $os | sed -e 's|mac|macos|'`
2686- ;;
2687- -linux-dietlibc)
2688- os=-linux-dietlibc
2689- ;;
2690- -linux*)
2691- os=`echo $os | sed -e 's|linux|linux-gnu|'`
2692- ;;
2693- -sunos5*)
2694- os=`echo $os | sed -e 's|sunos5|solaris2|'`
2695- ;;
2696- -sunos6*)
2697- os=`echo $os | sed -e 's|sunos6|solaris3|'`
2698- ;;
2699- -opened*)
2700- os=-openedition
2701- ;;
2702- -os400*)
2703- os=-os400
2704- ;;
2705- -wince*)
2706- os=-wince
2707- ;;
2708- -osfrose*)
2709- os=-osfrose
2710- ;;
2711- -osf*)
2712- os=-osf
2713- ;;
2714- -utek*)
2715- os=-bsd
2716- ;;
2717- -dynix*)
2718- os=-bsd
2719- ;;
2720- -acis*)
2721- os=-aos
2722- ;;
2723- -atheos*)
2724- os=-atheos
2725- ;;
2726- -syllable*)
2727- os=-syllable
2728- ;;
2729- -386bsd)
2730- os=-bsd
2731- ;;
2732- -ctix* | -uts*)
2733- os=-sysv
2734- ;;
2735- -nova*)
2736- os=-rtmk-nova
2737- ;;
2738- -ns2 )
2739- os=-nextstep2
2740- ;;
2741- -nsk*)
2742- os=-nsk
2743- ;;
2744- # Preserve the version number of sinix5.
2745- -sinix5.*)
2746- os=`echo $os | sed -e 's|sinix|sysv|'`
2747- ;;
2748- -sinix*)
2749- os=-sysv4
2750- ;;
2751- -tpf*)
2752- os=-tpf
2753- ;;
2754- -triton*)
2755- os=-sysv3
2756- ;;
2757- -oss*)
2758- os=-sysv3
2759- ;;
2760- -svr4)
2761- os=-sysv4
2762- ;;
2763- -svr3)
2764- os=-sysv3
2765- ;;
2766- -sysvr4)
2767- os=-sysv4
2768- ;;
2769- # This must come after -sysvr4.
2770- -sysv*)
2771- ;;
2772- -ose*)
2773- os=-ose
2774- ;;
2775- -es1800*)
2776- os=-ose
2777- ;;
2778- -xenix)
2779- os=-xenix
2780- ;;
2781- -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
2782- os=-mint
2783- ;;
2784- -aros*)
2785- os=-aros
2786- ;;
2787- -kaos*)
2788- os=-kaos
2789- ;;
2790- -zvmoe)
2791- os=-zvmoe
2792- ;;
2793- -none)
2794- ;;
2795- *)
2796- # Get rid of the `-' at the beginning of $os.
2797- os=`echo $os | sed 's/[^-]*-//'`
2798- echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
2799- exit 1
2800- ;;
2801-esac
2802-else
2803-
2804-# Here we handle the default operating systems that come with various machines.
2805-# The value should be what the vendor currently ships out the door with their
2806-# machine or put another way, the most popular os provided with the machine.
2807-
2808-# Note that if you're going to try to match "-MANUFACTURER" here (say,
2809-# "-sun"), then you have to tell the case statement up towards the top
2810-# that MANUFACTURER isn't an operating system. Otherwise, code above
2811-# will signal an error saying that MANUFACTURER isn't an operating
2812-# system, and we'll never get to this point.
2813-
2814-case $basic_machine in
2815- *-acorn)
2816- os=-riscix1.2
2817- ;;
2818- arm*-rebel)
2819- os=-linux
2820- ;;
2821- arm*-semi)
2822- os=-aout
2823- ;;
2824- c4x-* | tic4x-*)
2825- os=-coff
2826- ;;
2827- # This must come before the *-dec entry.
2828- pdp10-*)
2829- os=-tops20
2830- ;;
2831- pdp11-*)
2832- os=-none
2833- ;;
2834- *-dec | vax-*)
2835- os=-ultrix4.2
2836- ;;
2837- m68*-apollo)
2838- os=-domain
2839- ;;
2840- i386-sun)
2841- os=-sunos4.0.2
2842- ;;
2843- m68000-sun)
2844- os=-sunos3
2845- # This also exists in the configure program, but was not the
2846- # default.
2847- # os=-sunos4
2848- ;;
2849- m68*-cisco)
2850- os=-aout
2851- ;;
2852- mips*-cisco)
2853- os=-elf
2854- ;;
2855- mips*-*)
2856- os=-elf
2857- ;;
2858- or32-*)
2859- os=-coff
2860- ;;
2861- *-tti) # must be before sparc entry or we get the wrong os.
2862- os=-sysv3
2863- ;;
2864- sparc-* | *-sun)
2865- os=-sunos4.1.1
2866- ;;
2867- *-be)
2868- os=-beos
2869- ;;
2870- *-haiku)
2871- os=-haiku
2872- ;;
2873- *-ibm)
2874- os=-aix
2875- ;;
2876- *-knuth)
2877- os=-mmixware
2878- ;;
2879- *-wec)
2880- os=-proelf
2881- ;;
2882- *-winbond)
2883- os=-proelf
2884- ;;
2885- *-oki)
2886- os=-proelf
2887- ;;
2888- *-hp)
2889- os=-hpux
2890- ;;
2891- *-hitachi)
2892- os=-hiux
2893- ;;
2894- i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
2895- os=-sysv
2896- ;;
2897- *-cbm)
2898- os=-amigaos
2899- ;;
2900- *-dg)
2901- os=-dgux
2902- ;;
2903- *-dolphin)
2904- os=-sysv3
2905- ;;
2906- m68k-ccur)
2907- os=-rtu
2908- ;;
2909- m88k-omron*)
2910- os=-luna
2911- ;;
2912- *-next )
2913- os=-nextstep
2914- ;;
2915- *-sequent)
2916- os=-ptx
2917- ;;
2918- *-crds)
2919- os=-unos
2920- ;;
2921- *-ns)
2922- os=-genix
2923- ;;
2924- i370-*)
2925- os=-mvs
2926- ;;
2927- *-next)
2928- os=-nextstep3
2929- ;;
2930- *-gould)
2931- os=-sysv
2932- ;;
2933- *-highlevel)
2934- os=-bsd
2935- ;;
2936- *-encore)
2937- os=-bsd
2938- ;;
2939- *-sgi)
2940- os=-irix
2941- ;;
2942- *-siemens)
2943- os=-sysv4
2944- ;;
2945- *-masscomp)
2946- os=-rtu
2947- ;;
2948- f30[01]-fujitsu | f700-fujitsu)
2949- os=-uxpv
2950- ;;
2951- *-rom68k)
2952- os=-coff
2953- ;;
2954- *-*bug)
2955- os=-coff
2956- ;;
2957- *-apple)
2958- os=-macos
2959- ;;
2960- *-atari*)
2961- os=-mint
2962- ;;
2963- *)
2964- os=-none
2965- ;;
2966-esac
2967-fi
2968-
2969-# Here we handle the case where we know the os, and the CPU type, but not the
2970-# manufacturer. We pick the logical manufacturer.
2971-vendor=unknown
2972-case $basic_machine in
2973- *-unknown)
2974- case $os in
2975- -riscix*)
2976- vendor=acorn
2977- ;;
2978- -sunos*)
2979- vendor=sun
2980- ;;
2981- -aix*)
2982- vendor=ibm
2983- ;;
2984- -beos*)
2985- vendor=be
2986- ;;
2987- -hpux*)
2988- vendor=hp
2989- ;;
2990- -mpeix*)
2991- vendor=hp
2992- ;;
2993- -hiux*)
2994- vendor=hitachi
2995- ;;
2996- -unos*)
2997- vendor=crds
2998- ;;
2999- -dgux*)
3000- vendor=dg
3001- ;;
3002- -luna*)
3003- vendor=omron
3004- ;;
3005- -genix*)
3006- vendor=ns
3007- ;;
3008- -mvs* | -opened*)
3009- vendor=ibm
3010- ;;
3011- -os400*)
3012- vendor=ibm
3013- ;;
3014- -ptx*)
3015- vendor=sequent
3016- ;;
3017- -tpf*)
3018- vendor=ibm
3019- ;;
3020- -vxsim* | -vxworks* | -windiss*)
3021- vendor=wrs
3022- ;;
3023- -aux*)
3024- vendor=apple
3025- ;;
3026- -hms*)
3027- vendor=hitachi
3028- ;;
3029- -mpw* | -macos*)
3030- vendor=apple
3031- ;;
3032- -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
3033- vendor=atari
3034- ;;
3035- -vos*)
3036- vendor=stratus
3037- ;;
3038- esac
3039- basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
3040- ;;
3041-esac
3042-
3043-echo $basic_machine$os
3044-exit
3045-
3046-# Local variables:
3047-# eval: (add-hook 'write-file-hooks 'time-stamp)
3048-# time-stamp-start: "timestamp='"
3049-# time-stamp-format: "%:y-%02m-%02d"
3050-# time-stamp-end: "'"
3051-# End:
3052
3053=== removed file 'configure'
3054--- configure 2007-08-23 15:39:01 +0000
3055+++ configure 1970-01-01 00:00:00 +0000
3056@@ -1,12191 +0,0 @@
3057-#! /bin/sh
3058-# Guess values for system-dependent variables and create Makefiles.
3059-# Generated by GNU Autoconf 2.59 for wulfware 2.6.0.
3060-#
3061-# Copyright (C) 2003 Free Software Foundation, Inc.
3062-# This configure script is free software; the Free Software Foundation
3063-# gives unlimited permission to copy, distribute and modify it.
3064-## --------------------- ##
3065-## M4sh Initialization. ##
3066-## --------------------- ##
3067-
3068-# Be Bourne compatible
3069-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
3070- emulate sh
3071- NULLCMD=:
3072- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
3073- # is contrary to our usage. Disable this feature.
3074- alias -g '${1+"$@"}'='"$@"'
3075-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
3076- set -o posix
3077-fi
3078-DUALCASE=1; export DUALCASE # for MKS sh
3079-
3080-# Support unset when possible.
3081-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
3082- as_unset=unset
3083-else
3084- as_unset=false
3085-fi
3086-
3087-
3088-# Work around bugs in pre-3.0 UWIN ksh.
3089-$as_unset ENV MAIL MAILPATH
3090-PS1='$ '
3091-PS2='> '
3092-PS4='+ '
3093-
3094-# NLS nuisances.
3095-for as_var in \
3096- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
3097- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
3098- LC_TELEPHONE LC_TIME
3099-do
3100- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
3101- eval $as_var=C; export $as_var
3102- else
3103- $as_unset $as_var
3104- fi
3105-done
3106-
3107-# Required to use basename.
3108-if expr a : '\(a\)' >/dev/null 2>&1; then
3109- as_expr=expr
3110-else
3111- as_expr=false
3112-fi
3113-
3114-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
3115- as_basename=basename
3116-else
3117- as_basename=false
3118-fi
3119-
3120-
3121-# Name of the executable.
3122-as_me=`$as_basename "$0" ||
3123-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
3124- X"$0" : 'X\(//\)$' \| \
3125- X"$0" : 'X\(/\)$' \| \
3126- . : '\(.\)' 2>/dev/null ||
3127-echo X/"$0" |
3128- sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
3129- /^X\/\(\/\/\)$/{ s//\1/; q; }
3130- /^X\/\(\/\).*/{ s//\1/; q; }
3131- s/.*/./; q'`
3132-
3133-
3134-# PATH needs CR, and LINENO needs CR and PATH.
3135-# Avoid depending upon Character Ranges.
3136-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
3137-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
3138-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
3139-as_cr_digits='0123456789'
3140-as_cr_alnum=$as_cr_Letters$as_cr_digits
3141-
3142-# The user is always right.
3143-if test "${PATH_SEPARATOR+set}" != set; then
3144- echo "#! /bin/sh" >conf$$.sh
3145- echo "exit 0" >>conf$$.sh
3146- chmod +x conf$$.sh
3147- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
3148- PATH_SEPARATOR=';'
3149- else
3150- PATH_SEPARATOR=:
3151- fi
3152- rm -f conf$$.sh
3153-fi
3154-
3155-
3156- as_lineno_1=$LINENO
3157- as_lineno_2=$LINENO
3158- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
3159- test "x$as_lineno_1" != "x$as_lineno_2" &&
3160- test "x$as_lineno_3" = "x$as_lineno_2" || {
3161- # Find who we are. Look in the path if we contain no path at all
3162- # relative or not.
3163- case $0 in
3164- *[\\/]* ) as_myself=$0 ;;
3165- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3166-for as_dir in $PATH
3167-do
3168- IFS=$as_save_IFS
3169- test -z "$as_dir" && as_dir=.
3170- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
3171-done
3172-
3173- ;;
3174- esac
3175- # We did not find ourselves, most probably we were run as `sh COMMAND'
3176- # in which case we are not to be found in the path.
3177- if test "x$as_myself" = x; then
3178- as_myself=$0
3179- fi
3180- if test ! -f "$as_myself"; then
3181- { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
3182- { (exit 1); exit 1; }; }
3183- fi
3184- case $CONFIG_SHELL in
3185- '')
3186- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3187-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
3188-do
3189- IFS=$as_save_IFS
3190- test -z "$as_dir" && as_dir=.
3191- for as_base in sh bash ksh sh5; do
3192- case $as_dir in
3193- /*)
3194- if ("$as_dir/$as_base" -c '
3195- as_lineno_1=$LINENO
3196- as_lineno_2=$LINENO
3197- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
3198- test "x$as_lineno_1" != "x$as_lineno_2" &&
3199- test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
3200- $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
3201- $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
3202- CONFIG_SHELL=$as_dir/$as_base
3203- export CONFIG_SHELL
3204- exec "$CONFIG_SHELL" "$0" ${1+"$@"}
3205- fi;;
3206- esac
3207- done
3208-done
3209-;;
3210- esac
3211-
3212- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
3213- # uniformly replaced by the line number. The first 'sed' inserts a
3214- # line-number line before each line; the second 'sed' does the real
3215- # work. The second script uses 'N' to pair each line-number line
3216- # with the numbered line, and appends trailing '-' during
3217- # substitution so that $LINENO is not a special case at line end.
3218- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
3219- # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
3220- sed '=' <$as_myself |
3221- sed '
3222- N
3223- s,$,-,
3224- : loop
3225- s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
3226- t loop
3227- s,-$,,
3228- s,^['$as_cr_digits']*\n,,
3229- ' >$as_me.lineno &&
3230- chmod +x $as_me.lineno ||
3231- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
3232- { (exit 1); exit 1; }; }
3233-
3234- # Don't try to exec as it changes $[0], causing all sort of problems
3235- # (the dirname of $[0] is not the place where we might find the
3236- # original and so on. Autoconf is especially sensible to this).
3237- . ./$as_me.lineno
3238- # Exit status is that of the last command.
3239- exit
3240-}
3241-
3242-
3243-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
3244- *c*,-n*) ECHO_N= ECHO_C='
3245-' ECHO_T=' ' ;;
3246- *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
3247- *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
3248-esac
3249-
3250-if expr a : '\(a\)' >/dev/null 2>&1; then
3251- as_expr=expr
3252-else
3253- as_expr=false
3254-fi
3255-
3256-rm -f conf$$ conf$$.exe conf$$.file
3257-echo >conf$$.file
3258-if ln -s conf$$.file conf$$ 2>/dev/null; then
3259- # We could just check for DJGPP; but this test a) works b) is more generic
3260- # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
3261- if test -f conf$$.exe; then
3262- # Don't use ln at all; we don't have any links
3263- as_ln_s='cp -p'
3264- else
3265- as_ln_s='ln -s'
3266- fi
3267-elif ln conf$$.file conf$$ 2>/dev/null; then
3268- as_ln_s=ln
3269-else
3270- as_ln_s='cp -p'
3271-fi
3272-rm -f conf$$ conf$$.exe conf$$.file
3273-
3274-if mkdir -p . 2>/dev/null; then
3275- as_mkdir_p=:
3276-else
3277- test -d ./-p && rmdir ./-p
3278- as_mkdir_p=false
3279-fi
3280-
3281-as_executable_p="test -f"
3282-
3283-# Sed expression to map a string onto a valid CPP name.
3284-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
3285-
3286-# Sed expression to map a string onto a valid variable name.
3287-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
3288-
3289-
3290-# IFS
3291-# We need space, tab and new line, in precisely that order.
3292-as_nl='
3293-'
3294-IFS=" $as_nl"
3295-
3296-# CDPATH.
3297-$as_unset CDPATH
3298-
3299-
3300-
3301-# Check that we are running under the correct shell.
3302-SHELL=${CONFIG_SHELL-/bin/sh}
3303-
3304-case X$ECHO in
3305-X*--fallback-echo)
3306- # Remove one level of quotation (which was required for Make).
3307- ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','`
3308- ;;
3309-esac
3310-
3311-echo=${ECHO-echo}
3312-if test "X$1" = X--no-reexec; then
3313- # Discard the --no-reexec flag, and continue.
3314- shift
3315-elif test "X$1" = X--fallback-echo; then
3316- # Avoid inline document here, it may be left over
3317- :
3318-elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
3319- # Yippee, $echo works!
3320- :
3321-else
3322- # Restart under the correct shell.
3323- exec $SHELL "$0" --no-reexec ${1+"$@"}
3324-fi
3325-
3326-if test "X$1" = X--fallback-echo; then
3327- # used as fallback echo
3328- shift
3329- cat <<EOF
3330-$*
3331-EOF
3332- exit 0
3333-fi
3334-
3335-# The HP-UX ksh and POSIX shell print the target directory to stdout
3336-# if CDPATH is set.
3337-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
3338-
3339-if test -z "$ECHO"; then
3340-if test "X${echo_test_string+set}" != Xset; then
3341-# find a string as large as possible, as long as the shell can cope with it
3342- for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
3343- # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
3344- if (echo_test_string=`eval $cmd`) 2>/dev/null &&
3345- echo_test_string=`eval $cmd` &&
3346- (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
3347- then
3348- break
3349- fi
3350- done
3351-fi
3352-
3353-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
3354- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
3355- test "X$echo_testing_string" = "X$echo_test_string"; then
3356- :
3357-else
3358- # The Solaris, AIX, and Digital Unix default echo programs unquote
3359- # backslashes. This makes it impossible to quote backslashes using
3360- # echo "$something" | sed 's/\\/\\\\/g'
3361- #
3362- # So, first we look for a working echo in the user's PATH.
3363-
3364- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3365- for dir in $PATH /usr/ucb; do
3366- IFS="$lt_save_ifs"
3367- if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
3368- test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
3369- echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
3370- test "X$echo_testing_string" = "X$echo_test_string"; then
3371- echo="$dir/echo"
3372- break
3373- fi
3374- done
3375- IFS="$lt_save_ifs"
3376-
3377- if test "X$echo" = Xecho; then
3378- # We didn't find a better echo, so look for alternatives.
3379- if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
3380- echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
3381- test "X$echo_testing_string" = "X$echo_test_string"; then
3382- # This shell has a builtin print -r that does the trick.
3383- echo='print -r'
3384- elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
3385- test "X$CONFIG_SHELL" != X/bin/ksh; then
3386- # If we have ksh, try running configure again with it.
3387- ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
3388- export ORIGINAL_CONFIG_SHELL
3389- CONFIG_SHELL=/bin/ksh
3390- export CONFIG_SHELL
3391- exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
3392- else
3393- # Try using printf.
3394- echo='printf %s\n'
3395- if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
3396- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
3397- test "X$echo_testing_string" = "X$echo_test_string"; then
3398- # Cool, printf works
3399- :
3400- elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
3401- test "X$echo_testing_string" = 'X\t' &&
3402- echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
3403- test "X$echo_testing_string" = "X$echo_test_string"; then
3404- CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
3405- export CONFIG_SHELL
3406- SHELL="$CONFIG_SHELL"
3407- export SHELL
3408- echo="$CONFIG_SHELL $0 --fallback-echo"
3409- elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
3410- test "X$echo_testing_string" = 'X\t' &&
3411- echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
3412- test "X$echo_testing_string" = "X$echo_test_string"; then
3413- echo="$CONFIG_SHELL $0 --fallback-echo"
3414- else
3415- # maybe with a smaller string...
3416- prev=:
3417-
3418- for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
3419- if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
3420- then
3421- break
3422- fi
3423- prev="$cmd"
3424- done
3425-
3426- if test "$prev" != 'sed 50q "$0"'; then
3427- echo_test_string=`eval $prev`
3428- export echo_test_string
3429- exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
3430- else
3431- # Oops. We lost completely, so just stick with echo.
3432- echo=echo
3433- fi
3434- fi
3435- fi
3436- fi
3437-fi
3438-fi
3439-
3440-# Copy echo and quote the copy suitably for passing to libtool from
3441-# the Makefile, instead of quoting the original, which is used later.
3442-ECHO=$echo
3443-if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then
3444- ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo"
3445-fi
3446-
3447-
3448-
3449-
3450-# Name of the host.
3451-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
3452-# so uname gets run too.
3453-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
3454-
3455-exec 6>&1
3456-
3457-#
3458-# Initializations.
3459-#
3460-ac_default_prefix=/usr/local
3461-ac_config_libobj_dir=.
3462-cross_compiling=no
3463-subdirs=
3464-MFLAGS=
3465-MAKEFLAGS=
3466-SHELL=${CONFIG_SHELL-/bin/sh}
3467-
3468-# Maximum number of lines to put in a shell here document.
3469-# This variable seems obsolete. It should probably be removed, and
3470-# only ac_max_sed_lines should be used.
3471-: ${ac_max_here_lines=38}
3472-
3473-# Identity of this package.
3474-PACKAGE_NAME='wulfware'
3475-PACKAGE_TARNAME='wulfware'
3476-PACKAGE_VERSION='2.6.0'
3477-PACKAGE_STRING='wulfware 2.6.0'
3478-PACKAGE_BUGREPORT=''
3479-
3480-ac_unique_file="Copyright"
3481-# Factoring default headers for most tests.
3482-ac_includes_default="\
3483-#include <stdio.h>
3484-#if HAVE_SYS_TYPES_H
3485-# include <sys/types.h>
3486-#endif
3487-#if HAVE_SYS_STAT_H
3488-# include <sys/stat.h>
3489-#endif
3490-#if STDC_HEADERS
3491-# include <stdlib.h>
3492-# include <stddef.h>
3493-#else
3494-# if HAVE_STDLIB_H
3495-# include <stdlib.h>
3496-# endif
3497-#endif
3498-#if HAVE_STRING_H
3499-# if !STDC_HEADERS && HAVE_MEMORY_H
3500-# include <memory.h>
3501-# endif
3502-# include <string.h>
3503-#endif
3504-#if HAVE_STRINGS_H
3505-# include <strings.h>
3506-#endif
3507-#if HAVE_INTTYPES_H
3508-# include <inttypes.h>
3509-#else
3510-# if HAVE_STDINT_H
3511-# include <stdint.h>
3512-# endif
3513-#endif
3514-#if HAVE_UNISTD_H
3515-# include <unistd.h>
3516-#endif"
3517-
3518-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS RELEASE INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT WULFWARE_LT_VERSION RELEASED build build_cpu build_vendor build_os host host_cpu host_vendor host_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE RANLIB ac_ct_RANLIB SED EGREP LN_S ECHO AR ac_ct_AR CPP LIBTOOL WULFWARE_CFLAGS WULFWARE_LIBS LIBOBJS LTLIBOBJS'
3519-ac_subst_files=''
3520-
3521-# Initialize some variables set by options.
3522-ac_init_help=
3523-ac_init_version=false
3524-# The variables have the same names as the options, with
3525-# dashes changed to underlines.
3526-cache_file=/dev/null
3527-exec_prefix=NONE
3528-no_create=
3529-no_recursion=
3530-prefix=NONE
3531-program_prefix=NONE
3532-program_suffix=NONE
3533-program_transform_name=s,x,x,
3534-silent=
3535-site=
3536-srcdir=
3537-verbose=
3538-x_includes=NONE
3539-x_libraries=NONE
3540-
3541-# Installation directory options.
3542-# These are left unexpanded so users can "make install exec_prefix=/foo"
3543-# and all the variables that are supposed to be based on exec_prefix
3544-# by default will actually change.
3545-# Use braces instead of parens because sh, perl, etc. also accept them.
3546-bindir='${exec_prefix}/bin'
3547-sbindir='${exec_prefix}/sbin'
3548-libexecdir='${exec_prefix}/libexec'
3549-datadir='${prefix}/share'
3550-sysconfdir='${prefix}/etc'
3551-sharedstatedir='${prefix}/com'
3552-localstatedir='${prefix}/var'
3553-libdir='${exec_prefix}/lib'
3554-includedir='${prefix}/include'
3555-oldincludedir='/usr/include'
3556-infodir='${prefix}/info'
3557-mandir='${prefix}/man'
3558-
3559-ac_prev=
3560-for ac_option
3561-do
3562- # If the previous option needs an argument, assign it.
3563- if test -n "$ac_prev"; then
3564- eval "$ac_prev=\$ac_option"
3565- ac_prev=
3566- continue
3567- fi
3568-
3569- ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
3570-
3571- # Accept the important Cygnus configure options, so we can diagnose typos.
3572-
3573- case $ac_option in
3574-
3575- -bindir | --bindir | --bindi | --bind | --bin | --bi)
3576- ac_prev=bindir ;;
3577- -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
3578- bindir=$ac_optarg ;;
3579-
3580- -build | --build | --buil | --bui | --bu)
3581- ac_prev=build_alias ;;
3582- -build=* | --build=* | --buil=* | --bui=* | --bu=*)
3583- build_alias=$ac_optarg ;;
3584-
3585- -cache-file | --cache-file | --cache-fil | --cache-fi \
3586- | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
3587- ac_prev=cache_file ;;
3588- -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
3589- | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
3590- cache_file=$ac_optarg ;;
3591-
3592- --config-cache | -C)
3593- cache_file=config.cache ;;
3594-
3595- -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
3596- ac_prev=datadir ;;
3597- -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
3598- | --da=*)
3599- datadir=$ac_optarg ;;
3600-
3601- -disable-* | --disable-*)
3602- ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
3603- # Reject names that are not valid shell variable names.
3604- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
3605- { echo "$as_me: error: invalid feature name: $ac_feature" >&2
3606- { (exit 1); exit 1; }; }
3607- ac_feature=`echo $ac_feature | sed 's/-/_/g'`
3608- eval "enable_$ac_feature=no" ;;
3609-
3610- -enable-* | --enable-*)
3611- ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
3612- # Reject names that are not valid shell variable names.
3613- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
3614- { echo "$as_me: error: invalid feature name: $ac_feature" >&2
3615- { (exit 1); exit 1; }; }
3616- ac_feature=`echo $ac_feature | sed 's/-/_/g'`
3617- case $ac_option in
3618- *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
3619- *) ac_optarg=yes ;;
3620- esac
3621- eval "enable_$ac_feature='$ac_optarg'" ;;
3622-
3623- -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
3624- | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
3625- | --exec | --exe | --ex)
3626- ac_prev=exec_prefix ;;
3627- -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
3628- | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
3629- | --exec=* | --exe=* | --ex=*)
3630- exec_prefix=$ac_optarg ;;
3631-
3632- -gas | --gas | --ga | --g)
3633- # Obsolete; use --with-gas.
3634- with_gas=yes ;;
3635-
3636- -help | --help | --hel | --he | -h)
3637- ac_init_help=long ;;
3638- -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
3639- ac_init_help=recursive ;;
3640- -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
3641- ac_init_help=short ;;
3642-
3643- -host | --host | --hos | --ho)
3644- ac_prev=host_alias ;;
3645- -host=* | --host=* | --hos=* | --ho=*)
3646- host_alias=$ac_optarg ;;
3647-
3648- -includedir | --includedir | --includedi | --included | --include \
3649- | --includ | --inclu | --incl | --inc)
3650- ac_prev=includedir ;;
3651- -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
3652- | --includ=* | --inclu=* | --incl=* | --inc=*)
3653- includedir=$ac_optarg ;;
3654-
3655- -infodir | --infodir | --infodi | --infod | --info | --inf)
3656- ac_prev=infodir ;;
3657- -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
3658- infodir=$ac_optarg ;;
3659-
3660- -libdir | --libdir | --libdi | --libd)
3661- ac_prev=libdir ;;
3662- -libdir=* | --libdir=* | --libdi=* | --libd=*)
3663- libdir=$ac_optarg ;;
3664-
3665- -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
3666- | --libexe | --libex | --libe)
3667- ac_prev=libexecdir ;;
3668- -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
3669- | --libexe=* | --libex=* | --libe=*)
3670- libexecdir=$ac_optarg ;;
3671-
3672- -localstatedir | --localstatedir | --localstatedi | --localstated \
3673- | --localstate | --localstat | --localsta | --localst \
3674- | --locals | --local | --loca | --loc | --lo)
3675- ac_prev=localstatedir ;;
3676- -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
3677- | --localstate=* | --localstat=* | --localsta=* | --localst=* \
3678- | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
3679- localstatedir=$ac_optarg ;;
3680-
3681- -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
3682- ac_prev=mandir ;;
3683- -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
3684- mandir=$ac_optarg ;;
3685-
3686- -nfp | --nfp | --nf)
3687- # Obsolete; use --without-fp.
3688- with_fp=no ;;
3689-
3690- -no-create | --no-create | --no-creat | --no-crea | --no-cre \
3691- | --no-cr | --no-c | -n)
3692- no_create=yes ;;
3693-
3694- -no-recursion | --no-recursion | --no-recursio | --no-recursi \
3695- | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
3696- no_recursion=yes ;;
3697-
3698- -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
3699- | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
3700- | --oldin | --oldi | --old | --ol | --o)
3701- ac_prev=oldincludedir ;;
3702- -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
3703- | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
3704- | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
3705- oldincludedir=$ac_optarg ;;
3706-
3707- -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
3708- ac_prev=prefix ;;
3709- -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
3710- prefix=$ac_optarg ;;
3711-
3712- -program-prefix | --program-prefix | --program-prefi | --program-pref \
3713- | --program-pre | --program-pr | --program-p)
3714- ac_prev=program_prefix ;;
3715- -program-prefix=* | --program-prefix=* | --program-prefi=* \
3716- | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
3717- program_prefix=$ac_optarg ;;
3718-
3719- -program-suffix | --program-suffix | --program-suffi | --program-suff \
3720- | --program-suf | --program-su | --program-s)
3721- ac_prev=program_suffix ;;
3722- -program-suffix=* | --program-suffix=* | --program-suffi=* \
3723- | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
3724- program_suffix=$ac_optarg ;;
3725-
3726- -program-transform-name | --program-transform-name \
3727- | --program-transform-nam | --program-transform-na \
3728- | --program-transform-n | --program-transform- \
3729- | --program-transform | --program-transfor \
3730- | --program-transfo | --program-transf \
3731- | --program-trans | --program-tran \
3732- | --progr-tra | --program-tr | --program-t)
3733- ac_prev=program_transform_name ;;
3734- -program-transform-name=* | --program-transform-name=* \
3735- | --program-transform-nam=* | --program-transform-na=* \
3736- | --program-transform-n=* | --program-transform-=* \
3737- | --program-transform=* | --program-transfor=* \
3738- | --program-transfo=* | --program-transf=* \
3739- | --program-trans=* | --program-tran=* \
3740- | --progr-tra=* | --program-tr=* | --program-t=*)
3741- program_transform_name=$ac_optarg ;;
3742-
3743- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
3744- | -silent | --silent | --silen | --sile | --sil)
3745- silent=yes ;;
3746-
3747- -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
3748- ac_prev=sbindir ;;
3749- -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
3750- | --sbi=* | --sb=*)
3751- sbindir=$ac_optarg ;;
3752-
3753- -sharedstatedir | --sharedstatedir | --sharedstatedi \
3754- | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
3755- | --sharedst | --shareds | --shared | --share | --shar \
3756- | --sha | --sh)
3757- ac_prev=sharedstatedir ;;
3758- -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
3759- | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
3760- | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
3761- | --sha=* | --sh=*)
3762- sharedstatedir=$ac_optarg ;;
3763-
3764- -site | --site | --sit)
3765- ac_prev=site ;;
3766- -site=* | --site=* | --sit=*)
3767- site=$ac_optarg ;;
3768-
3769- -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
3770- ac_prev=srcdir ;;
3771- -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
3772- srcdir=$ac_optarg ;;
3773-
3774- -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
3775- | --syscon | --sysco | --sysc | --sys | --sy)
3776- ac_prev=sysconfdir ;;
3777- -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
3778- | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
3779- sysconfdir=$ac_optarg ;;
3780-
3781- -target | --target | --targe | --targ | --tar | --ta | --t)
3782- ac_prev=target_alias ;;
3783- -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
3784- target_alias=$ac_optarg ;;
3785-
3786- -v | -verbose | --verbose | --verbos | --verbo | --verb)
3787- verbose=yes ;;
3788-
3789- -version | --version | --versio | --versi | --vers | -V)
3790- ac_init_version=: ;;
3791-
3792- -with-* | --with-*)
3793- ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
3794- # Reject names that are not valid shell variable names.
3795- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
3796- { echo "$as_me: error: invalid package name: $ac_package" >&2
3797- { (exit 1); exit 1; }; }
3798- ac_package=`echo $ac_package| sed 's/-/_/g'`
3799- case $ac_option in
3800- *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
3801- *) ac_optarg=yes ;;
3802- esac
3803- eval "with_$ac_package='$ac_optarg'" ;;
3804-
3805- -without-* | --without-*)
3806- ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
3807- # Reject names that are not valid shell variable names.
3808- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
3809- { echo "$as_me: error: invalid package name: $ac_package" >&2
3810- { (exit 1); exit 1; }; }
3811- ac_package=`echo $ac_package | sed 's/-/_/g'`
3812- eval "with_$ac_package=no" ;;
3813-
3814- --x)
3815- # Obsolete; use --with-x.
3816- with_x=yes ;;
3817-
3818- -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
3819- | --x-incl | --x-inc | --x-in | --x-i)
3820- ac_prev=x_includes ;;
3821- -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
3822- | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
3823- x_includes=$ac_optarg ;;
3824-
3825- -x-libraries | --x-libraries | --x-librarie | --x-librari \
3826- | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
3827- ac_prev=x_libraries ;;
3828- -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
3829- | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
3830- x_libraries=$ac_optarg ;;
3831-
3832- -*) { echo "$as_me: error: unrecognized option: $ac_option
3833-Try \`$0 --help' for more information." >&2
3834- { (exit 1); exit 1; }; }
3835- ;;
3836-
3837- *=*)
3838- ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
3839- # Reject names that are not valid shell variable names.
3840- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
3841- { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
3842- { (exit 1); exit 1; }; }
3843- ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
3844- eval "$ac_envvar='$ac_optarg'"
3845- export $ac_envvar ;;
3846-
3847- *)
3848- # FIXME: should be removed in autoconf 3.0.
3849- echo "$as_me: WARNING: you should use --build, --host, --target" >&2
3850- expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
3851- echo "$as_me: WARNING: invalid host type: $ac_option" >&2
3852- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
3853- ;;
3854-
3855- esac
3856-done
3857-
3858-if test -n "$ac_prev"; then
3859- ac_option=--`echo $ac_prev | sed 's/_/-/g'`
3860- { echo "$as_me: error: missing argument to $ac_option" >&2
3861- { (exit 1); exit 1; }; }
3862-fi
3863-
3864-# Be sure to have absolute paths.
3865-for ac_var in exec_prefix prefix
3866-do
3867- eval ac_val=$`echo $ac_var`
3868- case $ac_val in
3869- [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
3870- *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
3871- { (exit 1); exit 1; }; };;
3872- esac
3873-done
3874-
3875-# Be sure to have absolute paths.
3876-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
3877- localstatedir libdir includedir oldincludedir infodir mandir
3878-do
3879- eval ac_val=$`echo $ac_var`
3880- case $ac_val in
3881- [\\/$]* | ?:[\\/]* ) ;;
3882- *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
3883- { (exit 1); exit 1; }; };;
3884- esac
3885-done
3886-
3887-# There might be people who depend on the old broken behavior: `$host'
3888-# used to hold the argument of --host etc.
3889-# FIXME: To remove some day.
3890-build=$build_alias
3891-host=$host_alias
3892-target=$target_alias
3893-
3894-# FIXME: To remove some day.
3895-if test "x$host_alias" != x; then
3896- if test "x$build_alias" = x; then
3897- cross_compiling=maybe
3898- echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
3899- If a cross compiler is detected then cross compile mode will be used." >&2
3900- elif test "x$build_alias" != "x$host_alias"; then
3901- cross_compiling=yes
3902- fi
3903-fi
3904-
3905-ac_tool_prefix=
3906-test -n "$host_alias" && ac_tool_prefix=$host_alias-
3907-
3908-test "$silent" = yes && exec 6>/dev/null
3909-
3910-
3911-# Find the source files, if location was not specified.
3912-if test -z "$srcdir"; then
3913- ac_srcdir_defaulted=yes
3914- # Try the directory containing this script, then its parent.
3915- ac_confdir=`(dirname "$0") 2>/dev/null ||
3916-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
3917- X"$0" : 'X\(//\)[^/]' \| \
3918- X"$0" : 'X\(//\)$' \| \
3919- X"$0" : 'X\(/\)' \| \
3920- . : '\(.\)' 2>/dev/null ||
3921-echo X"$0" |
3922- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
3923- /^X\(\/\/\)[^/].*/{ s//\1/; q; }
3924- /^X\(\/\/\)$/{ s//\1/; q; }
3925- /^X\(\/\).*/{ s//\1/; q; }
3926- s/.*/./; q'`
3927- srcdir=$ac_confdir
3928- if test ! -r $srcdir/$ac_unique_file; then
3929- srcdir=..
3930- fi
3931-else
3932- ac_srcdir_defaulted=no
3933-fi
3934-if test ! -r $srcdir/$ac_unique_file; then
3935- if test "$ac_srcdir_defaulted" = yes; then
3936- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
3937- { (exit 1); exit 1; }; }
3938- else
3939- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
3940- { (exit 1); exit 1; }; }
3941- fi
3942-fi
3943-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
3944- { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
3945- { (exit 1); exit 1; }; }
3946-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
3947-ac_env_build_alias_set=${build_alias+set}
3948-ac_env_build_alias_value=$build_alias
3949-ac_cv_env_build_alias_set=${build_alias+set}
3950-ac_cv_env_build_alias_value=$build_alias
3951-ac_env_host_alias_set=${host_alias+set}
3952-ac_env_host_alias_value=$host_alias
3953-ac_cv_env_host_alias_set=${host_alias+set}
3954-ac_cv_env_host_alias_value=$host_alias
3955-ac_env_target_alias_set=${target_alias+set}
3956-ac_env_target_alias_value=$target_alias
3957-ac_cv_env_target_alias_set=${target_alias+set}
3958-ac_cv_env_target_alias_value=$target_alias
3959-ac_env_CC_set=${CC+set}
3960-ac_env_CC_value=$CC
3961-ac_cv_env_CC_set=${CC+set}
3962-ac_cv_env_CC_value=$CC
3963-ac_env_CFLAGS_set=${CFLAGS+set}
3964-ac_env_CFLAGS_value=$CFLAGS
3965-ac_cv_env_CFLAGS_set=${CFLAGS+set}
3966-ac_cv_env_CFLAGS_value=$CFLAGS
3967-ac_env_LDFLAGS_set=${LDFLAGS+set}
3968-ac_env_LDFLAGS_value=$LDFLAGS
3969-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
3970-ac_cv_env_LDFLAGS_value=$LDFLAGS
3971-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
3972-ac_env_CPPFLAGS_value=$CPPFLAGS
3973-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
3974-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
3975-ac_env_CPP_set=${CPP+set}
3976-ac_env_CPP_value=$CPP
3977-ac_cv_env_CPP_set=${CPP+set}
3978-ac_cv_env_CPP_value=$CPP
3979-
3980-#
3981-# Report the --help message.
3982-#
3983-if test "$ac_init_help" = "long"; then
3984- # Omit some internal or obsolete options to make the list less imposing.
3985- # This message is too long to be a string in the A/UX 3.1 sh.
3986- cat <<_ACEOF
3987-\`configure' configures wulfware 2.6.0 to adapt to many kinds of systems.
3988-
3989-Usage: $0 [OPTION]... [VAR=VALUE]...
3990-
3991-To assign environment variables (e.g., CC, CFLAGS...), specify them as
3992-VAR=VALUE. See below for descriptions of some of the useful variables.
3993-
3994-Defaults for the options are specified in brackets.
3995-
3996-Configuration:
3997- -h, --help display this help and exit
3998- --help=short display options specific to this package
3999- --help=recursive display the short help of all the included packages
4000- -V, --version display version information and exit
4001- -q, --quiet, --silent do not print \`checking...' messages
4002- --cache-file=FILE cache test results in FILE [disabled]
4003- -C, --config-cache alias for \`--cache-file=config.cache'
4004- -n, --no-create do not create output files
4005- --srcdir=DIR find the sources in DIR [configure dir or \`..']
4006-
4007-_ACEOF
4008-
4009- cat <<_ACEOF
4010-Installation directories:
4011- --prefix=PREFIX install architecture-independent files in PREFIX
4012- [$ac_default_prefix]
4013- --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
4014- [PREFIX]
4015-
4016-By default, \`make install' will install all the files in
4017-\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
4018-an installation prefix other than \`$ac_default_prefix' using \`--prefix',
4019-for instance \`--prefix=\$HOME'.
4020-
4021-For better control, use the options below.
4022-
4023-Fine tuning of the installation directories:
4024- --bindir=DIR user executables [EPREFIX/bin]
4025- --sbindir=DIR system admin executables [EPREFIX/sbin]
4026- --libexecdir=DIR program executables [EPREFIX/libexec]
4027- --datadir=DIR read-only architecture-independent data [PREFIX/share]
4028- --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
4029- --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
4030- --localstatedir=DIR modifiable single-machine data [PREFIX/var]
4031- --libdir=DIR object code libraries [EPREFIX/lib]
4032- --includedir=DIR C header files [PREFIX/include]
4033- --oldincludedir=DIR C header files for non-gcc [/usr/include]
4034- --infodir=DIR info documentation [PREFIX/info]
4035- --mandir=DIR man documentation [PREFIX/man]
4036-_ACEOF
4037-
4038- cat <<\_ACEOF
4039-
4040-Program names:
4041- --program-prefix=PREFIX prepend PREFIX to installed program names
4042- --program-suffix=SUFFIX append SUFFIX to installed program names
4043- --program-transform-name=PROGRAM run sed PROGRAM on installed program names
4044-
4045-System types:
4046- --build=BUILD configure for building on BUILD [guessed]
4047- --host=HOST cross-compile to build programs to run on HOST [BUILD]
4048-_ACEOF
4049-fi
4050-
4051-if test -n "$ac_init_help"; then
4052- case $ac_init_help in
4053- short | recursive ) echo "Configuration of wulfware 2.6.0:";;
4054- esac
4055- cat <<\_ACEOF
4056-
4057-Optional Features:
4058- --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
4059- --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
4060- --enable-maintainer-mode enable make rules and dependencies not useful
4061- (and sometimes confusing) to the casual installer
4062- --disable-dependency-tracking speeds up one-time build
4063- --enable-dependency-tracking do not reject slow dependency extractors
4064- --enable-shared[=PKGS]
4065- build shared libraries [default=yes]
4066- --enable-static[=PKGS]
4067- build static libraries [default=yes]
4068- --enable-fast-install[=PKGS]
4069- optimize for fast installation [default=yes]
4070- --disable-libtool-lock avoid locking (might break parallel builds)
4071-
4072-Optional Packages:
4073- --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
4074- --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
4075- --with-gnu-ld assume the C compiler uses GNU ld [default=no]
4076- --with-pic try to use only PIC/non-PIC objects [default=use
4077- both]
4078- --with-tags[=TAGS]
4079- include additional configurations [automatic]
4080-
4081-Some influential environment variables:
4082- CC C compiler command
4083- CFLAGS C compiler flags
4084- LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
4085- nonstandard directory <lib dir>
4086- CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
4087- headers in a nonstandard directory <include dir>
4088- CPP C preprocessor
4089-
4090-Use these variables to override the choices made by `configure' or to help
4091-it to find libraries and programs with nonstandard names/locations.
4092-
4093-_ACEOF
4094-fi
4095-
4096-if test "$ac_init_help" = "recursive"; then
4097- # If there are subdirs, report their specific --help.
4098- ac_popdir=`pwd`
4099- for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
4100- test -d $ac_dir || continue
4101- ac_builddir=.
4102-
4103-if test "$ac_dir" != .; then
4104- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
4105- # A "../" for each directory in $ac_dir_suffix.
4106- ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
4107-else
4108- ac_dir_suffix= ac_top_builddir=
4109-fi
4110-
4111-case $srcdir in
4112- .) # No --srcdir option. We are building in place.
4113- ac_srcdir=.
4114- if test -z "$ac_top_builddir"; then
4115- ac_top_srcdir=.
4116- else
4117- ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
4118- fi ;;
4119- [\\/]* | ?:[\\/]* ) # Absolute path.
4120- ac_srcdir=$srcdir$ac_dir_suffix;
4121- ac_top_srcdir=$srcdir ;;
4122- *) # Relative path.
4123- ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
4124- ac_top_srcdir=$ac_top_builddir$srcdir ;;
4125-esac
4126-
4127-# Do not use `cd foo && pwd` to compute absolute paths, because
4128-# the directories may not exist.
4129-case `pwd` in
4130-.) ac_abs_builddir="$ac_dir";;
4131-*)
4132- case "$ac_dir" in
4133- .) ac_abs_builddir=`pwd`;;
4134- [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
4135- *) ac_abs_builddir=`pwd`/"$ac_dir";;
4136- esac;;
4137-esac
4138-case $ac_abs_builddir in
4139-.) ac_abs_top_builddir=${ac_top_builddir}.;;
4140-*)
4141- case ${ac_top_builddir}. in
4142- .) ac_abs_top_builddir=$ac_abs_builddir;;
4143- [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
4144- *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
4145- esac;;
4146-esac
4147-case $ac_abs_builddir in
4148-.) ac_abs_srcdir=$ac_srcdir;;
4149-*)
4150- case $ac_srcdir in
4151- .) ac_abs_srcdir=$ac_abs_builddir;;
4152- [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
4153- *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
4154- esac;;
4155-esac
4156-case $ac_abs_builddir in
4157-.) ac_abs_top_srcdir=$ac_top_srcdir;;
4158-*)
4159- case $ac_top_srcdir in
4160- .) ac_abs_top_srcdir=$ac_abs_builddir;;
4161- [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
4162- *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
4163- esac;;
4164-esac
4165-
4166- cd $ac_dir
4167- # Check for guested configure; otherwise get Cygnus style configure.
4168- if test -f $ac_srcdir/configure.gnu; then
4169- echo
4170- $SHELL $ac_srcdir/configure.gnu --help=recursive
4171- elif test -f $ac_srcdir/configure; then
4172- echo
4173- $SHELL $ac_srcdir/configure --help=recursive
4174- elif test -f $ac_srcdir/configure.ac ||
4175- test -f $ac_srcdir/configure.in; then
4176- echo
4177- $ac_configure --help
4178- else
4179- echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
4180- fi
4181- cd $ac_popdir
4182- done
4183-fi
4184-
4185-test -n "$ac_init_help" && exit 0
4186-if $ac_init_version; then
4187- cat <<\_ACEOF
4188-wulfware configure 2.6.0
4189-generated by GNU Autoconf 2.59
4190-
4191-Copyright (C) 2003 Free Software Foundation, Inc.
4192-This configure script is free software; the Free Software Foundation
4193-gives unlimited permission to copy, distribute and modify it.
4194-_ACEOF
4195- exit 0
4196-fi
4197-exec 5>config.log
4198-cat >&5 <<_ACEOF
4199-This file contains any messages produced by compilers while
4200-running configure, to aid debugging if configure makes a mistake.
4201-
4202-It was created by wulfware $as_me 2.6.0, which was
4203-generated by GNU Autoconf 2.59. Invocation command line was
4204-
4205- $ $0 $@
4206-
4207-_ACEOF
4208-{
4209-cat <<_ASUNAME
4210-## --------- ##
4211-## Platform. ##
4212-## --------- ##
4213-
4214-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
4215-uname -m = `(uname -m) 2>/dev/null || echo unknown`
4216-uname -r = `(uname -r) 2>/dev/null || echo unknown`
4217-uname -s = `(uname -s) 2>/dev/null || echo unknown`
4218-uname -v = `(uname -v) 2>/dev/null || echo unknown`
4219-
4220-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
4221-/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
4222-
4223-/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
4224-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
4225-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
4226-hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
4227-/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
4228-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
4229-/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
4230-
4231-_ASUNAME
4232-
4233-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4234-for as_dir in $PATH
4235-do
4236- IFS=$as_save_IFS
4237- test -z "$as_dir" && as_dir=.
4238- echo "PATH: $as_dir"
4239-done
4240-
4241-} >&5
4242-
4243-cat >&5 <<_ACEOF
4244-
4245-
4246-## ----------- ##
4247-## Core tests. ##
4248-## ----------- ##
4249-
4250-_ACEOF
4251-
4252-
4253-# Keep a trace of the command line.
4254-# Strip out --no-create and --no-recursion so they do not pile up.
4255-# Strip out --silent because we don't want to record it for future runs.
4256-# Also quote any args containing shell meta-characters.
4257-# Make two passes to allow for proper duplicate-argument suppression.
4258-ac_configure_args=
4259-ac_configure_args0=
4260-ac_configure_args1=
4261-ac_sep=
4262-ac_must_keep_next=false
4263-for ac_pass in 1 2
4264-do
4265- for ac_arg
4266- do
4267- case $ac_arg in
4268- -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
4269- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
4270- | -silent | --silent | --silen | --sile | --sil)
4271- continue ;;
4272- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
4273- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
4274- esac
4275- case $ac_pass in
4276- 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
4277- 2)
4278- ac_configure_args1="$ac_configure_args1 '$ac_arg'"
4279- if test $ac_must_keep_next = true; then
4280- ac_must_keep_next=false # Got value, back to normal.
4281- else
4282- case $ac_arg in
4283- *=* | --config-cache | -C | -disable-* | --disable-* \
4284- | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
4285- | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
4286- | -with-* | --with-* | -without-* | --without-* | --x)
4287- case "$ac_configure_args0 " in
4288- "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
4289- esac
4290- ;;
4291- -* ) ac_must_keep_next=true ;;
4292- esac
4293- fi
4294- ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
4295- # Get rid of the leading space.
4296- ac_sep=" "
4297- ;;
4298- esac
4299- done
4300-done
4301-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
4302-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
4303-
4304-# When interrupted or exit'd, cleanup temporary files, and complete
4305-# config.log. We remove comments because anyway the quotes in there
4306-# would cause problems or look ugly.
4307-# WARNING: Be sure not to use single quotes in there, as some shells,
4308-# such as our DU 5.0 friend, will then `close' the trap.
4309-trap 'exit_status=$?
4310- # Save into config.log some information that might help in debugging.
4311- {
4312- echo
4313-
4314- cat <<\_ASBOX
4315-## ---------------- ##
4316-## Cache variables. ##
4317-## ---------------- ##
4318-_ASBOX
4319- echo
4320- # The following way of writing the cache mishandles newlines in values,
4321-{
4322- (set) 2>&1 |
4323- case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
4324- *ac_space=\ *)
4325- sed -n \
4326- "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
4327- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
4328- ;;
4329- *)
4330- sed -n \
4331- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
4332- ;;
4333- esac;
4334-}
4335- echo
4336-
4337- cat <<\_ASBOX
4338-## ----------------- ##
4339-## Output variables. ##
4340-## ----------------- ##
4341-_ASBOX
4342- echo
4343- for ac_var in $ac_subst_vars
4344- do
4345- eval ac_val=$`echo $ac_var`
4346- echo "$ac_var='"'"'$ac_val'"'"'"
4347- done | sort
4348- echo
4349-
4350- if test -n "$ac_subst_files"; then
4351- cat <<\_ASBOX
4352-## ------------- ##
4353-## Output files. ##
4354-## ------------- ##
4355-_ASBOX
4356- echo
4357- for ac_var in $ac_subst_files
4358- do
4359- eval ac_val=$`echo $ac_var`
4360- echo "$ac_var='"'"'$ac_val'"'"'"
4361- done | sort
4362- echo
4363- fi
4364-
4365- if test -s confdefs.h; then
4366- cat <<\_ASBOX
4367-## ----------- ##
4368-## confdefs.h. ##
4369-## ----------- ##
4370-_ASBOX
4371- echo
4372- sed "/^$/d" confdefs.h | sort
4373- echo
4374- fi
4375- test "$ac_signal" != 0 &&
4376- echo "$as_me: caught signal $ac_signal"
4377- echo "$as_me: exit $exit_status"
4378- } >&5
4379- rm -f core *.core &&
4380- rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
4381- exit $exit_status
4382- ' 0
4383-for ac_signal in 1 2 13 15; do
4384- trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
4385-done
4386-ac_signal=0
4387-
4388-# confdefs.h avoids OS command line length limits that DEFS can exceed.
4389-rm -rf conftest* confdefs.h
4390-# AIX cpp loses on an empty file, so make sure it contains at least a newline.
4391-echo >confdefs.h
4392-
4393-# Predefined preprocessor variables.
4394-
4395-cat >>confdefs.h <<_ACEOF
4396-#define PACKAGE_NAME "$PACKAGE_NAME"
4397-_ACEOF
4398-
4399-
4400-cat >>confdefs.h <<_ACEOF
4401-#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
4402-_ACEOF
4403-
4404-
4405-cat >>confdefs.h <<_ACEOF
4406-#define PACKAGE_VERSION "$PACKAGE_VERSION"
4407-_ACEOF
4408-
4409-
4410-cat >>confdefs.h <<_ACEOF
4411-#define PACKAGE_STRING "$PACKAGE_STRING"
4412-_ACEOF
4413-
4414-
4415-cat >>confdefs.h <<_ACEOF
4416-#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
4417-_ACEOF
4418-
4419-
4420-# Let the site file select an alternate cache file if it wants to.
4421-# Prefer explicitly selected file to automatically selected ones.
4422-if test -z "$CONFIG_SITE"; then
4423- if test "x$prefix" != xNONE; then
4424- CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
4425- else
4426- CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
4427- fi
4428-fi
4429-for ac_site_file in $CONFIG_SITE; do
4430- if test -r "$ac_site_file"; then
4431- { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
4432-echo "$as_me: loading site script $ac_site_file" >&6;}
4433- sed 's/^/| /' "$ac_site_file" >&5
4434- . "$ac_site_file"
4435- fi
4436-done
4437-
4438-if test -r "$cache_file"; then
4439- # Some versions of bash will fail to source /dev/null (special
4440- # files actually), so we avoid doing that.
4441- if test -f "$cache_file"; then
4442- { echo "$as_me:$LINENO: loading cache $cache_file" >&5
4443-echo "$as_me: loading cache $cache_file" >&6;}
4444- case $cache_file in
4445- [\\/]* | ?:[\\/]* ) . $cache_file;;
4446- *) . ./$cache_file;;
4447- esac
4448- fi
4449-else
4450- { echo "$as_me:$LINENO: creating cache $cache_file" >&5
4451-echo "$as_me: creating cache $cache_file" >&6;}
4452- >$cache_file
4453-fi
4454-
4455-# Check that the precious variables saved in the cache have kept the same
4456-# value.
4457-ac_cache_corrupted=false
4458-for ac_var in `(set) 2>&1 |
4459- sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
4460- eval ac_old_set=\$ac_cv_env_${ac_var}_set
4461- eval ac_new_set=\$ac_env_${ac_var}_set
4462- eval ac_old_val="\$ac_cv_env_${ac_var}_value"
4463- eval ac_new_val="\$ac_env_${ac_var}_value"
4464- case $ac_old_set,$ac_new_set in
4465- set,)
4466- { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
4467-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
4468- ac_cache_corrupted=: ;;
4469- ,set)
4470- { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
4471-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
4472- ac_cache_corrupted=: ;;
4473- ,);;
4474- *)
4475- if test "x$ac_old_val" != "x$ac_new_val"; then
4476- { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
4477-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
4478- { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
4479-echo "$as_me: former value: $ac_old_val" >&2;}
4480- { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
4481-echo "$as_me: current value: $ac_new_val" >&2;}
4482- ac_cache_corrupted=:
4483- fi;;
4484- esac
4485- # Pass precious variables to config.status.
4486- if test "$ac_new_set" = set; then
4487- case $ac_new_val in
4488- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
4489- ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
4490- *) ac_arg=$ac_var=$ac_new_val ;;
4491- esac
4492- case " $ac_configure_args " in
4493- *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
4494- *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
4495- esac
4496- fi
4497-done
4498-if $ac_cache_corrupted; then
4499- { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
4500-echo "$as_me: error: changes in the environment can compromise the build" >&2;}
4501- { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
4502-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
4503- { (exit 1); exit 1; }; }
4504-fi
4505-
4506-ac_ext=c
4507-ac_cpp='$CPP $CPPFLAGS'
4508-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
4509-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
4510-ac_compiler_gnu=$ac_cv_c_compiler_gnu
4511-
4512-
4513-
4514-
4515-
4516-
4517-
4518-
4519-
4520-
4521-
4522-
4523-
4524-
4525-
4526-
4527-
4528-
4529-
4530-
4531-
4532-
4533-
4534-
4535-
4536-
4537-
4538-
4539-RELEASE=0
4540-
4541-
4542-am__api_version="1.9"
4543-ac_aux_dir=
4544-for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
4545- if test -f $ac_dir/install-sh; then
4546- ac_aux_dir=$ac_dir
4547- ac_install_sh="$ac_aux_dir/install-sh -c"
4548- break
4549- elif test -f $ac_dir/install.sh; then
4550- ac_aux_dir=$ac_dir
4551- ac_install_sh="$ac_aux_dir/install.sh -c"
4552- break
4553- elif test -f $ac_dir/shtool; then
4554- ac_aux_dir=$ac_dir
4555- ac_install_sh="$ac_aux_dir/shtool install -c"
4556- break
4557- fi
4558-done
4559-if test -z "$ac_aux_dir"; then
4560- { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
4561-echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
4562- { (exit 1); exit 1; }; }
4563-fi
4564-ac_config_guess="$SHELL $ac_aux_dir/config.guess"
4565-ac_config_sub="$SHELL $ac_aux_dir/config.sub"
4566-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
4567-
4568-# Find a good install program. We prefer a C program (faster),
4569-# so one script is as good as another. But avoid the broken or
4570-# incompatible versions:
4571-# SysV /etc/install, /usr/sbin/install
4572-# SunOS /usr/etc/install
4573-# IRIX /sbin/install
4574-# AIX /bin/install
4575-# AmigaOS /C/install, which installs bootblocks on floppy discs
4576-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
4577-# AFS /usr/afsws/bin/install, which mishandles nonexistent args
4578-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
4579-# OS/2's system install, which has a completely different semantic
4580-# ./install, which can be erroneously created by make from ./install.sh.
4581-echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
4582-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
4583-if test -z "$INSTALL"; then
4584-if test "${ac_cv_path_install+set}" = set; then
4585- echo $ECHO_N "(cached) $ECHO_C" >&6
4586-else
4587- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4588-for as_dir in $PATH
4589-do
4590- IFS=$as_save_IFS
4591- test -z "$as_dir" && as_dir=.
4592- # Account for people who put trailing slashes in PATH elements.
4593-case $as_dir/ in
4594- ./ | .// | /cC/* | \
4595- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
4596- ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
4597- /usr/ucb/* ) ;;
4598- *)
4599- # OSF1 and SCO ODT 3.0 have their own names for install.
4600- # Don't use installbsd from OSF since it installs stuff as root
4601- # by default.
4602- for ac_prog in ginstall scoinst install; do
4603- for ac_exec_ext in '' $ac_executable_extensions; do
4604- if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
4605- if test $ac_prog = install &&
4606- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
4607- # AIX install. It has an incompatible calling convention.
4608- :
4609- elif test $ac_prog = install &&
4610- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
4611- # program-specific install script used by HP pwplus--don't use.
4612- :
4613- else
4614- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
4615- break 3
4616- fi
4617- fi
4618- done
4619- done
4620- ;;
4621-esac
4622-done
4623-
4624-
4625-fi
4626- if test "${ac_cv_path_install+set}" = set; then
4627- INSTALL=$ac_cv_path_install
4628- else
4629- # As a last resort, use the slow shell script. We don't cache a
4630- # path for INSTALL within a source directory, because that will
4631- # break other packages using the cache if that directory is
4632- # removed, or if the path is relative.
4633- INSTALL=$ac_install_sh
4634- fi
4635-fi
4636-echo "$as_me:$LINENO: result: $INSTALL" >&5
4637-echo "${ECHO_T}$INSTALL" >&6
4638-
4639-# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
4640-# It thinks the first close brace ends the variable substitution.
4641-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
4642-
4643-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
4644-
4645-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
4646-
4647-echo "$as_me:$LINENO: checking whether build environment is sane" >&5
4648-echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
4649-# Just in case
4650-sleep 1
4651-echo timestamp > conftest.file
4652-# Do `set' in a subshell so we don't clobber the current shell's
4653-# arguments. Must try -L first in case configure is actually a
4654-# symlink; some systems play weird games with the mod time of symlinks
4655-# (eg FreeBSD returns the mod time of the symlink's containing
4656-# directory).
4657-if (
4658- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
4659- if test "$*" = "X"; then
4660- # -L didn't work.
4661- set X `ls -t $srcdir/configure conftest.file`
4662- fi
4663- rm -f conftest.file
4664- if test "$*" != "X $srcdir/configure conftest.file" \
4665- && test "$*" != "X conftest.file $srcdir/configure"; then
4666-
4667- # If neither matched, then we have a broken ls. This can happen
4668- # if, for instance, CONFIG_SHELL is bash and it inherits a
4669- # broken ls alias from the environment. This has actually
4670- # happened. Such a system could not be considered "sane".
4671- { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
4672-alias in your environment" >&5
4673-echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
4674-alias in your environment" >&2;}
4675- { (exit 1); exit 1; }; }
4676- fi
4677-
4678- test "$2" = conftest.file
4679- )
4680-then
4681- # Ok.
4682- :
4683-else
4684- { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
4685-Check your system clock" >&5
4686-echo "$as_me: error: newly created file is older than distributed files!
4687-Check your system clock" >&2;}
4688- { (exit 1); exit 1; }; }
4689-fi
4690-echo "$as_me:$LINENO: result: yes" >&5
4691-echo "${ECHO_T}yes" >&6
4692-test "$program_prefix" != NONE &&
4693- program_transform_name="s,^,$program_prefix,;$program_transform_name"
4694-# Use a double $ so make ignores it.
4695-test "$program_suffix" != NONE &&
4696- program_transform_name="s,\$,$program_suffix,;$program_transform_name"
4697-# Double any \ or $. echo might interpret backslashes.
4698-# By default was `s,x,x', remove it if useless.
4699-cat <<\_ACEOF >conftest.sed
4700-s/[\\$]/&&/g;s/;s,x,x,$//
4701-_ACEOF
4702-program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
4703-rm conftest.sed
4704-
4705-# expand $ac_aux_dir to an absolute path
4706-am_aux_dir=`cd $ac_aux_dir && pwd`
4707-
4708-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
4709-# Use eval to expand $SHELL
4710-if eval "$MISSING --run true"; then
4711- am_missing_run="$MISSING --run "
4712-else
4713- am_missing_run=
4714- { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
4715-echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
4716-fi
4717-
4718-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
4719- # We used to keeping the `.' as first argument, in order to
4720- # allow $(mkdir_p) to be used without argument. As in
4721- # $(mkdir_p) $(somedir)
4722- # where $(somedir) is conditionally defined. However this is wrong
4723- # for two reasons:
4724- # 1. if the package is installed by a user who cannot write `.'
4725- # make install will fail,
4726- # 2. the above comment should most certainly read
4727- # $(mkdir_p) $(DESTDIR)$(somedir)
4728- # so it does not work when $(somedir) is undefined and
4729- # $(DESTDIR) is not.
4730- # To support the latter case, we have to write
4731- # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
4732- # so the `.' trick is pointless.
4733- mkdir_p='mkdir -p --'
4734-else
4735- # On NextStep and OpenStep, the `mkdir' command does not
4736- # recognize any option. It will interpret all options as
4737- # directories to create, and then abort because `.' already
4738- # exists.
4739- for d in ./-p ./--version;
4740- do
4741- test -d $d && rmdir $d
4742- done
4743- # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
4744- if test -f "$ac_aux_dir/mkinstalldirs"; then
4745- mkdir_p='$(mkinstalldirs)'
4746- else
4747- mkdir_p='$(install_sh) -d'
4748- fi
4749-fi
4750-
4751-for ac_prog in gawk mawk nawk awk
4752-do
4753- # Extract the first word of "$ac_prog", so it can be a program name with args.
4754-set dummy $ac_prog; ac_word=$2
4755-echo "$as_me:$LINENO: checking for $ac_word" >&5
4756-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4757-if test "${ac_cv_prog_AWK+set}" = set; then
4758- echo $ECHO_N "(cached) $ECHO_C" >&6
4759-else
4760- if test -n "$AWK"; then
4761- ac_cv_prog_AWK="$AWK" # Let the user override the test.
4762-else
4763-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4764-for as_dir in $PATH
4765-do
4766- IFS=$as_save_IFS
4767- test -z "$as_dir" && as_dir=.
4768- for ac_exec_ext in '' $ac_executable_extensions; do
4769- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4770- ac_cv_prog_AWK="$ac_prog"
4771- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4772- break 2
4773- fi
4774-done
4775-done
4776-
4777-fi
4778-fi
4779-AWK=$ac_cv_prog_AWK
4780-if test -n "$AWK"; then
4781- echo "$as_me:$LINENO: result: $AWK" >&5
4782-echo "${ECHO_T}$AWK" >&6
4783-else
4784- echo "$as_me:$LINENO: result: no" >&5
4785-echo "${ECHO_T}no" >&6
4786-fi
4787-
4788- test -n "$AWK" && break
4789-done
4790-
4791-echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
4792-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
4793-set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
4794-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
4795- echo $ECHO_N "(cached) $ECHO_C" >&6
4796-else
4797- cat >conftest.make <<\_ACEOF
4798-all:
4799- @echo 'ac_maketemp="$(MAKE)"'
4800-_ACEOF
4801-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
4802-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
4803-if test -n "$ac_maketemp"; then
4804- eval ac_cv_prog_make_${ac_make}_set=yes
4805-else
4806- eval ac_cv_prog_make_${ac_make}_set=no
4807-fi
4808-rm -f conftest.make
4809-fi
4810-if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
4811- echo "$as_me:$LINENO: result: yes" >&5
4812-echo "${ECHO_T}yes" >&6
4813- SET_MAKE=
4814-else
4815- echo "$as_me:$LINENO: result: no" >&5
4816-echo "${ECHO_T}no" >&6
4817- SET_MAKE="MAKE=${MAKE-make}"
4818-fi
4819-
4820-rm -rf .tst 2>/dev/null
4821-mkdir .tst 2>/dev/null
4822-if test -d .tst; then
4823- am__leading_dot=.
4824-else
4825- am__leading_dot=_
4826-fi
4827-rmdir .tst 2>/dev/null
4828-
4829-# test to see if srcdir already configured
4830-if test "`cd $srcdir && pwd`" != "`pwd`" &&
4831- test -f $srcdir/config.status; then
4832- { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
4833-echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
4834- { (exit 1); exit 1; }; }
4835-fi
4836-
4837-# test whether we have cygpath
4838-if test -z "$CYGPATH_W"; then
4839- if (cygpath --version) >/dev/null 2>/dev/null; then
4840- CYGPATH_W='cygpath -w'
4841- else
4842- CYGPATH_W=echo
4843- fi
4844-fi
4845-
4846-
4847-# Define the identity of the package.
4848- PACKAGE='wulfware'
4849- VERSION='2.6.0'
4850-
4851-
4852-cat >>confdefs.h <<_ACEOF
4853-#define PACKAGE "$PACKAGE"
4854-_ACEOF
4855-
4856-
4857-cat >>confdefs.h <<_ACEOF
4858-#define VERSION "$VERSION"
4859-_ACEOF
4860-
4861-# Some tools Automake needs.
4862-
4863-ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
4864-
4865-
4866-AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
4867-
4868-
4869-AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
4870-
4871-
4872-AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
4873-
4874-
4875-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
4876-
4877-install_sh=${install_sh-"$am_aux_dir/install-sh"}
4878-
4879-# Installed binaries are usually stripped using `strip' when the user
4880-# run `make install-strip'. However `strip' might not be the right
4881-# tool to use in cross-compilation environments, therefore Automake
4882-# will honor the `STRIP' environment variable to overrule this program.
4883-if test "$cross_compiling" != no; then
4884- if test -n "$ac_tool_prefix"; then
4885- # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
4886-set dummy ${ac_tool_prefix}strip; ac_word=$2
4887-echo "$as_me:$LINENO: checking for $ac_word" >&5
4888-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4889-if test "${ac_cv_prog_STRIP+set}" = set; then
4890- echo $ECHO_N "(cached) $ECHO_C" >&6
4891-else
4892- if test -n "$STRIP"; then
4893- ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
4894-else
4895-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4896-for as_dir in $PATH
4897-do
4898- IFS=$as_save_IFS
4899- test -z "$as_dir" && as_dir=.
4900- for ac_exec_ext in '' $ac_executable_extensions; do
4901- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4902- ac_cv_prog_STRIP="${ac_tool_prefix}strip"
4903- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4904- break 2
4905- fi
4906-done
4907-done
4908-
4909-fi
4910-fi
4911-STRIP=$ac_cv_prog_STRIP
4912-if test -n "$STRIP"; then
4913- echo "$as_me:$LINENO: result: $STRIP" >&5
4914-echo "${ECHO_T}$STRIP" >&6
4915-else
4916- echo "$as_me:$LINENO: result: no" >&5
4917-echo "${ECHO_T}no" >&6
4918-fi
4919-
4920-fi
4921-if test -z "$ac_cv_prog_STRIP"; then
4922- ac_ct_STRIP=$STRIP
4923- # Extract the first word of "strip", so it can be a program name with args.
4924-set dummy strip; ac_word=$2
4925-echo "$as_me:$LINENO: checking for $ac_word" >&5
4926-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4927-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
4928- echo $ECHO_N "(cached) $ECHO_C" >&6
4929-else
4930- if test -n "$ac_ct_STRIP"; then
4931- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
4932-else
4933-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4934-for as_dir in $PATH
4935-do
4936- IFS=$as_save_IFS
4937- test -z "$as_dir" && as_dir=.
4938- for ac_exec_ext in '' $ac_executable_extensions; do
4939- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4940- ac_cv_prog_ac_ct_STRIP="strip"
4941- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4942- break 2
4943- fi
4944-done
4945-done
4946-
4947- test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
4948-fi
4949-fi
4950-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
4951-if test -n "$ac_ct_STRIP"; then
4952- echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
4953-echo "${ECHO_T}$ac_ct_STRIP" >&6
4954-else
4955- echo "$as_me:$LINENO: result: no" >&5
4956-echo "${ECHO_T}no" >&6
4957-fi
4958-
4959- STRIP=$ac_ct_STRIP
4960-else
4961- STRIP="$ac_cv_prog_STRIP"
4962-fi
4963-
4964-fi
4965-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
4966-
4967-# We need awk for the "check" target. The system "awk" is bad on
4968-# some platforms.
4969-# Always define AMTAR for backward compatibility.
4970-
4971-AMTAR=${AMTAR-"${am_missing_run}tar"}
4972-
4973-am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
4974-
4975-
4976-
4977-
4978-
4979- ac_config_headers="$ac_config_headers config.h"
4980-
4981-echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
4982-echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
4983- # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
4984-if test "${enable_maintainer_mode+set}" = set; then
4985- enableval="$enable_maintainer_mode"
4986- USE_MAINTAINER_MODE=$enableval
4987-else
4988- USE_MAINTAINER_MODE=no
4989-fi;
4990- echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
4991-echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
4992-
4993-
4994-if test $USE_MAINTAINER_MODE = yes; then
4995- MAINTAINER_MODE_TRUE=
4996- MAINTAINER_MODE_FALSE='#'
4997-else
4998- MAINTAINER_MODE_TRUE='#'
4999- MAINTAINER_MODE_FALSE=
5000-fi
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches