Codebase list dopewars / 2d2e7d0
Imported Debian patch 1.5.12-2 Francois Marier 14 years ago
31 changed file(s) with 1131 addition(s) and 636 deletion(s). Raw diff Collapse all Expand all
0 /config.guess
1 /config.sub
2 /po/*.gmo
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
0 # generated automatically by aclocal 1.9.5 -*- Autoconf -*-
0 # generated automatically by aclocal 1.9.6 -*- Autoconf -*-
11
22 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
33 # 2005 Free Software Foundation, Inc.
2727 # Call AM_AUTOMAKE_VERSION so it can be traced.
2828 # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
2929 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
30 [AM_AUTOMAKE_VERSION([1.9.5])])
30 [AM_AUTOMAKE_VERSION([1.9.6])])
3131
3232 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
3333
00 #! /bin/sh
11 # Attempt to guess a canonical system name.
22 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 # 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4
5 timestamp='2003-06-17'
3 # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
4 # Inc.
5
6 timestamp='2007-07-22'
67
78 # This file is free software; you can redistribute it and/or modify it
89 # under the terms of the GNU General Public License as published by
1617 #
1718 # You should have received a copy of the GNU General Public License
1819 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
21 # 02110-1301, USA.
2022 #
2123 # As a special exception to the GNU General Public License, if you
2224 # distribute this file as part of a program that contains a
2325 # configuration script generated by Autoconf, you may include it under
2426 # the same distribution terms that you use for the rest of that program.
27
2528
2629 # Originally written by Per Bothner <per@bothner.com>.
2730 # Please send patches to <config-patches@gnu.org>. Submit a context
5255 GNU config.guess ($timestamp)
5356
5457 Originally written by Per Bothner.
55 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
58 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
5659 Free Software Foundation, Inc.
5760
5861 This is free software; see the source for copying conditions. There is NO
6568 while test $# -gt 0 ; do
6669 case $1 in
6770 --time-stamp | --time* | -t )
68 echo "$timestamp" ; exit 0 ;;
71 echo "$timestamp" ; exit ;;
6972 --version | -v )
70 echo "$version" ; exit 0 ;;
73 echo "$version" ; exit ;;
7174 --help | --h* | -h )
72 echo "$usage"; exit 0 ;;
75 echo "$usage"; exit ;;
7376 -- ) # Stop option processing
7477 shift; break ;;
7578 - ) # Use stdin as input.
103106 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
104107 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
105108 : ${TMPDIR=/tmp} ;
106 { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
109 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
107110 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
108111 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
109112 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
122125 ;;
123126 ,,*) CC_FOR_BUILD=$CC ;;
124127 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
125 esac ;'
128 esac ; set_cc_for_build= ;'
126129
127130 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
128131 # (ghazi@noc.rutgers.edu 1994-08-24)
134137 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
135138 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
136139 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
137
138 ## for Red Hat Linux
139 if test -f /etc/redhat-release ; then
140 VENDOR=redhat ;
141 else
142 VENDOR= ;
143 fi
144140
145141 # Note: order is significant - the case branches are not exclusive.
146142
164160 arm*) machine=arm-unknown ;;
165161 sh3el) machine=shl-unknown ;;
166162 sh3eb) machine=sh-unknown ;;
163 sh5el) machine=sh5le-unknown ;;
167164 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
168165 esac
169166 # The Operating System including object format, if it has switched
202199 # contains redundant information, the shorter form:
203200 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
204201 echo "${machine}-${os}${release}"
205 exit 0 ;;
206 amiga:OpenBSD:*:*)
207 echo m68k-unknown-openbsd${UNAME_RELEASE}
208 exit 0 ;;
209 arc:OpenBSD:*:*)
210 echo mipsel-unknown-openbsd${UNAME_RELEASE}
211 exit 0 ;;
212 hp300:OpenBSD:*:*)
213 echo m68k-unknown-openbsd${UNAME_RELEASE}
214 exit 0 ;;
215 mac68k:OpenBSD:*:*)
216 echo m68k-unknown-openbsd${UNAME_RELEASE}
217 exit 0 ;;
218 macppc:OpenBSD:*:*)
219 echo powerpc-unknown-openbsd${UNAME_RELEASE}
220 exit 0 ;;
221 mvme68k:OpenBSD:*:*)
222 echo m68k-unknown-openbsd${UNAME_RELEASE}
223 exit 0 ;;
224 mvme88k:OpenBSD:*:*)
225 echo m88k-unknown-openbsd${UNAME_RELEASE}
226 exit 0 ;;
227 mvmeppc:OpenBSD:*:*)
228 echo powerpc-unknown-openbsd${UNAME_RELEASE}
229 exit 0 ;;
230 pmax:OpenBSD:*:*)
231 echo mipsel-unknown-openbsd${UNAME_RELEASE}
232 exit 0 ;;
233 sgi:OpenBSD:*:*)
234 echo mipseb-unknown-openbsd${UNAME_RELEASE}
235 exit 0 ;;
236 sun3:OpenBSD:*:*)
237 echo m68k-unknown-openbsd${UNAME_RELEASE}
238 exit 0 ;;
239 wgrisc:OpenBSD:*:*)
240 echo mipsel-unknown-openbsd${UNAME_RELEASE}
241 exit 0 ;;
202 exit ;;
242203 *:OpenBSD:*:*)
243 echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
244 exit 0 ;;
204 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
205 echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
206 exit ;;
207 *:ekkoBSD:*:*)
208 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
209 exit ;;
210 *:SolidBSD:*:*)
211 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
212 exit ;;
213 macppc:MirBSD:*:*)
214 echo powerpc-unknown-mirbsd${UNAME_RELEASE}
215 exit ;;
216 *:MirBSD:*:*)
217 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
218 exit ;;
245219 alpha:OSF1:*:*)
246 if test $UNAME_RELEASE = "V4.0"; then
220 case $UNAME_RELEASE in
221 *4.0)
247222 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
248 fi
223 ;;
224 *5.*)
225 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
226 ;;
227 esac
249228 # According to Compaq, /usr/sbin/psrinfo has been available on
250229 # OSF/1 and Tru64 systems produced since 1995. I hope that
251230 # covers most systems running today. This code pipes the CPU
283262 "EV7.9 (21364A)")
284263 UNAME_MACHINE="alphaev79" ;;
285264 esac
265 # A Pn.n version is a patched version.
286266 # A Vn.n version is a released version.
287267 # A Tn.n version is a released field test version.
288268 # A Xn.n version is an unreleased experimental baselevel.
289269 # 1.2 uses "1.2" for uname -r.
290 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
291 exit 0 ;;
292 Alpha*:OpenVMS:*:*)
293 echo alpha-hp-vms
294 exit 0 ;;
270 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
271 exit ;;
295272 Alpha\ *:Windows_NT*:*)
296273 # How do we know it's Interix rather than the generic POSIX subsystem?
297274 # Should we change UNAME_MACHINE based on the output of uname instead
298275 # of the specific Alpha model?
299276 echo alpha-pc-interix
300 exit 0 ;;
277 exit ;;
301278 21064:Windows_NT:50:3)
302279 echo alpha-dec-winnt3.5
303 exit 0 ;;
280 exit ;;
304281 Amiga*:UNIX_System_V:4.0:*)
305282 echo m68k-unknown-sysv4
306 exit 0;;
283 exit ;;
307284 *:[Aa]miga[Oo][Ss]:*:*)
308285 echo ${UNAME_MACHINE}-unknown-amigaos
309 exit 0 ;;
286 exit ;;
310287 *:[Mm]orph[Oo][Ss]:*:*)
311288 echo ${UNAME_MACHINE}-unknown-morphos
312 exit 0 ;;
289 exit ;;
313290 *:OS/390:*:*)
314291 echo i370-ibm-openedition
315 exit 0 ;;
292 exit ;;
293 *:z/VM:*:*)
294 echo s390-ibm-zvmoe
295 exit ;;
296 *:OS400:*:*)
297 echo powerpc-ibm-os400
298 exit ;;
316299 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
317300 echo arm-acorn-riscix${UNAME_RELEASE}
318 exit 0;;
301 exit ;;
302 arm:riscos:*:*|arm:RISCOS:*:*)
303 echo arm-unknown-riscos
304 exit ;;
319305 SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
320306 echo hppa1.1-hitachi-hiuxmpp
321 exit 0;;
307 exit ;;
322308 Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
323309 # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
324310 if test "`(/bin/universe) 2>/dev/null`" = att ; then
326312 else
327313 echo pyramid-pyramid-bsd
328314 fi
329 exit 0 ;;
315 exit ;;
330316 NILE*:*:*:dcosx)
331317 echo pyramid-pyramid-svr4
332 exit 0 ;;
318 exit ;;
333319 DRS?6000:unix:4.0:6*)
334320 echo sparc-icl-nx6
335 exit 0 ;;
336 DRS?6000:UNIX_SV:4.2*:7*)
321 exit ;;
322 DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
337323 case `/usr/bin/uname -p` in
338 sparc) echo sparc-icl-nx7 && exit 0 ;;
324 sparc) echo sparc-icl-nx7; exit ;;
339325 esac ;;
340326 sun4H:SunOS:5.*:*)
341327 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
342 exit 0 ;;
328 exit ;;
343329 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
344330 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
345 exit 0 ;;
346 i86pc:SunOS:5.*:*)
331 exit ;;
332 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
347333 echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
348 exit 0 ;;
334 exit ;;
349335 sun4*:SunOS:6*:*)
350336 # According to config.sub, this is the proper way to canonicalize
351337 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
352338 # it's likely to be more like Solaris than SunOS4.
353339 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
354 exit 0 ;;
340 exit ;;
355341 sun4*:SunOS:*:*)
356342 case "`/usr/bin/arch -k`" in
357343 Series*|S4*)
360346 esac
361347 # Japanese Language versions have a version number like `4.1.3-JL'.
362348 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
363 exit 0 ;;
349 exit ;;
364350 sun3*:SunOS:*:*)
365351 echo m68k-sun-sunos${UNAME_RELEASE}
366 exit 0 ;;
352 exit ;;
367353 sun*:*:4.2BSD:*)
368354 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
369355 test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
375361 echo sparc-sun-sunos${UNAME_RELEASE}
376362 ;;
377363 esac
378 exit 0 ;;
364 exit ;;
379365 aushp:SunOS:*:*)
380366 echo sparc-auspex-sunos${UNAME_RELEASE}
381 exit 0 ;;
367 exit ;;
382368 # The situation for MiNT is a little confusing. The machine name
383369 # can be virtually everything (everything which is not
384370 # "atarist" or "atariste" at least should have a processor
389375 # be no problem.
390376 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
391377 echo m68k-atari-mint${UNAME_RELEASE}
392 exit 0 ;;
378 exit ;;
393379 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
394380 echo m68k-atari-mint${UNAME_RELEASE}
395 exit 0 ;;
381 exit ;;
396382 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
397383 echo m68k-atari-mint${UNAME_RELEASE}
398 exit 0 ;;
384 exit ;;
399385 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
400386 echo m68k-milan-mint${UNAME_RELEASE}
401 exit 0 ;;
387 exit ;;
402388 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
403389 echo m68k-hades-mint${UNAME_RELEASE}
404 exit 0 ;;
390 exit ;;
405391 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
406392 echo m68k-unknown-mint${UNAME_RELEASE}
407 exit 0 ;;
393 exit ;;
394 m68k:machten:*:*)
395 echo m68k-apple-machten${UNAME_RELEASE}
396 exit ;;
408397 powerpc:machten:*:*)
409398 echo powerpc-apple-machten${UNAME_RELEASE}
410 exit 0 ;;
399 exit ;;
411400 RISC*:Mach:*:*)
412401 echo mips-dec-mach_bsd4.3
413 exit 0 ;;
402 exit ;;
414403 RISC*:ULTRIX:*:*)
415404 echo mips-dec-ultrix${UNAME_RELEASE}
416 exit 0 ;;
405 exit ;;
417406 VAX*:ULTRIX*:*:*)
418407 echo vax-dec-ultrix${UNAME_RELEASE}
419 exit 0 ;;
408 exit ;;
420409 2020:CLIX:*:* | 2430:CLIX:*:*)
421410 echo clipper-intergraph-clix${UNAME_RELEASE}
422 exit 0 ;;
411 exit ;;
423412 mips:*:*:UMIPS | mips:*:*:RISCos)
424413 eval $set_cc_for_build
425414 sed 's/^ //' << EOF >$dummy.c
443432 exit (-1);
444433 }
445434 EOF
446 $CC_FOR_BUILD -o $dummy $dummy.c \
447 && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
448 && exit 0
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; }
449439 echo mips-mips-riscos${UNAME_RELEASE}
450 exit 0 ;;
440 exit ;;
451441 Motorola:PowerMAX_OS:*:*)
452442 echo powerpc-motorola-powermax
453 exit 0 ;;
443 exit ;;
454444 Motorola:*:4.3:PL8-*)
455445 echo powerpc-harris-powermax
456 exit 0 ;;
446 exit ;;
457447 Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
458448 echo powerpc-harris-powermax
459 exit 0 ;;
449 exit ;;
460450 Night_Hawk:Power_UNIX:*:*)
461451 echo powerpc-harris-powerunix
462 exit 0 ;;
452 exit ;;
463453 m88k:CX/UX:7*:*)
464454 echo m88k-harris-cxux7
465 exit 0 ;;
455 exit ;;
466456 m88k:*:4*:R4*)
467457 echo m88k-motorola-sysv4
468 exit 0 ;;
458 exit ;;
469459 m88k:*:3*:R3*)
470460 echo m88k-motorola-sysv3
471 exit 0 ;;
461 exit ;;
472462 AViiON:dgux:*:*)
473463 # DG/UX returns AViiON for all architectures
474464 UNAME_PROCESSOR=`/usr/bin/uname -p`
484474 else
485475 echo i586-dg-dgux${UNAME_RELEASE}
486476 fi
487 exit 0 ;;
477 exit ;;
488478 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
489479 echo m88k-dolphin-sysv3
490 exit 0 ;;
480 exit ;;
491481 M88*:*:R3*:*)
492482 # Delta 88k system running SVR3
493483 echo m88k-motorola-sysv3
494 exit 0 ;;
484 exit ;;
495485 XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
496486 echo m88k-tektronix-sysv3
497 exit 0 ;;
487 exit ;;
498488 Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
499489 echo m68k-tektronix-bsd
500 exit 0 ;;
490 exit ;;
501491 *:IRIX*:*:*)
502492 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
503 exit 0 ;;
493 exit ;;
504494 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
505 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
506 exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX '
495 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
496 exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
507497 i*86:AIX:*:*)
508498 echo i386-ibm-aix
509 exit 0 ;;
499 exit ;;
510500 ia64:AIX:*:*)
511501 if [ -x /usr/bin/oslevel ] ; then
512502 IBM_REV=`/usr/bin/oslevel`
514504 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
515505 fi
516506 echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
517 exit 0 ;;
507 exit ;;
518508 *:AIX:2:3)
519509 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
520510 eval $set_cc_for_build
529519 exit(0);
530520 }
531521 EOF
532 $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0
533 echo rs6000-ibm-aix3.2.5
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
534528 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
535529 echo rs6000-ibm-aix3.2.4
536530 else
537531 echo rs6000-ibm-aix3.2
538532 fi
539 exit 0 ;;
533 exit ;;
540534 *:AIX:*:[45])
541535 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
542536 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
550544 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
551545 fi
552546 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
553 exit 0 ;;
547 exit ;;
554548 *:AIX:*:*)
555549 echo rs6000-ibm-aix
556 exit 0 ;;
550 exit ;;
557551 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
558552 echo romp-ibm-bsd4.4
559 exit 0 ;;
553 exit ;;
560554 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
561555 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
562 exit 0 ;; # report: romp-ibm BSD 4.3
556 exit ;; # report: romp-ibm BSD 4.3
563557 *:BOSX:*:*)
564558 echo rs6000-bull-bosx
565 exit 0 ;;
559 exit ;;
566560 DPX/2?00:B.O.S.:*:*)
567561 echo m68k-bull-sysv3
568 exit 0 ;;
562 exit ;;
569563 9000/[34]??:4.3bsd:1.*:*)
570564 echo m68k-hp-bsd
571 exit 0 ;;
565 exit ;;
572566 hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
573567 echo m68k-hp-bsd4.4
574 exit 0 ;;
568 exit ;;
575569 9000/[34678]??:HP-UX:*:*)
576570 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
577571 case "${UNAME_MACHINE}" in
633627 esac
634628 if [ ${HP_ARCH} = "hppa2.0w" ]
635629 then
636 # avoid double evaluation of $set_cc_for_build
637 test -n "$CC_FOR_BUILD" || eval $set_cc_for_build
638 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null
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
639643 then
640644 HP_ARCH="hppa2.0w"
641645 else
643647 fi
644648 fi
645649 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
646 exit 0 ;;
650 exit ;;
647651 ia64:HP-UX:*:*)
648652 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
649653 echo ia64-hp-hpux${HPUX_REV}
650 exit 0 ;;
654 exit ;;
651655 3050*:HI-UX:*:*)
652656 eval $set_cc_for_build
653657 sed 's/^ //' << EOF >$dummy.c
675679 exit (0);
676680 }
677681 EOF
678 $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0
682 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
683 { echo "$SYSTEM_NAME"; exit; }
679684 echo unknown-hitachi-hiuxwe2
680 exit 0 ;;
685 exit ;;
681686 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
682687 echo hppa1.1-hp-bsd
683 exit 0 ;;
688 exit ;;
684689 9000/8??:4.3bsd:*:*)
685690 echo hppa1.0-hp-bsd
686 exit 0 ;;
691 exit ;;
687692 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
688693 echo hppa1.0-hp-mpeix
689 exit 0 ;;
694 exit ;;
690695 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
691696 echo hppa1.1-hp-osf
692 exit 0 ;;
697 exit ;;
693698 hp8??:OSF1:*:*)
694699 echo hppa1.0-hp-osf
695 exit 0 ;;
700 exit ;;
696701 i*86:OSF1:*:*)
697702 if [ -x /usr/sbin/sysversion ] ; then
698703 echo ${UNAME_MACHINE}-unknown-osf1mk
699704 else
700705 echo ${UNAME_MACHINE}-unknown-osf1
701706 fi
702 exit 0 ;;
707 exit ;;
703708 parisc*:Lites*:*:*)
704709 echo hppa1.1-hp-lites
705 exit 0 ;;
710 exit ;;
706711 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
707712 echo c1-convex-bsd
708 exit 0 ;;
713 exit ;;
709714 C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
710715 if getsysinfo -f scalar_acc
711716 then echo c32-convex-bsd
712717 else echo c2-convex-bsd
713718 fi
714 exit 0 ;;
719 exit ;;
715720 C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
716721 echo c34-convex-bsd
717 exit 0 ;;
722 exit ;;
718723 C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
719724 echo c38-convex-bsd
720 exit 0 ;;
725 exit ;;
721726 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
722727 echo c4-convex-bsd
723 exit 0 ;;
728 exit ;;
724729 CRAY*Y-MP:*:*:*)
725730 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
726 exit 0 ;;
731 exit ;;
727732 CRAY*[A-Z]90:*:*:*)
728733 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
729734 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
730735 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
731736 -e 's/\.[^.]*$/.X/'
732 exit 0 ;;
737 exit ;;
733738 CRAY*TS:*:*:*)
734739 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
735 exit 0 ;;
740 exit ;;
736741 CRAY*T3E:*:*:*)
737742 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
738 exit 0 ;;
743 exit ;;
739744 CRAY*SV1:*:*:*)
740745 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
741 exit 0 ;;
746 exit ;;
742747 *:UNICOS/mp:*:*)
743 echo nv1-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
744 exit 0 ;;
748 echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
749 exit ;;
745750 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
746751 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
747752 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
748753 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
749754 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
750 exit 0 ;;
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 ;;
751761 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
752762 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
753 exit 0 ;;
763 exit ;;
754764 sparc*:BSD/OS:*:*)
755765 echo sparc-unknown-bsdi${UNAME_RELEASE}
756 exit 0 ;;
766 exit ;;
757767 *:BSD/OS:*:*)
758768 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
759 exit 0 ;;
760 *:FreeBSD:*:*|*:GNU/FreeBSD:*:*)
761 # Determine whether the default compiler uses glibc.
762 eval $set_cc_for_build
763 sed 's/^ //' << EOF >$dummy.c
764 #include <features.h>
765 #if __GLIBC__ >= 2
766 LIBC=gnu
767 #else
768 LIBC=
769 #endif
770 EOF
771 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
772 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC}
773 exit 0 ;;
769 exit ;;
770 *:FreeBSD:*:*)
771 case ${UNAME_MACHINE} in
772 pc98)
773 echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
774 amd64)
775 echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
776 *)
777 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
778 esac
779 exit ;;
774780 i*:CYGWIN*:*)
775781 echo ${UNAME_MACHINE}-pc-cygwin
776 exit 0 ;;
777 i*:MINGW*:*)
782 exit ;;
783 *:MINGW*:*)
778784 echo ${UNAME_MACHINE}-pc-mingw32
779 exit 0 ;;
785 exit ;;
786 i*:windows32*:*)
787 # uname -m includes "-pc" on this system.
788 echo ${UNAME_MACHINE}-mingw32
789 exit ;;
780790 i*:PW*:*)
781791 echo ${UNAME_MACHINE}-pc-pw32
782 exit 0 ;;
783 x86:Interix*:[34]*)
784 echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
785 exit 0 ;;
792 exit ;;
793 *:Interix*:[3456]*)
794 case ${UNAME_MACHINE} in
795 x86)
796 echo i586-pc-interix${UNAME_RELEASE}
797 exit ;;
798 EM64T | authenticamd)
799 echo x86_64-unknown-interix${UNAME_RELEASE}
800 exit ;;
801 esac ;;
786802 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
787803 echo i${UNAME_MACHINE}-pc-mks
788 exit 0 ;;
804 exit ;;
789805 i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
790806 # How do we know it's Interix rather than the generic POSIX subsystem?
791807 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
792808 # UNAME_MACHINE based on the output of uname instead of i386?
793809 echo i586-pc-interix
794 exit 0 ;;
810 exit ;;
795811 i*:UWIN*:*)
796812 echo ${UNAME_MACHINE}-pc-uwin
797 exit 0 ;;
813 exit ;;
814 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
815 echo x86_64-unknown-cygwin
816 exit ;;
798817 p*:CYGWIN*:*)
799818 echo powerpcle-unknown-cygwin
800 exit 0 ;;
819 exit ;;
801820 prep*:SunOS:5.*:*)
802821 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
803 exit 0 ;;
822 exit ;;
804823 *:GNU:*:*)
824 # the GNU system
805825 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
806 exit 0 ;;
826 exit ;;
827 *:GNU/*:*:*)
828 # other systems with GNU libc and userland
829 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
830 exit ;;
807831 i*86:Minix:*:*)
808832 echo ${UNAME_MACHINE}-pc-minix
809 exit 0 ;;
833 exit ;;
810834 arm*:Linux:*:*)
811835 echo ${UNAME_MACHINE}-unknown-linux-gnu
812 exit 0 ;;
836 exit ;;
837 avr32*:Linux:*:*)
838 echo ${UNAME_MACHINE}-unknown-linux-gnu
839 exit ;;
813840 cris:Linux:*:*)
814841 echo cris-axis-linux-gnu
815 exit 0 ;;
842 exit ;;
843 crisv32:Linux:*:*)
844 echo crisv32-axis-linux-gnu
845 exit ;;
846 frv:Linux:*:*)
847 echo frv-unknown-linux-gnu
848 exit ;;
816849 ia64:Linux:*:*)
817 echo ${UNAME_MACHINE}-${VENDOR:-unknown}-linux-gnu
818 exit 0 ;;
850 echo ${UNAME_MACHINE}-unknown-linux-gnu
851 exit ;;
852 m32r*:Linux:*:*)
853 echo ${UNAME_MACHINE}-unknown-linux-gnu
854 exit ;;
819855 m68*:Linux:*:*)
820856 echo ${UNAME_MACHINE}-unknown-linux-gnu
821 exit 0 ;;
857 exit ;;
822858 mips:Linux:*:*)
823859 eval $set_cc_for_build
824860 sed 's/^ //' << EOF >$dummy.c
835871 #endif
836872 #endif
837873 EOF
838 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
839 test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
874 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
875 /^CPU/{
876 s: ::g
877 p
878 }'`"
879 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
840880 ;;
841881 mips64:Linux:*:*)
842882 eval $set_cc_for_build
854894 #endif
855895 #endif
856896 EOF
857 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
858 test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
897 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
898 /^CPU/{
899 s: ::g
900 p
901 }'`"
902 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
859903 ;;
904 or32:Linux:*:*)
905 echo or32-unknown-linux-gnu
906 exit ;;
860907 ppc:Linux:*:*)
861 echo powerpc-${VENDOR:-unknown}-linux-gnu
862 exit 0 ;;
908 echo powerpc-unknown-linux-gnu
909 exit ;;
863910 ppc64:Linux:*:*)
864 echo powerpc64-${VENDOR:-unknown}-linux-gnu
865 exit 0 ;;
911 echo powerpc64-unknown-linux-gnu
912 exit ;;
866913 alpha:Linux:*:*)
867914 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
868915 EV5) UNAME_MACHINE=alphaev5 ;;
876923 objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
877924 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
878925 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
879 exit 0 ;;
926 exit ;;
880927 parisc:Linux:*:* | hppa:Linux:*:*)
881928 # Look for CPU level
882929 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
884931 PA8*) echo hppa2.0-unknown-linux-gnu ;;
885932 *) echo hppa-unknown-linux-gnu ;;
886933 esac
887 exit 0 ;;
934 exit ;;
888935 parisc64:Linux:*:* | hppa64:Linux:*:*)
889936 echo hppa64-unknown-linux-gnu
890 exit 0 ;;
937 exit ;;
891938 s390:Linux:*:* | s390x:Linux:*:*)
892 echo ${UNAME_MACHINE}-${VENDOR:-ibm}-linux-gnu
893 exit 0 ;;
939 echo ${UNAME_MACHINE}-ibm-linux
940 exit ;;
894941 sh64*:Linux:*:*)
895942 echo ${UNAME_MACHINE}-unknown-linux-gnu
896 exit 0 ;;
943 exit ;;
897944 sh*:Linux:*:*)
898945 echo ${UNAME_MACHINE}-unknown-linux-gnu
899 exit 0 ;;
946 exit ;;
900947 sparc:Linux:*:* | sparc64:Linux:*:*)
901948 echo ${UNAME_MACHINE}-unknown-linux-gnu
902 exit 0 ;;
949 exit ;;
950 vax:Linux:*:*)
951 echo ${UNAME_MACHINE}-dec-linux-gnu
952 exit ;;
903953 x86_64:Linux:*:*)
904 echo x86_64-${VENDOR:-unknown}-linux-gnu
905 exit 0 ;;
954 echo x86_64-unknown-linux-gnu
955 exit ;;
956 xtensa:Linux:*:*)
957 echo xtensa-unknown-linux-gnu
958 exit ;;
906959 i*86:Linux:*:*)
907960 # The BFD linker knows what the default object file format is, so
908961 # first see if it will tell us. cd to the root directory to prevent
920973 ;;
921974 a.out-i386-linux)
922975 echo "${UNAME_MACHINE}-pc-linux-gnuaout"
923 exit 0 ;;
976 exit ;;
924977 coff-i386)
925978 echo "${UNAME_MACHINE}-pc-linux-gnucoff"
926 exit 0 ;;
979 exit ;;
927980 "")
928981 # Either a pre-BFD a.out linker (linux-gnuoldld) or
929982 # one that does not give us useful --help.
930983 echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
931 exit 0 ;;
984 exit ;;
932985 esac
933986 # Determine whether the default compiler is a.out or elf
934987 eval $set_cc_for_build
945998 LIBC=gnulibc1
946999 # endif
9471000 #else
948 #ifdef __INTEL_COMPILER
1001 #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
9491002 LIBC=gnu
9501003 #else
9511004 LIBC=gnuaout
9521005 #endif
9531006 #endif
1007 #ifdef __dietlibc__
1008 LIBC=dietlibc
1009 #endif
9541010 EOF
955 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
956 test x"${LIBC}" != x && echo "${UNAME_MACHINE}-${VENDOR:-pc}-linux-${LIBC}" && exit 0
957 test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0
1011 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
1012 /^LIBC/{
1013 s: ::g
1014 p
1015 }'`"
1016 test x"${LIBC}" != x && {
1017 echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
1018 exit
1019 }
1020 test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
9581021 ;;
9591022 i*86:DYNIX/ptx:4*:*)
9601023 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
9611024 # earlier versions are messed up and put the nodename in both
9621025 # sysname and nodename.
9631026 echo i386-sequent-sysv4
964 exit 0 ;;
1027 exit ;;
9651028 i*86:UNIX_SV:4.2MP:2.*)
9661029 # Unixware is an offshoot of SVR4, but it has its own version
9671030 # number series starting with 2...
9691032 # I just have to hope. -- rms.
9701033 # Use sysv4.2uw... so that sysv4* matches it.
9711034 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
972 exit 0 ;;
1035 exit ;;
9731036 i*86:OS/2:*:*)
9741037 # If we were able to find `uname', then EMX Unix compatibility
9751038 # is probably installed.
9761039 echo ${UNAME_MACHINE}-pc-os2-emx
977 exit 0 ;;
1040 exit ;;
9781041 i*86:XTS-300:*:STOP)
9791042 echo ${UNAME_MACHINE}-unknown-stop
980 exit 0 ;;
1043 exit ;;
9811044 i*86:atheos:*:*)
9821045 echo ${UNAME_MACHINE}-unknown-atheos
983 exit 0 ;;
1046 exit ;;
1047 i*86:syllable:*:*)
1048 echo ${UNAME_MACHINE}-pc-syllable
1049 exit ;;
9841050 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
9851051 echo i386-unknown-lynxos${UNAME_RELEASE}
986 exit 0 ;;
1052 exit ;;
9871053 i*86:*DOS:*:*)
9881054 echo ${UNAME_MACHINE}-pc-msdosdjgpp
989 exit 0 ;;
1055 exit ;;
9901056 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
9911057 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
9921058 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
9941060 else
9951061 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
9961062 fi
997 exit 0 ;;
998 i*86:*:5:[78]*)
1063 exit ;;
1064 i*86:*:5:[678]*)
1065 # UnixWare 7.x, OpenUNIX and OpenServer 6.
9991066 case `/bin/uname -X | grep "^Machine"` in
10001067 *486*) UNAME_MACHINE=i486 ;;
10011068 *Pentium) UNAME_MACHINE=i586 ;;
10021069 *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
10031070 esac
10041071 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1005 exit 0 ;;
1072 exit ;;
10061073 i*86:*:3.2:*)
10071074 if test -f /usr/options/cb.name; then
10081075 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
10201087 else
10211088 echo ${UNAME_MACHINE}-pc-sysv32
10221089 fi
1023 exit 0 ;;
1090 exit ;;
10241091 pc:*:*:*)
10251092 # Left here for compatibility:
10261093 # uname -m prints for DJGPP always 'pc', but it prints nothing about
10271094 # the processor, so we play safe by assuming i386.
10281095 echo i386-pc-msdosdjgpp
1029 exit 0 ;;
1096 exit ;;
10301097 Intel:Mach:3*:*)
10311098 echo i386-pc-mach3
1032 exit 0 ;;
1099 exit ;;
10331100 paragon:*:*:*)
10341101 echo i860-intel-osf1
1035 exit 0 ;;
1102 exit ;;
10361103 i860:*:4.*:*) # i860-SVR4
10371104 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
10381105 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
10391106 else # Add other i860-SVR4 vendors below as they are discovered.
10401107 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
10411108 fi
1042 exit 0 ;;
1109 exit ;;
10431110 mini*:CTIX:SYS*5:*)
10441111 # "miniframe"
10451112 echo m68010-convergent-sysv
1046 exit 0 ;;
1113 exit ;;
10471114 mc68k:UNIX:SYSTEM5:3.51m)
10481115 echo m68k-convergent-sysv
1049 exit 0 ;;
1116 exit ;;
10501117 M680?0:D-NIX:5.3:*)
10511118 echo m68k-diab-dnix
1052 exit 0 ;;
1053 M68*:*:R3V[567]*:*)
1054 test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
1055 3[34]??:*: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)
1119 exit ;;
1120 M68*:*:R3V[5678]*:*)
1121 test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
1122 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)
10561123 OS_REL=''
10571124 test -r /etc/.relid \
10581125 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
10591126 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1060 && echo i486-ncr-sysv4.3${OS_REL} && exit 0
1127 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
10611128 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1062 && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;;
1129 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
10631130 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
10641131 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1065 && echo i486-ncr-sysv4 && exit 0 ;;
1132 && { echo i486-ncr-sysv4; exit; } ;;
10661133 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
10671134 echo m68k-unknown-lynxos${UNAME_RELEASE}
1068 exit 0 ;;
1135 exit ;;
10691136 mc68030:UNIX_System_V:4.*:*)
10701137 echo m68k-atari-sysv4
1071 exit 0 ;;
1138 exit ;;
10721139 TSUNAMI:LynxOS:2.*:*)
10731140 echo sparc-unknown-lynxos${UNAME_RELEASE}
1074 exit 0 ;;
1141 exit ;;
10751142 rs6000:LynxOS:2.*:*)
10761143 echo rs6000-unknown-lynxos${UNAME_RELEASE}
1077 exit 0 ;;
1144 exit ;;
10781145 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
10791146 echo powerpc-unknown-lynxos${UNAME_RELEASE}
1080 exit 0 ;;
1147 exit ;;
10811148 SM[BE]S:UNIX_SV:*:*)
10821149 echo mips-dde-sysv${UNAME_RELEASE}
1083 exit 0 ;;
1150 exit ;;
10841151 RM*:ReliantUNIX-*:*:*)
10851152 echo mips-sni-sysv4
1086 exit 0 ;;
1153 exit ;;
10871154 RM*:SINIX-*:*:*)
10881155 echo mips-sni-sysv4
1089 exit 0 ;;
1156 exit ;;
10901157 *:SINIX-*:*:*)
10911158 if uname -p 2>/dev/null >/dev/null ; then
10921159 UNAME_MACHINE=`(uname -p) 2>/dev/null`
10941161 else
10951162 echo ns32k-sni-sysv
10961163 fi
1097 exit 0 ;;
1164 exit ;;
10981165 PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
10991166 # says <Richard.M.Bartel@ccMail.Census.GOV>
11001167 echo i586-unisys-sysv4
1101 exit 0 ;;
1168 exit ;;
11021169 *:UNIX_System_V:4*:FTX*)
11031170 # From Gerald Hewes <hewes@openmarket.com>.
11041171 # How about differentiating between stratus architectures? -djm
11051172 echo hppa1.1-stratus-sysv4
1106 exit 0 ;;
1173 exit ;;
11071174 *:*:*:FTX*)
11081175 # From seanf@swdc.stratus.com.
11091176 echo i860-stratus-sysv4
1110 exit 0 ;;
1177 exit ;;
1178 i*86:VOS:*:*)
1179 # From Paul.Green@stratus.com.
1180 echo ${UNAME_MACHINE}-stratus-vos
1181 exit ;;
11111182 *:VOS:*:*)
11121183 # From Paul.Green@stratus.com.
11131184 echo hppa1.1-stratus-vos
1114 exit 0 ;;
1185 exit ;;
11151186 mc68*:A/UX:*:*)
11161187 echo m68k-apple-aux${UNAME_RELEASE}
1117 exit 0 ;;
1188 exit ;;
11181189 news*:NEWS-OS:6*:*)
11191190 echo mips-sony-newsos6
1120 exit 0 ;;
1191 exit ;;
11211192 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
11221193 if [ -d /usr/nec ]; then
11231194 echo mips-nec-sysv${UNAME_RELEASE}
11241195 else
11251196 echo mips-unknown-sysv${UNAME_RELEASE}
11261197 fi
1127 exit 0 ;;
1198 exit ;;
11281199 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
11291200 echo powerpc-be-beos
1130 exit 0 ;;
1201 exit ;;
11311202 BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
11321203 echo powerpc-apple-beos
1133 exit 0 ;;
1204 exit ;;
11341205 BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
11351206 echo i586-pc-beos
1136 exit 0 ;;
1207 exit ;;
11371208 SX-4:SUPER-UX:*:*)
11381209 echo sx4-nec-superux${UNAME_RELEASE}
1139 exit 0 ;;
1210 exit ;;
11401211 SX-5:SUPER-UX:*:*)
11411212 echo sx5-nec-superux${UNAME_RELEASE}
1142 exit 0 ;;
1213 exit ;;
11431214 SX-6:SUPER-UX:*:*)
11441215 echo sx6-nec-superux${UNAME_RELEASE}
1145 exit 0 ;;
1216 exit ;;
1217 SX-7:SUPER-UX:*:*)
1218 echo sx7-nec-superux${UNAME_RELEASE}
1219 exit ;;
1220 SX-8:SUPER-UX:*:*)
1221 echo sx8-nec-superux${UNAME_RELEASE}
1222 exit ;;
1223 SX-8R:SUPER-UX:*:*)
1224 echo sx8r-nec-superux${UNAME_RELEASE}
1225 exit ;;
11461226 Power*:Rhapsody:*:*)
11471227 echo powerpc-apple-rhapsody${UNAME_RELEASE}
1148 exit 0 ;;
1228 exit ;;
11491229 *:Rhapsody:*:*)
11501230 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1151 exit 0 ;;
1231 exit ;;
11521232 *:Darwin:*:*)
1153 case `uname -p` in
1154 *86) UNAME_PROCESSOR=i686 ;;
1155 powerpc) UNAME_PROCESSOR=powerpc ;;
1233 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1234 case $UNAME_PROCESSOR in
1235 unknown) UNAME_PROCESSOR=powerpc ;;
11561236 esac
11571237 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1158 exit 0 ;;
1238 exit ;;
11591239 *:procnto*:*:* | *:QNX:[0123456789]*:*)
11601240 UNAME_PROCESSOR=`uname -p`
11611241 if test "$UNAME_PROCESSOR" = "x86"; then
11631243 UNAME_MACHINE=pc
11641244 fi
11651245 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1166 exit 0 ;;
1246 exit ;;
11671247 *:QNX:*:4*)
11681248 echo i386-pc-qnx
1169 exit 0 ;;
1170 NSR-[DGKLNPTVW]:NONSTOP_KERNEL:*:*)
1249 exit ;;
1250 NSE-?:NONSTOP_KERNEL:*:*)
1251 echo nse-tandem-nsk${UNAME_RELEASE}
1252 exit ;;
1253 NSR-?:NONSTOP_KERNEL:*:*)
11711254 echo nsr-tandem-nsk${UNAME_RELEASE}
1172 exit 0 ;;
1255 exit ;;
11731256 *:NonStop-UX:*:*)
11741257 echo mips-compaq-nonstopux
1175 exit 0 ;;
1258 exit ;;
11761259 BS2000:POSIX*:*:*)
11771260 echo bs2000-siemens-sysv
1178 exit 0 ;;
1261 exit ;;
11791262 DS/*:UNIX_System_V:*:*)
11801263 echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1181 exit 0 ;;
1264 exit ;;
11821265 *:Plan9:*:*)
11831266 # "uname -m" is not consistent, so use $cputype instead. 386
11841267 # is converted to i386 for consistency with other x86
11891272 UNAME_MACHINE="$cputype"
11901273 fi
11911274 echo ${UNAME_MACHINE}-unknown-plan9
1192 exit 0 ;;
1275 exit ;;
11931276 *:TOPS-10:*:*)
11941277 echo pdp10-unknown-tops10
1195 exit 0 ;;
1278 exit ;;
11961279 *:TENEX:*:*)
11971280 echo pdp10-unknown-tenex
1198 exit 0 ;;
1281 exit ;;
11991282 KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
12001283 echo pdp10-dec-tops20
1201 exit 0 ;;
1284 exit ;;
12021285 XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
12031286 echo pdp10-xkl-tops20
1204 exit 0 ;;
1287 exit ;;
12051288 *:TOPS-20:*:*)
12061289 echo pdp10-unknown-tops20
1207 exit 0 ;;
1290 exit ;;
12081291 *:ITS:*:*)
12091292 echo pdp10-unknown-its
1210 exit 0 ;;
1293 exit ;;
12111294 SEI:*:*:SEIUX)
12121295 echo mips-sei-seiux${UNAME_RELEASE}
1213 exit 0 ;;
1296 exit ;;
1297 *:DragonFly:*:*)
1298 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1299 exit ;;
1300 *:*VMS:*:*)
1301 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1302 case "${UNAME_MACHINE}" in
1303 A*) echo alpha-dec-vms ; exit ;;
1304 I*) echo ia64-dec-vms ; exit ;;
1305 V*) echo vax-dec-vms ; exit ;;
1306 esac ;;
1307 *:XENIX:*:SysV)
1308 echo i386-pc-xenix
1309 exit ;;
1310 i*86:skyos:*:*)
1311 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
1312 exit ;;
1313 i*86:rdos:*:*)
1314 echo ${UNAME_MACHINE}-pc-rdos
1315 exit ;;
12141316 esac
12151317
12161318 #echo '(No uname command or uname output not recognized.)' 1>&2
12421344 #endif
12431345
12441346 #if defined (__arm) && defined (__acorn) && defined (__unix)
1245 printf ("arm-acorn-riscix"); exit (0);
1347 printf ("arm-acorn-riscix\n"); exit (0);
12461348 #endif
12471349
12481350 #if defined (hp300) && !defined (hpux)
13311433 }
13321434 EOF
13331435
1334 $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0
1436 $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
1437 { echo "$SYSTEM_NAME"; exit; }
13351438
13361439 # Apollos put the system type in the environment.
13371440
1338 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; }
1441 test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
13391442
13401443 # Convex versions that predate uname can use getsysinfo(1)
13411444
13441447 case `getsysinfo -f cpu_type` in
13451448 c1*)
13461449 echo c1-convex-bsd
1347 exit 0 ;;
1450 exit ;;
13481451 c2*)
13491452 if getsysinfo -f scalar_acc
13501453 then echo c32-convex-bsd
13511454 else echo c2-convex-bsd
13521455 fi
1353 exit 0 ;;
1456 exit ;;
13541457 c34*)
13551458 echo c34-convex-bsd
1356 exit 0 ;;
1459 exit ;;
13571460 c38*)
13581461 echo c38-convex-bsd
1359 exit 0 ;;
1462 exit ;;
13601463 c4*)
13611464 echo c4-convex-bsd
1362 exit 0 ;;
1465 exit ;;
13631466 esac
13641467 fi
13651468
13701473 the operating system you are using. It is advised that you
13711474 download the most up to date version of the config scripts from
13721475
1373 ftp://ftp.gnu.org/pub/gnu/config/
1476 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess
1477 and
1478 http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub
13741479
13751480 If the version you run ($0) is already up to date, please
13761481 send the following data and any information you think might be
00 #! /bin/sh
11 # Configuration validation subroutine script.
22 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 # 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4
5 timestamp='2003-06-18'
3 # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
4 # Inc.
5
6 timestamp='2007-06-28'
67
78 # This file is (in principle) common to ALL GNU software.
89 # The presence of a machine in this file suggests that SOME GNU software
2021 #
2122 # You should have received a copy of the GNU General Public License
2223 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place - Suite 330,
24 # Boston, MA 02111-1307, USA.
25
24 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
25 # 02110-1301, USA.
26 #
2627 # As a special exception to the GNU General Public License, if you
2728 # distribute this file as part of a program that contains a
2829 # configuration script generated by Autoconf, you may include it under
2930 # the same distribution terms that you use for the rest of that program.
31
3032
3133 # Please send patches to <config-patches@gnu.org>. Submit a context
3234 # diff and a properly formatted ChangeLog entry.
6971 version="\
7072 GNU config.sub ($timestamp)
7173
72 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
74 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
7375 Free Software Foundation, Inc.
7476
7577 This is free software; see the source for copying conditions. There is NO
8284 while test $# -gt 0 ; do
8385 case $1 in
8486 --time-stamp | --time* | -t )
85 echo "$timestamp" ; exit 0 ;;
87 echo "$timestamp" ; exit ;;
8688 --version | -v )
87 echo "$version" ; exit 0 ;;
89 echo "$version" ; exit ;;
8890 --help | --h* | -h )
89 echo "$usage"; exit 0 ;;
91 echo "$usage"; exit ;;
9092 -- ) # Stop option processing
9193 shift; break ;;
9294 - ) # Use stdin as input.
98100 *local*)
99101 # First pass through any local machine types.
100102 echo $1
101 exit 0;;
103 exit ;;
102104
103105 * )
104106 break ;;
117119 # Here we must recognize all the valid KERNEL-OS combinations.
118120 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
119121 case $maybe_os in
120 nto-qnx* | linux-gnu* | freebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
122 nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
123 uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
124 storm-chaos* | os2-emx* | rtmk-nova*)
121125 os=-$maybe_os
122126 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
123127 ;;
143147 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
144148 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
145149 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
146 -apple | -axis)
150 -apple | -axis | -knuth | -cray)
147151 os=
148152 basic_machine=$1
149153 ;;
168172 -hiux*)
169173 os=-hiuxwe2
170174 ;;
175 -sco6)
176 os=-sco5v6
177 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
178 ;;
171179 -sco5)
172180 os=-sco3.2v5
173181 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
181189 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
182190 ;;
183191 -sco3.2v[4-9]*)
192 # Don't forget version if it is 3.2v4 or newer.
193 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
194 ;;
195 -sco5v6*)
184196 # Don't forget version if it is 3.2v4 or newer.
185197 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
186198 ;;
227239 | a29k \
228240 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
229241 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
230 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
242 | am33_2.0 \
243 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
244 | bfin \
231245 | c4x | clipper \
232246 | d10v | d30v | dlx | dsp16xx \
233 | fr30 | frv \
247 | fido | fr30 | frv \
234248 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
235249 | i370 | i860 | i960 | ia64 \
236 | ip2k \
237 | m32r | m68000 | m68k | m88k | mcore \
250 | ip2k | iq2000 \
251 | m32c | m32r | m32rle | m68000 | m68k | m88k \
252 | maxq | mb | microblaze | mcore | mep \
238253 | mips | mipsbe | mipseb | mipsel | mipsle \
239254 | mips16 \
240255 | mips64 | mips64el \
243258 | mips64vr4100 | mips64vr4100el \
244259 | mips64vr4300 | mips64vr4300el \
245260 | mips64vr5000 | mips64vr5000el \
261 | mips64vr5900 | mips64vr5900el \
246262 | mipsisa32 | mipsisa32el \
247263 | mipsisa32r2 | mipsisa32r2el \
248264 | mipsisa64 | mipsisa64el \
265 | mipsisa64r2 | mipsisa64r2el \
249266 | mipsisa64sb1 | mipsisa64sb1el \
250267 | mipsisa64sr71k | mipsisa64sr71kel \
251268 | mipstx39 | mipstx39el \
252269 | mn10200 | mn10300 \
270 | mt \
253271 | msp430 \
272 | nios | nios2 \
254273 | ns16k | ns32k \
255 | openrisc | or32 \
274 | or32 \
256275 | pdp10 | pdp11 | pj | pjl \
257276 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
258277 | pyramid \
259 | s390 | s390x \
260 | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
278 | score \
279 | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
261280 | sh64 | sh64le \
262 | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \
263 | strongarm \
281 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
282 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
283 | spu | strongarm \
264284 | tahoe | thumb | tic4x | tic80 | tron \
265285 | v850 | v850e \
266286 | we32k \
267 | x86 | xscale | xstormy16 | xtensa \
287 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
268288 | z8k)
269289 basic_machine=$basic_machine-unknown
270290 ;;
274294 os=-none
275295 ;;
276296 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
297 ;;
298 ms1)
299 basic_machine=mt-unknown
277300 ;;
278301
279302 # We use `pc' rather than `unknown'
294317 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
295318 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
296319 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
297 | avr-* \
298 | bs2000-* \
320 | avr-* | avr32-* \
321 | bfin-* | bs2000-* \
299322 | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
300 | clipper-* | cydra-* \
323 | clipper-* | craynv-* | cydra-* \
301324 | d10v-* | d30v-* | dlx-* \
302325 | elxsi-* \
303 | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
326 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
304327 | h8300-* | h8500-* \
305328 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
306329 | i*86-* | i860-* | i960-* | ia64-* \
307 | ip2k-* \
308 | m32r-* \
330 | ip2k-* | iq2000-* \
331 | m32c-* | m32r-* | m32rle-* \
309332 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
310 | m88110-* | m88k-* | mcore-* \
333 | m88110-* | m88k-* | maxq-* | mcore-* \
311334 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
312335 | mips16-* \
313336 | mips64-* | mips64el-* \
316339 | mips64vr4100-* | mips64vr4100el-* \
317340 | mips64vr4300-* | mips64vr4300el-* \
318341 | mips64vr5000-* | mips64vr5000el-* \
342 | mips64vr5900-* | mips64vr5900el-* \
319343 | mipsisa32-* | mipsisa32el-* \
320344 | mipsisa32r2-* | mipsisa32r2el-* \
321345 | mipsisa64-* | mipsisa64el-* \
346 | mipsisa64r2-* | mipsisa64r2el-* \
322347 | mipsisa64sb1-* | mipsisa64sb1el-* \
323348 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
324349 | mipstx39-* | mipstx39el-* \
350 | mmix-* \
351 | mt-* \
325352 | msp430-* \
326 | none-* | np1-* | nv1-* | ns16k-* | ns32k-* \
353 | nios-* | nios2-* \
354 | none-* | np1-* | ns16k-* | ns32k-* \
327355 | orion-* \
328356 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
329357 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
330358 | pyramid-* \
331359 | romp-* | rs6000-* \
332 | s390-* | s390x-* \
333 | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \
360 | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
334361 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
335 | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
336 | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
362 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
363 | sparclite-* \
364 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
337365 | tahoe-* | thumb-* \
338366 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
339367 | tron-* \
340368 | v850-* | v850e-* | vax-* \
341369 | we32k-* \
342 | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
343 | xtensa-* \
370 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
371 | xstormy16-* | xtensa-* \
344372 | ymp-* \
345373 | z8k-*)
346374 ;;
360388 basic_machine=a29k-amd
361389 os=-udi
362390 ;;
391 abacus)
392 basic_machine=abacus-unknown
393 ;;
363394 adobe68k)
364395 basic_machine=m68010-adobe
365396 os=-scout
377408 amd64)
378409 basic_machine=x86_64-pc
379410 ;;
411 amd64-*)
412 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
413 ;;
380414 amdahl)
381415 basic_machine=580-amdahl
382416 os=-sysv
436470 basic_machine=j90-cray
437471 os=-unicos
438472 ;;
473 craynv)
474 basic_machine=craynv-cray
475 os=-unicosmp
476 ;;
477 cr16)
478 basic_machine=cr16-unknown
479 os=-elf
480 ;;
439481 crds | unos)
440482 basic_machine=m68k-crds
441483 ;;
484 crisv32 | crisv32-* | etraxfs*)
485 basic_machine=crisv32-axis
486 ;;
442487 cris | cris-* | etrax*)
443488 basic_machine=cris-axis
489 ;;
490 crx)
491 basic_machine=crx-unknown
492 os=-elf
444493 ;;
445494 da30 | da30-*)
446495 basic_machine=m68k-da30
463512 delta88)
464513 basic_machine=m88k-motorola
465514 os=-sysv3
515 ;;
516 djgpp)
517 basic_machine=i586-pc
518 os=-msdosdjgpp
466519 ;;
467520 dpx20 | dpx20-*)
468521 basic_machine=rs6000-bull
629682 basic_machine=i386-pc
630683 os=-mingw32
631684 ;;
685 mingw32ce)
686 basic_machine=arm-unknown
687 os=-mingw32ce
688 ;;
632689 miniframe)
633690 basic_machine=m68000-convergent
634691 ;;
642699 mips3*)
643700 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
644701 ;;
645 mmix*)
646 basic_machine=mmix-knuth
647 os=-mmixware
648 ;;
649702 monitor)
650703 basic_machine=m68k-rom68k
651704 os=-coff
657710 msdos)
658711 basic_machine=i386-pc
659712 os=-msdos
713 ;;
714 ms1-*)
715 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
660716 ;;
661717 mvs)
662718 basic_machine=i370-ibm
726782 np1)
727783 basic_machine=np1-gould
728784 ;;
729 nv1)
730 basic_machine=nv1-cray
731 os=-unicosmp
732 ;;
733785 nsr-tandem)
734786 basic_machine=nsr-tandem
735787 ;;
737789 basic_machine=hppa1.1-oki
738790 os=-proelf
739791 ;;
740 or32 | or32-*)
792 openrisc | openrisc-*)
741793 basic_machine=or32-unknown
742 os=-coff
794 ;;
795 os400)
796 basic_machine=powerpc-ibm
797 os=-os400
743798 ;;
744799 OSE68000 | ose68000)
745800 basic_machine=m68000-ericsson
766821 pc532 | pc532-*)
767822 basic_machine=ns32k-pc532
768823 ;;
824 pc98)
825 basic_machine=i386-pc
826 ;;
827 pc98-*)
828 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
829 ;;
769830 pentium | p5 | k5 | k6 | nexgen | viac3)
770831 basic_machine=i586-pc
771832 ;;
822883 basic_machine=i586-unknown
823884 os=-pw32
824885 ;;
886 rdos)
887 basic_machine=i386-pc
888 os=-rdos
889 ;;
825890 rom68k)
826891 basic_machine=m68k-rom68k
827892 os=-coff
832897 rtpc | rtpc-*)
833898 basic_machine=romp-ibm
834899 ;;
900 s390 | s390-*)
901 basic_machine=s390-ibm
902 ;;
903 s390x | s390x-*)
904 basic_machine=s390x-ibm
905 ;;
835906 sa29200)
836907 basic_machine=a29k-amd
837908 os=-udi
842913 sb1el)
843914 basic_machine=mipsisa64sb1el-unknown
844915 ;;
916 sde)
917 basic_machine=mipsisa32-sde
918 os=-elf
919 ;;
845920 sei)
846921 basic_machine=mips-sei
847922 os=-seiux
853928 basic_machine=sh-hitachi
854929 os=-hms
855930 ;;
931 sh5el)
932 basic_machine=sh5le-unknown
933 ;;
856934 sh64)
857935 basic_machine=sh64-unknown
858936 ;;
9551033 tower | tower-32)
9561034 basic_machine=m68k-ncr
9571035 ;;
1036 tpf)
1037 basic_machine=s390x-ibm
1038 os=-tpf
1039 ;;
9581040 udi29k)
9591041 basic_machine=a29k-amd
9601042 os=-udi
9971079 w89k-*)
9981080 basic_machine=hppa1.1-winbond
9991081 os=-proelf
1082 ;;
1083 xbox)
1084 basic_machine=i686-pc
1085 os=-mingw32
10001086 ;;
10011087 xps | xps100)
10021088 basic_machine=xps100-honeywell
10281114 romp)
10291115 basic_machine=romp-ibm
10301116 ;;
1117 mmix)
1118 basic_machine=mmix-knuth
1119 ;;
10311120 rs6000)
10321121 basic_machine=rs6000-ibm
10331122 ;;
10441133 we32k)
10451134 basic_machine=we32k-att
10461135 ;;
1047 sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
1136 sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
10481137 basic_machine=sh-unknown
10491138 ;;
1050 sh64)
1051 basic_machine=sh64-unknown
1052 ;;
1053 sparc | sparcv8 | sparcv9 | sparcv9b)
1139 sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
10541140 basic_machine=sparc-sun
10551141 ;;
10561142 cydra)
11231209 | -aos* \
11241210 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
11251211 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1126 | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
1127 | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1212 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1213 | -openbsd* | -solidbsd* \
1214 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1215 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
11281216 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
11291217 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
11301218 | -chorusos* | -chorusrdb* \
11311219 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1132 | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
1220 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1221 | -uxpv* | -beos* | -mpeix* | -udk* \
11331222 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
11341223 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
11351224 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
11361225 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
11371226 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1138 | -powermax* | -dnix* | -nx6 | -nx7 | -sei*)
1227 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1228 | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
11391229 # Remember, each alternative MUST END IN *, to match a version number.
11401230 ;;
11411231 -qnx*)
11531243 os=`echo $os | sed -e 's|nto|nto-qnx|'`
11541244 ;;
11551245 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1156 | -windows* | -osx | -abug | -netware* | -os9* | -beos* \
1246 | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
11571247 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
11581248 ;;
11591249 -mac*)
11601250 os=`echo $os | sed -e 's|mac|macos|'`
11611251 ;;
1252 -linux-dietlibc)
1253 os=-linux-dietlibc
1254 ;;
11621255 -linux*)
11631256 os=`echo $os | sed -e 's|linux|linux-gnu|'`
11641257 ;;
11711264 -opened*)
11721265 os=-openedition
11731266 ;;
1267 -os400*)
1268 os=-os400
1269 ;;
11741270 -wince*)
11751271 os=-wince
11761272 ;;
11911287 ;;
11921288 -atheos*)
11931289 os=-atheos
1290 ;;
1291 -syllable*)
1292 os=-syllable
11941293 ;;
11951294 -386bsd)
11961295 os=-bsd
12141313 -sinix*)
12151314 os=-sysv4
12161315 ;;
1316 -tpf*)
1317 os=-tpf
1318 ;;
12171319 -triton*)
12181320 os=-sysv3
12191321 ;;
12491351 ;;
12501352 -kaos*)
12511353 os=-kaos
1354 ;;
1355 -zvmoe)
1356 os=-zvmoe
12521357 ;;
12531358 -none)
12541359 ;;
12721377 # system, and we'll never get to this point.
12731378
12741379 case $basic_machine in
1380 score-*)
1381 os=-elf
1382 ;;
1383 spu-*)
1384 os=-elf
1385 ;;
12751386 *-acorn)
12761387 os=-riscix1.2
12771388 ;;
12811392 arm*-semi)
12821393 os=-aout
12831394 ;;
1284 c4x-* | tic4x-*)
1285 os=-coff
1395 c4x-* | tic4x-*)
1396 os=-coff
12861397 ;;
12871398 # This must come before the *-dec entry.
12881399 pdp10-*)
13091420 m68*-cisco)
13101421 os=-aout
13111422 ;;
1423 mep-*)
1424 os=-elf
1425 ;;
13121426 mips*-cisco)
13131427 os=-elf
13141428 ;;
13271441 *-be)
13281442 os=-beos
13291443 ;;
1444 *-haiku)
1445 os=-haiku
1446 ;;
13301447 *-ibm)
13311448 os=-aix
1449 ;;
1450 *-knuth)
1451 os=-mmixware
13321452 ;;
13331453 *-wec)
13341454 os=-proelf
14621582 -mvs* | -opened*)
14631583 vendor=ibm
14641584 ;;
1585 -os400*)
1586 vendor=ibm
1587 ;;
14651588 -ptx*)
14661589 vendor=sequent
14671590 ;;
1591 -tpf*)
1592 vendor=ibm
1593 ;;
14681594 -vxsim* | -vxworks* | -windiss*)
14691595 vendor=wrs
14701596 ;;
14891615 esac
14901616
14911617 echo $basic_machine$os
1492 exit 0
1618 exit
14931619
14941620 # Local variables:
14951621 # eval: (add-hook 'write-file-hooks 'time-stamp)
11741174 else
11751175 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
11761176 fi
1177 cd $ac_popdir
1177 cd "$ac_popdir"
11781178 done
11791179 fi
11801180
25862586 cat conftest.err >&5
25872587 echo "$as_me:$LINENO: \$? = $ac_status" >&5
25882588 (exit $ac_status); } &&
2589 { ac_try='test -z "$ac_c_werror_flag"
2590 || test ! -s conftest.err'
2589 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
25912590 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
25922591 (eval $ac_try) 2>&5
25932592 ac_status=$?
26452644 cat conftest.err >&5
26462645 echo "$as_me:$LINENO: \$? = $ac_status" >&5
26472646 (exit $ac_status); } &&
2648 { ac_try='test -z "$ac_c_werror_flag"
2649 || test ! -s conftest.err'
2647 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
26502648 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
26512649 (eval $ac_try) 2>&5
26522650 ac_status=$?
27622760 cat conftest.err >&5
27632761 echo "$as_me:$LINENO: \$? = $ac_status" >&5
27642762 (exit $ac_status); } &&
2765 { ac_try='test -z "$ac_c_werror_flag"
2766 || test ! -s conftest.err'
2763 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
27672764 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
27682765 (eval $ac_try) 2>&5
27692766 ac_status=$?
28172814 cat conftest.err >&5
28182815 echo "$as_me:$LINENO: \$? = $ac_status" >&5
28192816 (exit $ac_status); } &&
2820 { ac_try='test -z "$ac_c_werror_flag"
2821 || test ! -s conftest.err'
2817 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
28222818 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
28232819 (eval $ac_try) 2>&5
28242820 ac_status=$?
28632859 cat conftest.err >&5
28642860 echo "$as_me:$LINENO: \$? = $ac_status" >&5
28652861 (exit $ac_status); } &&
2866 { ac_try='test -z "$ac_c_werror_flag"
2867 || test ! -s conftest.err'
2862 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
28682863 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
28692864 (eval $ac_try) 2>&5
28702865 ac_status=$?
29082903 cat conftest.err >&5
29092904 echo "$as_me:$LINENO: \$? = $ac_status" >&5
29102905 (exit $ac_status); } &&
2911 { ac_try='test -z "$ac_c_werror_flag"
2912 || test ! -s conftest.err'
2906 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
29132907 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
29142908 (eval $ac_try) 2>&5
29152909 ac_status=$?
31613155 cat conftest.err >&5
31623156 echo "$as_me:$LINENO: \$? = $ac_status" >&5
31633157 (exit $ac_status); } &&
3164 { ac_try='test -z "$ac_c_werror_flag"
3165 || test ! -s conftest.err'
3158 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
31663159 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
31673160 (eval $ac_try) 2>&5
31683161 ac_status=$?
32163209 cat conftest.err >&5
32173210 echo "$as_me:$LINENO: \$? = $ac_status" >&5
32183211 (exit $ac_status); } &&
3219 { ac_try='test -z "$ac_c_werror_flag"
3220 || test ! -s conftest.err'
3212 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
32213213 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
32223214 (eval $ac_try) 2>&5
32233215 ac_status=$?
39103902 ;;
39113903 *-*-irix6*)
39123904 # Find out which ABI we are using.
3913 echo '#line 3914 "configure"' > conftest.$ac_ext
3905 echo '#line 3906 "configure"' > conftest.$ac_ext
39143906 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
39153907 (eval $ac_compile) 2>&5
39163908 ac_status=$?
40304022 cat conftest.err >&5
40314023 echo "$as_me:$LINENO: \$? = $ac_status" >&5
40324024 (exit $ac_status); } &&
4033 { ac_try='test -z "$ac_c_werror_flag"
4034 || test ! -s conftest.err'
4025 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
40354026 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
40364027 (eval $ac_try) 2>&5
40374028 ac_status=$?
43404331 cat conftest.err >&5
43414332 echo "$as_me:$LINENO: \$? = $ac_status" >&5
43424333 (exit $ac_status); } &&
4343 { ac_try='test -z "$ac_c_werror_flag"
4344 || test ! -s conftest.err'
4334 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
43454335 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
43464336 (eval $ac_try) 2>&5
43474337 ac_status=$?
45114501 cat conftest.err >&5
45124502 echo "$as_me:$LINENO: \$? = $ac_status" >&5
45134503 (exit $ac_status); } &&
4514 { ac_try='test -z "$ac_c_werror_flag"
4515 || test ! -s conftest.err'
4504 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
45164505 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
45174506 (eval $ac_try) 2>&5
45184507 ac_status=$?
45794568 cat conftest.err >&5
45804569 echo "$as_me:$LINENO: \$? = $ac_status" >&5
45814570 (exit $ac_status); } &&
4582 { ac_try='test -z "$ac_c_werror_flag"
4583 || test ! -s conftest.err'
4571 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
45844572 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
45854573 (eval $ac_try) 2>&5
45864574 ac_status=$?
48404828 cat conftest.err >&5
48414829 echo "$as_me:$LINENO: \$? = $ac_status" >&5
48424830 (exit $ac_status); } &&
4843 { ac_try='test -z "$ac_cxx_werror_flag"
4844 || test ! -s conftest.err'
4831 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
48454832 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
48464833 (eval $ac_try) 2>&5
48474834 ac_status=$?
48994886 cat conftest.err >&5
49004887 echo "$as_me:$LINENO: \$? = $ac_status" >&5
49014888 (exit $ac_status); } &&
4902 { ac_try='test -z "$ac_cxx_werror_flag"
4903 || test ! -s conftest.err'
4889 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
49044890 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
49054891 (eval $ac_try) 2>&5
49064892 ac_status=$?
49714957 cat conftest.err >&5
49724958 echo "$as_me:$LINENO: \$? = $ac_status" >&5
49734959 (exit $ac_status); } &&
4974 { ac_try='test -z "$ac_cxx_werror_flag"
4975 || test ! -s conftest.err'
4960 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
49764961 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
49774962 (eval $ac_try) 2>&5
49784963 ac_status=$?
50165001 cat conftest.err >&5
50175002 echo "$as_me:$LINENO: \$? = $ac_status" >&5
50185003 (exit $ac_status); } &&
5019 { ac_try='test -z "$ac_cxx_werror_flag"
5020 || test ! -s conftest.err'
5004 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
50215005 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
50225006 (eval $ac_try) 2>&5
50235007 ac_status=$?
54825466
54835467
54845468 # Provide some information about the compiler.
5485 echo "$as_me:5486:" \
5469 echo "$as_me:5470:" \
54865470 "checking for Fortran 77 compiler version" >&5
54875471 ac_compiler=`set X $ac_compile; echo $2`
54885472 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
55285512 cat conftest.err >&5
55295513 echo "$as_me:$LINENO: \$? = $ac_status" >&5
55305514 (exit $ac_status); } &&
5531 { ac_try='test -z "$ac_f77_werror_flag"
5532 || test ! -s conftest.err'
5515 { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
55335516 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
55345517 (eval $ac_try) 2>&5
55355518 ac_status=$?
55785561 cat conftest.err >&5
55795562 echo "$as_me:$LINENO: \$? = $ac_status" >&5
55805563 (exit $ac_status); } &&
5581 { ac_try='test -z "$ac_f77_werror_flag"
5582 || test ! -s conftest.err'
5564 { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
55835565 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
55845566 (eval $ac_try) 2>&5
55855567 ac_status=$?
65206502 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
65216503 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
65226504 -e 's:$: $lt_compiler_flag:'`
6523 (eval echo "\"\$as_me:6524: $lt_compile\"" >&5)
6505 (eval echo "\"\$as_me:6506: $lt_compile\"" >&5)
65246506 (eval "$lt_compile" 2>conftest.err)
65256507 ac_status=$?
65266508 cat conftest.err >&5
6527 echo "$as_me:6528: \$? = $ac_status" >&5
6509 echo "$as_me:6510: \$? = $ac_status" >&5
65286510 if (exit $ac_status) && test -s "$ac_outfile"; then
65296511 # The compiler can only warn and ignore the option if not recognized
65306512 # So say no if there are warnings
67536735 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
67546736 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
67556737 -e 's:$: $lt_compiler_flag:'`
6756 (eval echo "\"\$as_me:6757: $lt_compile\"" >&5)
6738 (eval echo "\"\$as_me:6739: $lt_compile\"" >&5)
67576739 (eval "$lt_compile" 2>conftest.err)
67586740 ac_status=$?
67596741 cat conftest.err >&5
6760 echo "$as_me:6761: \$? = $ac_status" >&5
6742 echo "$as_me:6743: \$? = $ac_status" >&5
67616743 if (exit $ac_status) && test -s "$ac_outfile"; then
67626744 # The compiler can only warn and ignore the option if not recognized
67636745 # So say no if there are warnings
68136795 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
68146796 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
68156797 -e 's:$: $lt_compiler_flag:'`
6816 (eval echo "\"\$as_me:6817: $lt_compile\"" >&5)
6798 (eval echo "\"\$as_me:6799: $lt_compile\"" >&5)
68176799 (eval "$lt_compile" 2>out/conftest.err)
68186800 ac_status=$?
68196801 cat out/conftest.err >&5
6820 echo "$as_me:6821: \$? = $ac_status" >&5
6802 echo "$as_me:6803: \$? = $ac_status" >&5
68216803 if (exit $ac_status) && test -s out/conftest2.$ac_objext
68226804 then
68236805 # The compiler can only warn and ignore the option if not recognized
72047186 cat conftest.err >&5
72057187 echo "$as_me:$LINENO: \$? = $ac_status" >&5
72067188 (exit $ac_status); } &&
7207 { ac_try='test -z "$ac_c_werror_flag"
7208 || test ! -s conftest.err'
7189 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
72097190 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
72107191 (eval $ac_try) 2>&5
72117192 ac_status=$?
72657246 cat conftest.err >&5
72667247 echo "$as_me:$LINENO: \$? = $ac_status" >&5
72677248 (exit $ac_status); } &&
7268 { ac_try='test -z "$ac_c_werror_flag"
7269 || test ! -s conftest.err'
7249 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
72707250 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
72717251 (eval $ac_try) 2>&5
72727252 ac_status=$?
81478127 libsuff=
81488128 case "$host_cpu" in
81498129 x86_64*|s390x*|powerpc64*)
8150 echo '#line 8151 "configure"' > conftest.$ac_ext
8130 echo '#line 8131 "configure"' > conftest.$ac_ext
81518131 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
81528132 (eval $ac_compile) 2>&5
81538133 ac_status=$?
84788458 cat conftest.err >&5
84798459 echo "$as_me:$LINENO: \$? = $ac_status" >&5
84808460 (exit $ac_status); } &&
8481 { ac_try='test -z "$ac_c_werror_flag"
8482 || test ! -s conftest.err'
8461 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
84838462 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
84848463 (eval $ac_try) 2>&5
84858464 ac_status=$?
85828561 cat conftest.err >&5
85838562 echo "$as_me:$LINENO: \$? = $ac_status" >&5
85848563 (exit $ac_status); } &&
8585 { ac_try='test -z "$ac_c_werror_flag"
8586 || test ! -s conftest.err'
8564 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
85878565 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
85888566 (eval $ac_try) 2>&5
85898567 ac_status=$?
86488626 cat conftest.err >&5
86498627 echo "$as_me:$LINENO: \$? = $ac_status" >&5
86508628 (exit $ac_status); } &&
8651 { ac_try='test -z "$ac_c_werror_flag"
8652 || test ! -s conftest.err'
8629 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
86538630 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
86548631 (eval $ac_try) 2>&5
86558632 ac_status=$?
87428719 cat conftest.err >&5
87438720 echo "$as_me:$LINENO: \$? = $ac_status" >&5
87448721 (exit $ac_status); } &&
8745 { ac_try='test -z "$ac_c_werror_flag"
8746 || test ! -s conftest.err'
8722 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
87478723 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
87488724 (eval $ac_try) 2>&5
87498725 ac_status=$?
88088784 cat conftest.err >&5
88098785 echo "$as_me:$LINENO: \$? = $ac_status" >&5
88108786 (exit $ac_status); } &&
8811 { ac_try='test -z "$ac_c_werror_flag"
8812 || test ! -s conftest.err'
8787 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
88138788 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
88148789 (eval $ac_try) 2>&5
88158790 ac_status=$?
88758850 cat conftest.err >&5
88768851 echo "$as_me:$LINENO: \$? = $ac_status" >&5
88778852 (exit $ac_status); } &&
8878 { ac_try='test -z "$ac_c_werror_flag"
8879 || test ! -s conftest.err'
8853 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
88808854 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
88818855 (eval $ac_try) 2>&5
88828856 ac_status=$?
89428916 cat conftest.err >&5
89438917 echo "$as_me:$LINENO: \$? = $ac_status" >&5
89448918 (exit $ac_status); } &&
8945 { ac_try='test -z "$ac_c_werror_flag"
8946 || test ! -s conftest.err'
8919 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
89478920 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
89488921 (eval $ac_try) 2>&5
89498922 ac_status=$?
90188991 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
90198992 lt_status=$lt_dlunknown
90208993 cat > conftest.$ac_ext <<EOF
9021 #line 9022 "configure"
8994 #line 8995 "configure"
90228995 #include "confdefs.h"
90238996
90248997 #if HAVE_DLFCN_H
91169089 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
91179090 lt_status=$lt_dlunknown
91189091 cat > conftest.$ac_ext <<EOF
9119 #line 9120 "configure"
9092 #line 9093 "configure"
91209093 #include "confdefs.h"
91219094
91229095 #if HAVE_DLFCN_H
1018810161 cat conftest.err >&5
1018910162 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1019010163 (exit $ac_status); } &&
10191 { ac_try='test -z "$ac_cxx_werror_flag"
10192 || test ! -s conftest.err'
10164 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1019310165 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1019410166 (eval $ac_try) 2>&5
1019510167 ac_status=$?
1025010222 cat conftest.err >&5
1025110223 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1025210224 (exit $ac_status); } &&
10253 { ac_try='test -z "$ac_cxx_werror_flag"
10254 || test ! -s conftest.err'
10225 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1025510226 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1025610227 (eval $ac_try) 2>&5
1025710228 ac_status=$?
1129911270 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1130011271 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1130111272 -e 's:$: $lt_compiler_flag:'`
11302 (eval echo "\"\$as_me:11303: $lt_compile\"" >&5)
11273 (eval echo "\"\$as_me:11274: $lt_compile\"" >&5)
1130311274 (eval "$lt_compile" 2>conftest.err)
1130411275 ac_status=$?
1130511276 cat conftest.err >&5
11306 echo "$as_me:11307: \$? = $ac_status" >&5
11277 echo "$as_me:11278: \$? = $ac_status" >&5
1130711278 if (exit $ac_status) && test -s "$ac_outfile"; then
1130811279 # The compiler can only warn and ignore the option if not recognized
1130911280 # So say no if there are warnings
1135911330 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1136011331 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1136111332 -e 's:$: $lt_compiler_flag:'`
11362 (eval echo "\"\$as_me:11363: $lt_compile\"" >&5)
11333 (eval echo "\"\$as_me:11334: $lt_compile\"" >&5)
1136311334 (eval "$lt_compile" 2>out/conftest.err)
1136411335 ac_status=$?
1136511336 cat out/conftest.err >&5
11366 echo "$as_me:11367: \$? = $ac_status" >&5
11337 echo "$as_me:11338: \$? = $ac_status" >&5
1136711338 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1136811339 then
1136911340 # The compiler can only warn and ignore the option if not recognized
1187011841 libsuff=
1187111842 case "$host_cpu" in
1187211843 x86_64*|s390x*|powerpc64*)
11873 echo '#line 11874 "configure"' > conftest.$ac_ext
11844 echo '#line 11845 "configure"' > conftest.$ac_ext
1187411845 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1187511846 (eval $ac_compile) 2>&5
1187611847 ac_status=$?
1220112172 cat conftest.err >&5
1220212173 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1220312174 (exit $ac_status); } &&
12204 { ac_try='test -z "$ac_cxx_werror_flag"
12205 || test ! -s conftest.err'
12175 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1220612176 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1220712177 (eval $ac_try) 2>&5
1220812178 ac_status=$?
1230512275 cat conftest.err >&5
1230612276 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1230712277 (exit $ac_status); } &&
12308 { ac_try='test -z "$ac_cxx_werror_flag"
12309 || test ! -s conftest.err'
12278 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1231012279 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1231112280 (eval $ac_try) 2>&5
1231212281 ac_status=$?
1237112340 cat conftest.err >&5
1237212341 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1237312342 (exit $ac_status); } &&
12374 { ac_try='test -z "$ac_cxx_werror_flag"
12375 || test ! -s conftest.err'
12343 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1237612344 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1237712345 (eval $ac_try) 2>&5
1237812346 ac_status=$?
1246512433 cat conftest.err >&5
1246612434 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1246712435 (exit $ac_status); } &&
12468 { ac_try='test -z "$ac_cxx_werror_flag"
12469 || test ! -s conftest.err'
12436 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1247012437 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1247112438 (eval $ac_try) 2>&5
1247212439 ac_status=$?
1253112498 cat conftest.err >&5
1253212499 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1253312500 (exit $ac_status); } &&
12534 { ac_try='test -z "$ac_cxx_werror_flag"
12535 || test ! -s conftest.err'
12501 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1253612502 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1253712503 (eval $ac_try) 2>&5
1253812504 ac_status=$?
1259812564 cat conftest.err >&5
1259912565 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1260012566 (exit $ac_status); } &&
12601 { ac_try='test -z "$ac_cxx_werror_flag"
12602 || test ! -s conftest.err'
12567 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1260312568 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1260412569 (eval $ac_try) 2>&5
1260512570 ac_status=$?
1266512630 cat conftest.err >&5
1266612631 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1266712632 (exit $ac_status); } &&
12668 { ac_try='test -z "$ac_cxx_werror_flag"
12669 || test ! -s conftest.err'
12633 { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
1267012634 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1267112635 (eval $ac_try) 2>&5
1267212636 ac_status=$?
1274112705 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1274212706 lt_status=$lt_dlunknown
1274312707 cat > conftest.$ac_ext <<EOF
12744 #line 12745 "configure"
12708 #line 12709 "configure"
1274512709 #include "confdefs.h"
1274612710
1274712711 #if HAVE_DLFCN_H
1283912803 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1284012804 lt_status=$lt_dlunknown
1284112805 cat > conftest.$ac_ext <<EOF
12842 #line 12843 "configure"
12806 #line 12807 "configure"
1284312807 #include "confdefs.h"
1284412808
1284512809 #if HAVE_DLFCN_H
1366613630 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1366713631 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1366813632 -e 's:$: $lt_compiler_flag:'`
13669 (eval echo "\"\$as_me:13670: $lt_compile\"" >&5)
13633 (eval echo "\"\$as_me:13634: $lt_compile\"" >&5)
1367013634 (eval "$lt_compile" 2>conftest.err)
1367113635 ac_status=$?
1367213636 cat conftest.err >&5
13673 echo "$as_me:13674: \$? = $ac_status" >&5
13637 echo "$as_me:13638: \$? = $ac_status" >&5
1367413638 if (exit $ac_status) && test -s "$ac_outfile"; then
1367513639 # The compiler can only warn and ignore the option if not recognized
1367613640 # So say no if there are warnings
1372613690 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1372713691 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1372813692 -e 's:$: $lt_compiler_flag:'`
13729 (eval echo "\"\$as_me:13730: $lt_compile\"" >&5)
13693 (eval echo "\"\$as_me:13694: $lt_compile\"" >&5)
1373013694 (eval "$lt_compile" 2>out/conftest.err)
1373113695 ac_status=$?
1373213696 cat out/conftest.err >&5
13733 echo "$as_me:13734: \$? = $ac_status" >&5
13697 echo "$as_me:13698: \$? = $ac_status" >&5
1373413698 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1373513699 then
1373613700 # The compiler can only warn and ignore the option if not recognized
1410714071 cat conftest.err >&5
1410814072 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1410914073 (exit $ac_status); } &&
14110 { ac_try='test -z "$ac_f77_werror_flag"
14111 || test ! -s conftest.err'
14074 { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
1411214075 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1411314076 (eval $ac_try) 2>&5
1411414077 ac_status=$?
1415814121 cat conftest.err >&5
1415914122 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1416014123 (exit $ac_status); } &&
14161 { ac_try='test -z "$ac_f77_werror_flag"
14162 || test ! -s conftest.err'
14124 { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err'
1416314125 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1416414126 (eval $ac_try) 2>&5
1416514127 ac_status=$?
1504015002 libsuff=
1504115003 case "$host_cpu" in
1504215004 x86_64*|s390x*|powerpc64*)
15043 echo '#line 15044 "configure"' > conftest.$ac_ext
15005 echo '#line 15006 "configure"' > conftest.$ac_ext
1504415006 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1504515007 (eval $ac_compile) 2>&5
1504615008 ac_status=$?
1578515747 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1578615748 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1578715749 -e 's:$: $lt_compiler_flag:'`
15788 (eval echo "\"\$as_me:15789: $lt_compile\"" >&5)
15750 (eval echo "\"\$as_me:15751: $lt_compile\"" >&5)
1578915751 (eval "$lt_compile" 2>conftest.err)
1579015752 ac_status=$?
1579115753 cat conftest.err >&5
15792 echo "$as_me:15793: \$? = $ac_status" >&5
15754 echo "$as_me:15755: \$? = $ac_status" >&5
1579315755 if (exit $ac_status) && test -s "$ac_outfile"; then
1579415756 # The compiler can only warn and ignore the option if not recognized
1579515757 # So say no if there are warnings
1601815980 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1601915981 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1602015982 -e 's:$: $lt_compiler_flag:'`
16021 (eval echo "\"\$as_me:16022: $lt_compile\"" >&5)
15983 (eval echo "\"\$as_me:15984: $lt_compile\"" >&5)
1602215984 (eval "$lt_compile" 2>conftest.err)
1602315985 ac_status=$?
1602415986 cat conftest.err >&5
16025 echo "$as_me:16026: \$? = $ac_status" >&5
15987 echo "$as_me:15988: \$? = $ac_status" >&5
1602615988 if (exit $ac_status) && test -s "$ac_outfile"; then
1602715989 # The compiler can only warn and ignore the option if not recognized
1602815990 # So say no if there are warnings
1607816040 -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1607916041 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
1608016042 -e 's:$: $lt_compiler_flag:'`
16081 (eval echo "\"\$as_me:16082: $lt_compile\"" >&5)
16043 (eval echo "\"\$as_me:16044: $lt_compile\"" >&5)
1608216044 (eval "$lt_compile" 2>out/conftest.err)
1608316045 ac_status=$?
1608416046 cat out/conftest.err >&5
16085 echo "$as_me:16086: \$? = $ac_status" >&5
16047 echo "$as_me:16048: \$? = $ac_status" >&5
1608616048 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1608716049 then
1608816050 # The compiler can only warn and ignore the option if not recognized
1646916431 cat conftest.err >&5
1647016432 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1647116433 (exit $ac_status); } &&
16472 { ac_try='test -z "$ac_c_werror_flag"
16473 || test ! -s conftest.err'
16434 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1647416435 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1647516436 (eval $ac_try) 2>&5
1647616437 ac_status=$?
1653016491 cat conftest.err >&5
1653116492 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1653216493 (exit $ac_status); } &&
16533 { ac_try='test -z "$ac_c_werror_flag"
16534 || test ! -s conftest.err'
16494 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1653516495 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1653616496 (eval $ac_try) 2>&5
1653716497 ac_status=$?
1741217372 libsuff=
1741317373 case "$host_cpu" in
1741417374 x86_64*|s390x*|powerpc64*)
17415 echo '#line 17416 "configure"' > conftest.$ac_ext
17375 echo '#line 17376 "configure"' > conftest.$ac_ext
1741617376 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
1741717377 (eval $ac_compile) 2>&5
1741817378 ac_status=$?
1774317703 cat conftest.err >&5
1774417704 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1774517705 (exit $ac_status); } &&
17746 { ac_try='test -z "$ac_c_werror_flag"
17747 || test ! -s conftest.err'
17706 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1774817707 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1774917708 (eval $ac_try) 2>&5
1775017709 ac_status=$?
1784717806 cat conftest.err >&5
1784817807 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1784917808 (exit $ac_status); } &&
17850 { ac_try='test -z "$ac_c_werror_flag"
17851 || test ! -s conftest.err'
17809 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1785217810 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1785317811 (eval $ac_try) 2>&5
1785417812 ac_status=$?
1791317871 cat conftest.err >&5
1791417872 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1791517873 (exit $ac_status); } &&
17916 { ac_try='test -z "$ac_c_werror_flag"
17917 || test ! -s conftest.err'
17874 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1791817875 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1791917876 (eval $ac_try) 2>&5
1792017877 ac_status=$?
1800717964 cat conftest.err >&5
1800817965 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1800917966 (exit $ac_status); } &&
18010 { ac_try='test -z "$ac_c_werror_flag"
18011 || test ! -s conftest.err'
17967 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1801217968 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1801317969 (eval $ac_try) 2>&5
1801417970 ac_status=$?
1807318029 cat conftest.err >&5
1807418030 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1807518031 (exit $ac_status); } &&
18076 { ac_try='test -z "$ac_c_werror_flag"
18077 || test ! -s conftest.err'
18032 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1807818033 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1807918034 (eval $ac_try) 2>&5
1808018035 ac_status=$?
1814018095 cat conftest.err >&5
1814118096 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1814218097 (exit $ac_status); } &&
18143 { ac_try='test -z "$ac_c_werror_flag"
18144 || test ! -s conftest.err'
18098 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1814518099 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1814618100 (eval $ac_try) 2>&5
1814718101 ac_status=$?
1820718161 cat conftest.err >&5
1820818162 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1820918163 (exit $ac_status); } &&
18210 { ac_try='test -z "$ac_c_werror_flag"
18211 || test ! -s conftest.err'
18164 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1821218165 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1821318166 (eval $ac_try) 2>&5
1821418167 ac_status=$?
1828318236 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1828418237 lt_status=$lt_dlunknown
1828518238 cat > conftest.$ac_ext <<EOF
18286 #line 18287 "configure"
18239 #line 18240 "configure"
1828718240 #include "confdefs.h"
1828818241
1828918242 #if HAVE_DLFCN_H
1838118334 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1838218335 lt_status=$lt_dlunknown
1838318336 cat > conftest.$ac_ext <<EOF
18384 #line 18385 "configure"
18337 #line 18338 "configure"
1838518338 #include "confdefs.h"
1838618339
1838718340 #if HAVE_DLFCN_H
1942919382 cat conftest.err >&5
1943019383 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1943119384 (exit $ac_status); } &&
19432 { ac_try='test -z "$ac_c_werror_flag"
19433 || test ! -s conftest.err'
19385 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1943419386 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1943519387 (eval $ac_try) 2>&5
1943619388 ac_status=$?
1960119553 cat conftest.err >&5
1960219554 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1960319555 (exit $ac_status); } &&
19604 { ac_try='test -z "$ac_c_werror_flag"
19605 || test ! -s conftest.err'
19556 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1960619557 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1960719558 (eval $ac_try) 2>&5
1960819559 ac_status=$?
1967019621 cat conftest.err >&5
1967119622 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1967219623 (exit $ac_status); } &&
19673 { ac_try='test -z "$ac_c_werror_flag"
19674 || test ! -s conftest.err'
19624 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1967519625 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1967619626 (eval $ac_try) 2>&5
1967719627 ac_status=$?
1982019770 cat conftest.err >&5
1982119771 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1982219772 (exit $ac_status); } &&
19823 { ac_try='test -z "$ac_c_werror_flag"
19824 || test ! -s conftest.err'
19773 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1982519774 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1982619775 (eval $ac_try) 2>&5
1982719776 ac_status=$?
1988319832 cat conftest.err >&5
1988419833 echo "$as_me:$LINENO: \$? = $ac_status" >&5
1988519834 (exit $ac_status); } &&
19886 { ac_try='test -z "$ac_c_werror_flag"
19887 || test ! -s conftest.err'
19835 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
1988819836 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
1988919837 (eval $ac_try) 2>&5
1989019838 ac_status=$?
2002419972 cat conftest.err >&5
2002519973 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2002619974 (exit $ac_status); } &&
20027 { ac_try='test -z "$ac_c_werror_flag"
20028 || test ! -s conftest.err'
19975 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2002919976 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2003019977 (eval $ac_try) 2>&5
2003119978 ac_status=$?
2032420271 cat conftest.err >&5
2032520272 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2032620273 (exit $ac_status); } &&
20327 { ac_try='test -z "$ac_c_werror_flag"
20328 || test ! -s conftest.err'
20274 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2032920275 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2033020276 (eval $ac_try) 2>&5
2033120277 ac_status=$?
2044420390 cat conftest.err >&5
2044520391 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2044620392 (exit $ac_status); } &&
20447 { ac_try='test -z "$ac_c_werror_flag"
20448 || test ! -s conftest.err'
20393 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2044920394 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2045020395 (eval $ac_try) 2>&5
2045120396 ac_status=$?
2051920464 cat conftest.err >&5
2052020465 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2052120466 (exit $ac_status); } &&
20522 { ac_try='test -z "$ac_c_werror_flag"
20523 || test ! -s conftest.err'
20467 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2052420468 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2052520469 (eval $ac_try) 2>&5
2052620470 ac_status=$?
2059420538 cat conftest.err >&5
2059520539 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2059620540 (exit $ac_status); } &&
20597 { ac_try='test -z "$ac_c_werror_flag"
20598 || test ! -s conftest.err'
20541 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2059920542 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2060020543 (eval $ac_try) 2>&5
2060120544 ac_status=$?
2090720850 cat conftest.err >&5
2090820851 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2090920852 (exit $ac_status); } &&
20910 { ac_try='test -z "$ac_c_werror_flag"
20911 || test ! -s conftest.err'
20853 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2091220854 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2091320855 (eval $ac_try) 2>&5
2091420856 ac_status=$?
2121921161 cat conftest.err >&5
2122021162 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2122121163 (exit $ac_status); } &&
21222 { ac_try='test -z "$ac_c_werror_flag"
21223 || test ! -s conftest.err'
21164 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2122421165 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2122521166 (eval $ac_try) 2>&5
2122621167 ac_status=$?
2157121512 cat conftest.err >&5
2157221513 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2157321514 (exit $ac_status); } &&
21574 { ac_try='test -z "$ac_c_werror_flag"
21575 || test ! -s conftest.err'
21515 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2157621516 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2157721517 (eval $ac_try) 2>&5
2157821518 ac_status=$?
2188721827 cat conftest.err >&5
2188821828 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2188921829 (exit $ac_status); } &&
21890 { ac_try='test -z "$ac_c_werror_flag"
21891 || test ! -s conftest.err'
21830 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2189221831 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2189321832 (eval $ac_try) 2>&5
2189421833 ac_status=$?
2220622145 cat conftest.err >&5
2220722146 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2220822147 (exit $ac_status); } &&
22209 { ac_try='test -z "$ac_c_werror_flag"
22210 || test ! -s conftest.err'
22148 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2221122149 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2221222150 (eval $ac_try) 2>&5
2221322151 ac_status=$?
2255422492 cat conftest.err >&5
2255522493 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2255622494 (exit $ac_status); } &&
22557 { ac_try='test -z "$ac_c_werror_flag"
22558 || test ! -s conftest.err'
22495 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2255922496 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2256022497 (eval $ac_try) 2>&5
2256122498 ac_status=$?
2263322570 cat conftest.err >&5
2263422571 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2263522572 (exit $ac_status); } &&
22636 { ac_try='test -z "$ac_c_werror_flag"
22637 || test ! -s conftest.err'
22573 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2263822574 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2263922575 (eval $ac_try) 2>&5
2264022576 ac_status=$?
2278322719 cat conftest.err >&5
2278422720 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2278522721 (exit $ac_status); } &&
22786 { ac_try='test -z "$ac_c_werror_flag"
22787 || test ! -s conftest.err'
22722 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2278822723 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2278922724 (eval $ac_try) 2>&5
2279022725 ac_status=$?
2286722802 cat conftest.err >&5
2286822803 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2286922804 (exit $ac_status); } &&
22870 { ac_try='test -z "$ac_c_werror_flag"
22871 || test ! -s conftest.err'
22805 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2287222806 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2287322807 (eval $ac_try) 2>&5
2287422808 ac_status=$?
2308123015 cat conftest.err >&5
2308223016 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2308323017 (exit $ac_status); } &&
23084 { ac_try='test -z "$ac_c_werror_flag"
23085 || test ! -s conftest.err'
23018 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2308623019 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2308723020 (eval $ac_try) 2>&5
2308823021 ac_status=$?
2314223075 cat conftest.err >&5
2314323076 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2314423077 (exit $ac_status); } &&
23145 { ac_try='test -z "$ac_c_werror_flag"
23146 || test ! -s conftest.err'
23078 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2314723079 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2314823080 (eval $ac_try) 2>&5
2314923081 ac_status=$?
2321623148 cat conftest.err >&5
2321723149 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2321823150 (exit $ac_status); } &&
23219 { ac_try='test -z "$ac_c_werror_flag"
23220 || test ! -s conftest.err'
23151 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2322123152 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2322223153 (eval $ac_try) 2>&5
2322323154 ac_status=$?
2328223213 cat conftest.err >&5
2328323214 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2328423215 (exit $ac_status); } &&
23285 { ac_try='test -z "$ac_c_werror_flag"
23286 || test ! -s conftest.err'
23216 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2328723217 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2328823218 (eval $ac_try) 2>&5
2328923219 ac_status=$?
2334723277 cat conftest.err >&5
2334823278 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2334923279 (exit $ac_status); } &&
23350 { ac_try='test -z "$ac_c_werror_flag"
23351 || test ! -s conftest.err'
23280 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2335223281 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2335323282 (eval $ac_try) 2>&5
2335423283 ac_status=$?
2342923358 cat conftest.err >&5
2343023359 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2343123360 (exit $ac_status); } &&
23432 { ac_try='test -z "$ac_c_werror_flag"
23433 || test ! -s conftest.err'
23361 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2343423362 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2343523363 (eval $ac_try) 2>&5
2343623364 ac_status=$?
2357123499 cat conftest.err >&5
2357223500 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2357323501 (exit $ac_status); } &&
23574 { ac_try='test -z "$ac_c_werror_flag"
23575 || test ! -s conftest.err'
23502 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2357623503 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2357723504 (eval $ac_try) 2>&5
2357823505 ac_status=$?
2371023637 cat conftest.err >&5
2371123638 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2371223639 (exit $ac_status); } &&
23713 { ac_try='test -z "$ac_c_werror_flag"
23714 || test ! -s conftest.err'
23640 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2371523641 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2371623642 (eval $ac_try) 2>&5
2371723643 ac_status=$?
2389523821 cat conftest.err >&5
2389623822 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2389723823 (exit $ac_status); } &&
23898 { ac_try='test -z "$ac_c_werror_flag"
23899 || test ! -s conftest.err'
23824 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2390023825 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2390123826 (eval $ac_try) 2>&5
2390223827 ac_status=$?
2418624111 cat conftest.err >&5
2418724112 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2418824113 (exit $ac_status); } &&
24189 { ac_try='test -z "$ac_c_werror_flag"
24190 || test ! -s conftest.err'
24114 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2419124115 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2419224116 (eval $ac_try) 2>&5
2419324117 ac_status=$?
2439324317 cat conftest.err >&5
2439424318 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2439524319 (exit $ac_status); } &&
24396 { ac_try='test -z "$ac_c_werror_flag"
24397 || test ! -s conftest.err'
24320 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2439824321 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2439924322 (eval $ac_try) 2>&5
2440024323 ac_status=$?
2447624399 cat conftest.err >&5
2447724400 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2447824401 (exit $ac_status); } &&
24479 { ac_try='test -z "$ac_c_werror_flag"
24480 || test ! -s conftest.err'
24402 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2448124403 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2448224404 (eval $ac_try) 2>&5
2448324405 ac_status=$?
2452724449 cat conftest.err >&5
2452824450 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2452924451 (exit $ac_status); } &&
24530 { ac_try='test -z "$ac_c_werror_flag"
24531 || test ! -s conftest.err'
24452 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2453224453 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2453324454 (eval $ac_try) 2>&5
2453424455 ac_status=$?
2460324524 cat conftest.err >&5
2460424525 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2460524526 (exit $ac_status); } &&
24606 { ac_try='test -z "$ac_c_werror_flag"
24607 || test ! -s conftest.err'
24527 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2460824528 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2460924529 (eval $ac_try) 2>&5
2461024530 ac_status=$?
2467424594 cat conftest.err >&5
2467524595 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2467624596 (exit $ac_status); } &&
24677 { ac_try='test -z "$ac_c_werror_flag"
24678 || test ! -s conftest.err'
24597 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2467924598 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2468024599 (eval $ac_try) 2>&5
2468124600 ac_status=$?
2473824657 cat conftest.err >&5
2473924658 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2474024659 (exit $ac_status); } &&
24741 { ac_try='test -z "$ac_c_werror_flag"
24742 || test ! -s conftest.err'
24660 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2474324661 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2474424662 (eval $ac_try) 2>&5
2474524663 ac_status=$?
2484424762 cat conftest.err >&5
2484524763 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2484624764 (exit $ac_status); } &&
24847 { ac_try='test -z "$ac_c_werror_flag"
24848 || test ! -s conftest.err'
24765 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2484924766 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2485024767 (eval $ac_try) 2>&5
2485124768 ac_status=$?
2498324900 cat conftest.err >&5
2498424901 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2498524902 (exit $ac_status); } &&
24986 { ac_try='test -z "$ac_c_werror_flag"
24987 || test ! -s conftest.err'
24903 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2498824904 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2498924905 (eval $ac_try) 2>&5
2499024906 ac_status=$?
2504324959 cat conftest.err >&5
2504424960 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2504524961 (exit $ac_status); } &&
25046 { ac_try='test -z "$ac_c_werror_flag"
25047 || test ! -s conftest.err'
24962 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2504824963 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2504924964 (eval $ac_try) 2>&5
2505024965 ac_status=$?
2515525070 cat conftest.err >&5
2515625071 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2515725072 (exit $ac_status); } &&
25158 { ac_try='test -z "$ac_c_werror_flag"
25159 || test ! -s conftest.err'
25073 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2516025074 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2516125075 (eval $ac_try) 2>&5
2516225076 ac_status=$?
2566825582 cat conftest.err >&5
2566925583 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2567025584 (exit $ac_status); } &&
25671 { ac_try='test -z "$ac_c_werror_flag"
25672 || test ! -s conftest.err'
25585 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2567325586 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2567425587 (eval $ac_try) 2>&5
2567525588 ac_status=$?
2573125644 cat conftest.err >&5
2573225645 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2573325646 (exit $ac_status); } &&
25734 { ac_try='test -z "$ac_c_werror_flag"
25735 || test ! -s conftest.err'
25647 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2573625648 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2573725649 (eval $ac_try) 2>&5
2573825650 ac_status=$?
2577225684 cat conftest.err >&5
2577325685 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2577425686 (exit $ac_status); } &&
25775 { ac_try='test -z "$ac_c_werror_flag"
25776 || test ! -s conftest.err'
25687 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2577725688 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2577825689 (eval $ac_try) 2>&5
2577925690 ac_status=$?
2582925740 cat conftest.err >&5
2583025741 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2583125742 (exit $ac_status); } &&
25832 { ac_try='test -z "$ac_c_werror_flag"
25833 || test ! -s conftest.err'
25743 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2583425744 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2583525745 (eval $ac_try) 2>&5
2583625746 ac_status=$?
2587025780 cat conftest.err >&5
2587125781 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2587225782 (exit $ac_status); } &&
25873 { ac_try='test -z "$ac_c_werror_flag"
25874 || test ! -s conftest.err'
25783 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2587525784 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2587625785 (eval $ac_try) 2>&5
2587725786 ac_status=$?
2593525844 cat conftest.err >&5
2593625845 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2593725846 (exit $ac_status); } &&
25938 { ac_try='test -z "$ac_c_werror_flag"
25939 || test ! -s conftest.err'
25847 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2594025848 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2594125849 (eval $ac_try) 2>&5
2594225850 ac_status=$?
2596725875 esac
2596825876 else
2596925877 if test "$cross_compiling" = yes; then
25970 { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
25971 See \`config.log' for more details." >&5
25972 echo "$as_me: error: cannot run test program while cross compiling
25973 See \`config.log' for more details." >&2;}
25878 { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5
25879 echo "$as_me: error: internal error: not reached in cross-compile" >&2;}
2597425880 { (exit 1); exit 1; }; }
2597525881 else
2597625882 cat >conftest.$ac_ext <<_ACEOF
2618526091 cat conftest.err >&5
2618626092 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2618726093 (exit $ac_status); } &&
26188 { ac_try='test -z "$ac_c_werror_flag"
26189 || test ! -s conftest.err'
26094 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2619026095 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2619126096 (eval $ac_try) 2>&5
2619226097 ac_status=$?
2622526130 cat conftest.err >&5
2622626131 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2622726132 (exit $ac_status); } &&
26228 { ac_try='test -z "$ac_c_werror_flag"
26229 || test ! -s conftest.err'
26133 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2623026134 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2623126135 (eval $ac_try) 2>&5
2623226136 ac_status=$?
2638326287 cat conftest.err >&5
2638426288 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2638526289 (exit $ac_status); } &&
26386 { ac_try='test -z "$ac_c_werror_flag"
26387 || test ! -s conftest.err'
26290 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2638826291 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2638926292 (eval $ac_try) 2>&5
2639026293 ac_status=$?
2645326356 cat conftest.err >&5
2645426357 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2645526358 (exit $ac_status); } &&
26456 { ac_try='test -z "$ac_c_werror_flag"
26457 || test ! -s conftest.err'
26359 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2645826360 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2645926361 (eval $ac_try) 2>&5
2646026362 ac_status=$?
2656326465 cat conftest.err >&5
2656426466 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2656526467 (exit $ac_status); } &&
26566 { ac_try='test -z "$ac_c_werror_flag"
26567 || test ! -s conftest.err'
26468 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2656826469 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2656926470 (eval $ac_try) 2>&5
2657026471 ac_status=$?
2664826549 cat conftest.err >&5
2664926550 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2665026551 (exit $ac_status); } &&
26651 { ac_try='test -z "$ac_c_werror_flag"
26652 || test ! -s conftest.err'
26552 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2665326553 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2665426554 (eval $ac_try) 2>&5
2665526555 ac_status=$?
2670326603 cat conftest.err >&5
2670426604 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2670526605 (exit $ac_status); } &&
26706 { ac_try='test -z "$ac_c_werror_flag"
26707 || test ! -s conftest.err'
26606 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2670826607 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2670926608 (eval $ac_try) 2>&5
2671026609 ac_status=$?
2680126700 cat conftest.err >&5
2680226701 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2680326702 (exit $ac_status); } &&
26804 { ac_try='test -z "$ac_c_werror_flag"
26805 || test ! -s conftest.err'
26703 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2680626704 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2680726705 (eval $ac_try) 2>&5
2680826706 ac_status=$?
2691926817 cat conftest.err >&5
2692026818 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2692126819 (exit $ac_status); } &&
26922 { ac_try='test -z "$ac_c_werror_flag"
26923 || test ! -s conftest.err'
26820 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2692426821 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2692526822 (eval $ac_try) 2>&5
2692626823 ac_status=$?
2697426871 cat conftest.err >&5
2697526872 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2697626873 (exit $ac_status); } &&
26977 { ac_try='test -z "$ac_c_werror_flag"
26978 || test ! -s conftest.err'
26874 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2697926875 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2698026876 (eval $ac_try) 2>&5
2698126877 ac_status=$?
2704526941 cat conftest.err >&5
2704626942 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2704726943 (exit $ac_status); } &&
27048 { ac_try='test -z "$ac_c_werror_flag"
27049 || test ! -s conftest.err'
26944 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2705026945 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2705126946 (eval $ac_try) 2>&5
2705226947 ac_status=$?
2710026995 cat conftest.err >&5
2710126996 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2710226997 (exit $ac_status); } &&
27103 { ac_try='test -z "$ac_c_werror_flag"
27104 || test ! -s conftest.err'
26998 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2710526999 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2710627000 (eval $ac_try) 2>&5
2710727001 ac_status=$?
2720427098 cat conftest.err >&5
2720527099 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2720627100 (exit $ac_status); } &&
27207 { ac_try='test -z "$ac_c_werror_flag"
27208 || test ! -s conftest.err'
27101 { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
2720927102 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
2721027103 (eval $ac_try) 2>&5
2721127104 ac_status=$?
2841128304 *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
2841228305 esac
2841328306
28414 if test x"$ac_file" != x-; then
28415 { echo "$as_me:$LINENO: creating $ac_file" >&5
28416 echo "$as_me: creating $ac_file" >&6;}
28417 rm -f "$ac_file"
28418 fi
2841928307 # Let's still pretend it is `configure' which instantiates (i.e., don't
2842028308 # use $as_me), people would be surprised to read:
2842128309 # /* config.h. Generated by config.status. */
2845428342 fi;;
2845528343 esac
2845628344 done` || { (exit 1); exit 1; }
28345
28346 if test x"$ac_file" != x-; then
28347 { echo "$as_me:$LINENO: creating $ac_file" >&5
28348 echo "$as_me: creating $ac_file" >&6;}
28349 rm -f "$ac_file"
28350 fi
2845728351 _ACEOF
2845828352 cat >>$CONFIG_STATUS <<_ACEOF
2845928353 sed "$ac_vpsub
0 dopewars (1.5.12-2) unstable; urgency=low
1
2 * Set the default web browser to sensible-browser
3 * Remove the misc:depends dependencies
4
5 -- Francois Marier <francois@debian.org> Thu, 19 Jan 2006 00:30:22 -0500
6
7 dopewars (1.5.12-1) unstable; urgency=low
8
9 * New upstream release (closes: #336347)
10
11 -- Francois Marier <francois@debian.org> Wed, 4 Jan 2006 23:30:06 -0500
12
13 dopewars (1.5.10-4) unstable; urgency=low
14
15 * Bump Standards-Version up to 3.6.2 (no changes)
16 * Fix FSF address
17 * Fix watch file
18
19 -- Francois Marier <francois@debian.org> Sat, 26 Nov 2005 00:19:06 -0500
20
21 dopewars (1.5.10-3) unstable; urgency=low
22
23 * Update german translation (closes: #314129)
24 * Add watch file
25 * Rename menu to dopewars.menu
26
27 -- Francois Marier <francois@debian.org> Sun, 19 Jun 2005 22:06:36 -0400
28
29 dopewars (1.5.10-2) unstable; urgency=medium
30
31 * Fixed a lintian warning
32 * Cleaned-up acinclude.m4 and ran autoreconf (Closes: #279288)
33
34 -- Francois Marier <francois@debian.org> Fri, 5 Nov 2004 01:23:14 -0500
35
36 dopewars (1.5.10-1) unstable; urgency=high
37
38 * New upstream version:
39 - Fixed a server DOS
40 - Fixed some minor bugs in the text-mode client
41 * Updated upstream's email address
42 * Updated fr_CA translation
43
44 -- Francois Marier <francois@debian.org> Fri, 29 Oct 2004 20:33:56 -0400
45
46 dopewars (1.5.9-6) unstable; urgency=medium
47
48 * Cleaned-up acinclude.m4 and reran the autotools (Closes: #246513)
49 Thanks to Luk Claes for his help!
50 * Removed the automake and autoconf build dependencies
51
52 -- Francois Marier <francois@debian.org> Wed, 9 Jun 2004 15:09:27 -0400
53
54 dopewars (1.5.9-5) unstable; urgency=medium
55
56 * Added libaudiofile-dev build dependency to fix a buildd warning
57 * Reran the autotools using automake1.8 this time, this will hopefully
58 fix the build problem on arm (Closes: #246513)
59
60 -- Francois Marier <francois@debian.org> Sun, 16 May 2004 03:00:51 -0400
61
62 dopewars (1.5.9-4) unstable; urgency=medium
63
64 * Hopefuly really fix the problem on arm this time by adding automake
65 and autoconf to the build dependencies
66 * Create the high score file properly on a new install
67 * Added lintian and linda override files for the score file permissions
68
69 -- Francois Marier <francois@debian.org> Fri, 30 Apr 2004 14:09:38 -0400
70
71 dopewars (1.5.9-3) unstable; urgency=low
72
73 * Re-ran the autotools to fix configure problem on arm (Closes: #246513)
74
75 -- Francois Marier <francois@debian.org> Thu, 29 Apr 2004 13:22:07 -0400
76
77 dopewars (1.5.9-2) unstable; urgency=low
78
79 * Changed maintainer's email address
80 * Minor fixes to the copyright file
81 * Removed the TODO file from /usr/share/doc/dopewars
82 (users have no use for it, developers can see it in the source package)
83 * Bump Standards-Version up to 3.6.1 (no changes required)
84 * Re-ran libtoolize as per bug #242950
85 * Replaced out-of-date "fr" translation by a new "fr_CA" translation
86 * Only set the group of the binary (that's what gnome-games do)
87
88 -- Francois Marier <francois@debian.org> Thu, 29 Apr 2004 02:27:05 -0400
89
90 dopewars (1.5.9-1) unstable; urgency=high
91
92 * New maintainer, thanks for your great work Michael!
93 * Acknowledging my previous NMUs
94 (Closes: #183336, #161704, #161705, #190300, #190299)
95 * New upstream release (Closes: #199558):
96 - Mostly a bug fix release
97 - Upstream refreshed autoconf files and that will hopefully fix
98 the build problems on mips and mipsel (Closes: #192319)
99 * Bump Standards-Version up to 3.5.10 (no changes required)
100
101 -- Francois Marier <francois@debian.org> Sun, 6 Jul 2003 23:03:17 -0700
102
103 dopewars (1.5.8-0.1) unstable; urgency=medium
104
105 * NMU
106 * New upstream release (Closes: #183336, #161704)
107 - GTK+ 2.0
108 - Full Unicode support
109 - Sound effects
110 * Bump Standards-Version up to 3.5.9
111 * Necessary changes to the build depends to accomodate GTK+ 2.0
112 * Removed the /usr/doc symmlink from postinst
113 * Updated the website link in debian/copyright
114 * Moved the score file from /var/games/dopewars to /var/games
115 * Remove /var/games/dopewars.sco* on purge (Closes: #161705)
116 * Documentation (Closes: #190299) and GNOME menu entry (Closes: #190300)
117 are now in the right place
118 * debian/compat now sets debconf compatibility to version 4
119 * debian/rules now updates config.sub and config.guess automatically
120 * debian/rules now sets the target architecture properly
121
122 -- Francois Marier <francois@debian.org> Wed, 23 Apr 2003 04:49:01 -0400
123
124 dopewars (1.5.7-1) unstable; urgency=low
125
126 * New upstream release (Closes: #158776)
127 * Deleted README.debian (Closes: #136391)
128
129 -- Michael D. Ivey <ivey@debian.org> Thu, 12 Sep 2002 16:15:08 +0000
130
131 dopewars (1.5.3-4) unstable; urgency=high
132
133 * Added patch to fix high score conversion problem on PPC (Closes: #136203)
134 * Added patch to fix 'Run Away' crashes on PPC (Closes: #136242)
135 * Thanks to Brian Campbell for both patches
136
137 -- Michael D. Ivey <ivey@debian.org> Thu, 28 Feb 2002 22:37:52 +0000
138
139 dopewars (1.5.3-3) unstable; urgency=high
140
141 * Fixed problem with building when not root (Closes: #135927)
142
143 -- Michael D. Ivey <ivey@debian.org> Tue, 26 Feb 2002 17:59:33 +0000
144
145 dopewars (1.5.3-2) unstable; urgency=low
146
147 * Fix build-depends (Closes: #135553)
148
149 -- Michael D. Ivey <ivey@debian.org> Mon, 25 Feb 2002 04:42:57 +0000
150
151 dopewars (1.5.3-1) unstable; urgency=low
152
153 * New upstream release (Closes: #118154)
154
155 -- Michael D. Ivey <ivey@debian.org> Fri, 22 Feb 2002 21:50:55 +0000
156
157 dopewars (1.5.2-1) unstable; urgency=low
158
159 * New upstream release
160 * User reports that this fixes the segfault (Closes: #115683)
161
162 -- michael d. ivey <ivey@debian.org> Thu, 18 Oct 2001 14:39:22 +0000
163
164 dopewars (1.5.1-1) unstable; urgency=low
165
166 * New upstream release (Closes: Bug#113165)
167
168 -- michael d. ivey <ivey@debian.org> Fri, 28 Sep 2001 18:39:30 +0000
169
170 dopewars (1.5.0-3) unstable; urgency=low
171
172 * Added build-depends (Closes: Bug#102501)
173
174 -- michael d. ivey <ivey@debian.org> Tue, 17 Jul 2001 15:55:06 +0000
175
176 dopewars (1.5.0-2) unstable; urgency=low
177
178 * Changed arch to any (Closes: #99650)
179 * Added menus (Closes: #99775) ... thanks to Jeronimo Pellegrini
180 for taking the time to send a patch
181
182 -- michael d. ivey <ivey@debian.org> Mon, 4 Jun 2001 14:28:24 +0000
183
184 dopewars (1.5.0-1) unstable; urgency=low
185
186 * New upstream release
187
188 -- michael d. ivey <ivey@debian.org> Wed, 30 May 2001 22:36:11 +0000
189
190 dopewars (1.4.8-5) unstable; urgency=low
191
192 * New maintainer
193
194 -- michael d. ivey <ivey@debian.org> Thu, 10 May 2001 18:31:47 +0000
195
196 dopewars (1.4.8-4) unstable; urgency=low
197
198 * Fix md5 problem in dsc file.
199
200 -- Shane Wegner <shane@cm.nu> Sun, 11 Feb 2001 14:09:17 -0800
201
202 dopewars (1.4.8-3) unstable; urgency=low
203
204 * Remove suidregister code.
205 * Add debhelper to Build-Depends.
206 * Include AUTHORS file in docs.
207
208 -- Shane Wegner <shane@cm.nu> Wed, 17 Jan 2001 13:47:29 -0800
209
210 dopewars (1.4.8-2) unstable; urgency=low
211
212 * Move dopewars binary to /usr/games per debian policy.
213
214 -- Shane Wegner <shane@cm.nu> Tue, 16 Jan 2001 09:48:54 -0800
215
216 dopewars (1.4.8-1) unstable; urgency=low
217
218 * New upstream version.
219 * Standards version 3.2.1.
220 * Change priority to extra.
221
222 -- Shane Wegner <shane@cm.nu> Mon, 15 Jan 2001 13:35:29 -0800
223
224 dopewars (1.4.7-1) unstable; urgency=low
225
226 * Initial Release.
227
228 -- Shane Wegner <shane@cm.nu> Mon, 17 Jan 2000 22:35:06 -0800
0 Source: dopewars
1 Section: games
2 Priority: extra
3 Build-Depends: libgtk2.0-dev, libglib2.0-dev, pkg-config, libncurses5-dev, debhelper (>> 4.0.0), libsdl1.2-dev, libesd0-dev, autotools-dev, libaudiofile-dev
4 Maintainer: Francois Marier <francois@debian.org>
5 Standards-Version: 3.6.2
6
7 Package: dopewars
8 Architecture: any
9 Depends: ${shlibs:Depends}
10 Conflicts: suidmanager (<< 0.50)
11 Description: Make a fortune dealing drugs on the streets of New York
12 UNIX rewrite of the MS-DOS program of the same name, which in turn was
13 inspired by John E. Dell's "Drug Wars" game. You have one month to buy and
14 sell drugs on the streets of New York, the aim being first to pay off your
15 debt to the loan shark and then to make a fortune. And if you have to shoot
16 a few cops in the process, well... The game includes TCP networking allowing
17 you to meet (and shoot) other human drug dealers.
0 This package was debianized by Shane Wegner <shane@cm.nu> on
1 Mon, 17 Jan 2000 22:35:06 -0800.
2
3 It was downloaded from http://dopewars.sourceforget.net
4
5 Upstream Author: Ben Webb <benwebb@users.sf.net>
6
7 Copyright: 1998-2003 Ben Webb
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License with
20 the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
21 if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
22 Fifth Floor, Boston, MA 02110-1301, USA
23
24 You are free to distribute this software under the terms of the GNU General
25 Public License. On Debian systems, the complete text of the GNU General
26 Public License can be found in /usr/share/common-licenses/GPL file.
0 /usr/games
1 /usr/share/dopewars
2 /usr/share/doc/dopewars/html
3 /var/games
0 AUTHORS
1 NEWS
2 README
0 ?package(dopewars):needs="X11" section="Games/Strategy"\
1 title="Dopewars (GTK)" command="/usr/games/dopewars -w"
2 ?package(dopewars):needs="text" section="Games/Strategy"\
3 title="Dopewars (text)" command="/usr/games/dopewars -t"
4 ?package(dopewars):needs="text" section="Games/Strategy"\
5 title="Dopewars server" command="/usr/games/dopewars -s"
0 Tag: incorrect-file-perms
1 Data: /usr/games/dopewars
0 dopewars: non-standard-file-perm var/games/dopewars.sco 0660 != 0644
0 #!/usr/bin/make -f
1 # Sample debian/rules that uses debhelper.
2 # GNU copyright 1997 to 1999 by Joey Hess.
3
4 # Uncomment this to turn on verbose mode.
5 #export DH_VERBOSE=1
6
7 export SED=sed # work-around for broken libtool
8
9 # Stuff taken from autotools-dev
10 export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
11 export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
12
13 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
14 confflags += --build $(DEB_HOST_GNU_TYPE)
15 else
16 confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
17 endif
18
19 build: configure build-stamp
20 build-stamp:
21 dh_testdir
22
23 ./configure $(confflags) --prefix=/usr --bindir=/usr/games --localstatedir=/var/games
24 $(MAKE)
25
26 touch build-stamp
27
28 clean:
29 dh_testdir
30 dh_testroot
31 rm -f build-stamp
32 rm -f intl/libintl.h
33 rm -f po/*.gmo
34
35 -$(MAKE) distclean
36 -$(MAKE) clean
37
38 dh_clean
39
40 # Update config.sub and config.guess
41 -test -r /usr/share/misc/config.sub && \
42 cp -f /usr/share/misc/config.sub config.sub
43 -test -r /usr/share/misc/config.guess && \
44 cp -f /usr/share/misc/config.guess config.guess
45
46 install: build
47 dh_testdir
48 dh_testroot
49 dh_clean -k
50 dh_installdirs
51
52 $(MAKE) install DESTDIR=`pwd`/debian/dopewars
53
54 rm `pwd`/debian/dopewars/usr/share/doc/dopewars/html/LICENCE
55 chmod -x `pwd`/debian/dopewars/usr/lib/dopewars/*.so
56
57 # Build architecture-independent files here.
58 binary-indep: build install
59 # We have nothing to do by default.
60
61 # Build architecture-dependent files here.
62 binary-arch: build install
63 dh_testdir
64 dh_testroot
65 dh_installdocs
66 dh_installman doc/dopewars.6
67 rm -rf debian/dopewars/usr/man
68 dh_installchangelogs ChangeLog
69 dh_installmenu
70 dh_strip
71 dh_compress
72 chmod 2755 debian/dopewars/usr/games/dopewars
73 chgrp games debian/dopewars/usr/games/dopewars
74 install -d debian/dopewars/usr/share/lintian/overrides
75 cp debian/lintian-override debian/dopewars/usr/share/lintian/overrides/dopewars
76 install -d debian/dopewars/usr/share/linda/overrides
77 cp debian/linda-override debian/dopewars/usr/share/linda/overrides/dopewars
78 dh_installdeb
79 dh_shlibdeps
80 dh_gencontrol
81 dh_md5sums
82 dh_builddeb
83
84 binary: binary-indep binary-arch
85 .PHONY: build clean binary-indep binary-arch binary install
0 version=3
1 http://people.debian.org/~lolando/sfdlr.php?project=dopewars dopewars-([\d.]*).tar.gz
0 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}-${VERSION}/
0 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}/html
11 DOCS = aiplayer.html configfile.html index.html i18n.html \
22 server.html clientplay.html credits.html example-cfg \
33 installation.html servercommands.html commandline.html \
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
227227 target_cpu = @target_cpu@
228228 target_os = @target_os@
229229 target_vendor = @target_vendor@
230 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}-${VERSION}/
230 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}/html
231231 DOCS = aiplayer.html configfile.html index.html i18n.html \
232232 server.html clientplay.html credits.html example-cfg \
233233 installation.html servercommands.html commandline.html \
0 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}-${VERSION}/help
0 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}/html/help
11 DOCS = cops.html general.html locations.html sounds.html \
22 drugs.html guns.html server.html
33 EXTRA_DIST = ${DOCS}
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
213213 target_cpu = @target_cpu@
214214 target_os = @target_os@
215215 target_vendor = @target_vendor@
216 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}-${VERSION}/help
216 DOCPATH = ${DESTDIR}${datadir}/doc/${PACKAGE}/html/help
217217 DOCS = cops.html general.html locations.html sounds.html \
218218 drugs.html guns.html server.html
219219
00 [Desktop Entry]
1 Name=dopewars
1 Name=Dopewars
22 Name[de]=Drogenkrieg
33 Name[pl]=Wojny narkotykowe
44 Comment=dopewars drug dealing game
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 SOURCES = $(dopewars_SOURCES)
1715
1816 srcdir = @srcdir@
1917 top_srcdir = @top_srcdir@
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 SOURCES = $(libcursesclient_a_SOURCES)
1715
1816 srcdir = @srcdir@
1917 top_srcdir = @top_srcdir@
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 SOURCES = $(libcursesport_a_SOURCES)
1715
1816 srcdir = @srcdir@
1917 top_srcdir = @top_srcdir@
23552355 path = g_strdup_printf("file://%s\\", bindir);
23562356 g_free(bindir);
23572357 #else
2358 path = g_strdup_printf("file://%s/doc/%s-%s/", DPDATADIR, PACKAGE, VERSION);
2358 path = g_strdup_printf("file://%s/doc/%s/html/", DPDATADIR, PACKAGE, VERSION);
23592359 #endif
23602360 return path;
23612361 }
24422442 AssignName(&ServerName, "localhost");
24432443 AssignName(&ServerMOTD, "");
24442444 AssignName(&BindAddress, "");
2445 AssignName(&WebBrowser, "/usr/bin/mozilla");
2445 AssignName(&WebBrowser, "/usr/bin/sensible-browser");
24462446
24472447 AssignName(&Sounds.FightHit, SNDPATH"colt.wav");
24482448 AssignName(&Sounds.EnemyBitchKilled, SNDPATH"shotdown.wav");
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 SOURCES = $(libgtkport_a_SOURCES)
1715
1816 srcdir = @srcdir@
1917 top_srcdir = @top_srcdir@
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 SOURCES = $(libguiclient_a_SOURCES)
1715
1816 srcdir = @srcdir@
1917 top_srcdir = @top_srcdir@
0 # Makefile.in generated by automake 1.9.5 from Makefile.am.
0 # Makefile.in generated by automake 1.9.6 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1212 # PARTICULAR PURPOSE.
1313
1414 @SET_MAKE@
15
16 SOURCES = $(libsound_esd_la_SOURCES) $(libsound_sdl_la_SOURCES) $(libsound_winmm_la_SOURCES)
1715
1816 srcdir = @srcdir@
1917 top_srcdir = @top_srcdir@