Make more agressive use of offset addressing.
authorAnthony Green <green@spindazzle.org>
Fri Oct 03 10:02:40 2008 -0700 (17 months ago)
changeset 453f5953419657
parent 44 fa6d71a71bb7
child 46 37b963cee079
Make more agressive use of offset addressing.
gcc/gcc/ChangeLog.ggx
gcc/gcc/config/ggx/ggx.c
gcc/gcc/config/ggx/ggx.h
gcc/gcc/config/ggx/ggx.md
gcc/libgcc/.svn/entries
gcc/libgcc/config.host
gcc/libgcc/config.host.mine
gcc/libgcc/config.host.r134920
gcc/libgcc/config.host.r139605
scripts/sum.bc~
src/binutils/configure.~1.110.~
src/gdb/ChangeLog.ggx~
src/gdb/ChangeLog.~1.9607.~
src/gdb/ggx-tdep.c~
src/gdb/ggx-tdep.h~
src/gdb/ggx2-tdep.c~
src/opcodes/ChangeLog.ggx
src/opcodes/ggx-opc.c
src/sim/ggx/ChangeLog
src/sim/ggx/interp.c
     1.1 --- a/gcc/gcc/ChangeLog.ggx	Wed Oct 01 11:51:50 2008 -0700
     1.2 +++ b/gcc/gcc/ChangeLog.ggx	Fri Oct 03 10:02:40 2008 -0700
     1.3 @@ -1,3 +1,15 @@
     1.4 +2008-10-03  Anthony Green  <green@spindazzle.org>
     1.5 +
     1.6 +	* config/ggx/ggx.md: Add "A" and "B" constraints.
     1.7 +	(ggx_general_movsrc_operand): Don't allow offset addressing.
     1.8 +	(*movqi, *loadqi_offset, *storeqi_offset): Add new patterns for
     1.9 +	offset addressing.
    1.10 +	(*movhi, *loadhi_offset, *storehi_offset): Add new patterns for
    1.11 +	offset addressing.
    1.12 +	(*movsi): Add new patterns for offset addressing.
    1.13 +	* config/ggx/ggx.h (GO_IF_LEGITIMATE_ADDRESS): Allow for offset addressing.
    1.14 +	* config/ggx/ggx.c (ggx_print_operand_address): Handle offset addressing.
    1.15 +
    1.16  2008-09-04  Anthony Green  <green@spindazzle.org>
    1.17  
    1.18  	* config/ggx/ggx.md (addsi3, subsi3): Add inc and dec support.
     2.1 --- a/gcc/gcc/config/ggx/ggx.c	Wed Oct 01 11:51:50 2008 -0700
     2.2 +++ b/gcc/gcc/config/ggx/ggx.c	Fri Oct 03 10:02:40 2008 -0700
     2.3 @@ -108,6 +108,10 @@
     2.4        fprintf (file, "(%s)", reg_names[REGNO (x)]);
     2.5        break;
     2.6        
     2.7 +    case PLUS:
     2.8 +      fprintf (file, "%d(%s)", INTVAL(XEXP (x, 1)), reg_names[REGNO (XEXP (x, 0))]);
     2.9 +      break;
    2.10 +
    2.11      default:
    2.12        output_addr_const (file, x);
    2.13        break;
     3.1 --- a/gcc/gcc/config/ggx/ggx.h	Wed Oct 01 11:51:50 2008 -0700
     3.2 +++ b/gcc/gcc/config/ggx/ggx.h	Fri Oct 03 10:02:40 2008 -0700
     3.3 @@ -519,6 +519,16 @@
     3.4     for a memory operand of mode MODE.  */
     3.5  #define GO_IF_LEGITIMATE_ADDRESS(MODE,X,LABEL)		\
     3.6    do {                                                  \
     3.7 +    if (GET_CODE(X)==PLUS)				\
     3.8 +      {							\
     3.9 +	rtx op1,op2;					\
    3.10 +	op1 = XEXP(X,0);				\
    3.11 +	op2 = XEXP(X,1);				\
    3.12 +	if (GET_CODE(op1) == REG			\
    3.13 +	    && CONSTANT_ADDRESS_P(op2)			\
    3.14 +	    && REGNO_OK_FOR_BASE_P(REGNO(op1)))		\
    3.15 +	  goto LABEL;					\
    3.16 +      }							\
    3.17      if (REG_P (X) && REGNO_OK_FOR_BASE_P (REGNO (X)))	\
    3.18        goto LABEL;					\
    3.19      if (GET_CODE (X) == SYMBOL_REF			\
     4.1 --- a/gcc/gcc/config/ggx/ggx.md	Wed Oct 01 11:51:50 2008 -0700
     4.2 +++ b/gcc/gcc/config/ggx/ggx.md	Fri Oct 03 10:02:40 2008 -0700
     4.3 @@ -2,6 +2,18 @@
     4.4  ;; Constraints
     4.5  ;; -------------------------------------------------------------------------
     4.6  
     4.7 +(define_constraint "A"
     4.8 +  "An absolute address."
     4.9 +  (and (match_code "mem")
    4.10 +       (match_test "GET_CODE (XEXP (op, 0)) == SYMBOL_REF
    4.11 +                  ||GET_CODE (XEXP (op, 0)) == LABEL_REF
    4.12 +                  ||GET_CODE (XEXP (op, 0)) == CONST")))
    4.13 +
    4.14 +(define_constraint "B"
    4.15 +  "An offset address."
    4.16 +  (and (match_code "mem")
    4.17 +       (match_test "GET_CODE (XEXP (op, 0)) == PLUS")))
    4.18 +
    4.19  (define_constraint "W"
    4.20    "A register indirect memory operand."
    4.21    (and (match_code "mem")
    4.22 @@ -174,6 +186,11 @@
    4.23    if (GET_CODE (op) == MEM && GET_CODE (XEXP (op, 0)) == LABEL_REF)
    4.24      return 1;
    4.25  
    4.26 +  if (GET_CODE (op) == MEM 
    4.27 +      && GET_CODE (XEXP (op, 0)) == PLUS
    4.28 +      && GET_CODE (XEXP (XEXP (op, 0), 0)) == REG)
    4.29 +    return 0;
    4.30 +
    4.31    return general_operand (op, mode);
    4.32  })
    4.33  
    4.34 @@ -232,8 +249,8 @@
    4.35    "sto.l  %2(%1), %0")
    4.36  
    4.37  (define_insn "*movsi"
    4.38 -  [(set (match_operand:SI 0 "general_operand" "=r,r,W,m,r,r")
    4.39 -	(match_operand:SI 1 "ggx_general_movsrc_operand" "r,i,r,r,W,m"))]
    4.40 +  [(set (match_operand:SI 0 "general_operand" "=r,r,W,A,r,r,B,r")
    4.41 +	(match_operand:SI 1 "ggx_general_movsrc_operand" "r,i,r,r,W,A,r,B"))]
    4.42    "register_operand (operands[0], SImode)
    4.43     || register_operand (operands[1], SImode)"
    4.44    "@
    4.45 @@ -242,7 +259,9 @@
    4.46     st.l   %0, %1
    4.47     sta.l  %0, %1
    4.48     ld.l   %0, %1
    4.49 -   lda.l  %0, %1")
    4.50 +   lda.l  %0, %1
    4.51 +   sto.l  %0, %1
    4.52 +   ldo.l  %0, %1")
    4.53  
    4.54  (define_expand "movqi"
    4.55    [(set (match_operand:QI 0 "general_operand" "")
    4.56 @@ -255,9 +274,25 @@
    4.57      operands[1] = force_reg (QImode, operands[1]);
    4.58  }")
    4.59  
    4.60 +(define_insn "*loadqi_offset"
    4.61 +  [(set (match_operand:QI 0 "register_operand" "=r")
    4.62 + 	(mem:QI (plus:SI
    4.63 +		  (match_operand:SI 1 "register_operand" "r")
    4.64 +		  (match_operand:SI 2 "immediate_operand" "i"))))]
    4.65 +  ""
    4.66 +  "ldo.b  %0, %2(%1)")
    4.67 +
    4.68 +(define_insn "*storeqi_offset"
    4.69 +  [(set (mem:QI (plus:SI
    4.70 +		  (match_operand:SI 1 "register_operand" "r")
    4.71 +		  (match_operand:SI 2 "immediate_operand" "i")))
    4.72 +        (match_operand:QI 0 "register_operand" "r"))]
    4.73 +  ""
    4.74 +  "sto.b  %2(%1), %0")
    4.75 +
    4.76  (define_insn "*movqi"
    4.77 -  [(set (match_operand:QI 0 "general_operand" "=r,r,W,m,r,r")
    4.78 -	(match_operand:QI 1 "general_operand" "r,i,r,r,W,m"))]
    4.79 +  [(set (match_operand:QI 0 "general_operand" "=r,r,W,A,r,r,B,r")
    4.80 +	(match_operand:QI 1 "ggx_general_movsrc_operand" "r,i,r,r,W,A,r,B"))]
    4.81    "register_operand (operands[0], QImode)
    4.82     || register_operand (operands[1], QImode)"
    4.83    "@
    4.84 @@ -266,7 +301,9 @@
    4.85     st.b   %0, %1
    4.86     sta.b  %0, %1
    4.87     ld.b   %0, %1
    4.88 -   lda.b  %0, %1")
    4.89 +   lda.b  %0, %1
    4.90 +   sto.b  %0, %1
    4.91 +   ldo.b  %0, %1")
    4.92  
    4.93  (define_expand "movhi"
    4.94    [(set (match_operand:HI 0 "general_operand" "")
    4.95 @@ -279,18 +316,36 @@
    4.96      operands[1] = force_reg (HImode, operands[1]);
    4.97  }")
    4.98  
    4.99 +(define_insn "*loadhi_offset"
   4.100 +  [(set (match_operand:HI 0 "register_operand" "=r")
   4.101 + 	(mem:HI (plus:SI
   4.102 +		  (match_operand:SI 1 "register_operand" "r")
   4.103 +		  (match_operand:SI 2 "immediate_operand" "i"))))]
   4.104 +  ""
   4.105 +  "ldo.s  %0, %2(%1)")
   4.106 +
   4.107 +(define_insn "*storehi_offset"
   4.108 +  [(set (mem:HI (plus:SI
   4.109 +		  (match_operand:SI 1 "register_operand" "r")
   4.110 +		  (match_operand:SI 2 "immediate_operand" "i")))
   4.111 +        (match_operand:HI 0 "register_operand" "r"))]
   4.112 +  ""
   4.113 +  "sto.s  %2(%1), %0")
   4.114 +
   4.115  (define_insn "*movhi"
   4.116 -  [(set (match_operand:HI 0 "general_operand" "=r,r,W,m,r,r")
   4.117 -	(match_operand:HI 1 "general_operand" "r,i,r,r,W,m"))]
   4.118 -  "register_operand (operands[0], HImode)
   4.119 -   || register_operand (operands[1], HImode)"
   4.120 +  [(set (match_operand:HI 0 "general_operand" "=r,r,W,A,r,r,B,r")
   4.121 +	(match_operand:HI 1 "ggx_general_movsrc_operand" "r,i,r,r,W,A,r,B"))]
   4.122 +  "(register_operand (operands[0], HImode)
   4.123 +    || register_operand (operands[1], HImode))"
   4.124    "@
   4.125     mov    %0, %1
   4.126     ldi.s  %0, %1
   4.127     st.s   %0, %1
   4.128     sta.s  %0, %1
   4.129     ld.s   %0, %1
   4.130 -   lda.s  %0, %1")
   4.131 +   lda.s  %0, %1
   4.132 +   sto.s  %0, %1
   4.133 +   ldo.s  %0, %1")
   4.134  
   4.135  ;; -------------------------------------------------------------------------
   4.136  ;; Compare instructions
     5.1 --- a/gcc/libgcc/.svn/entries	Wed Oct 01 11:51:50 2008 -0700
     5.2 +++ b/gcc/libgcc/.svn/entries	Fri Oct 03 10:02:40 2008 -0700
     5.3 @@ -73,14 +73,6 @@
     5.4  2008-09-03T12:10:49.831798Z
     5.5  139932
     5.6  pbrook
     5.7 -
     5.8 -
     5.9 -
    5.10 -
    5.11 -
    5.12 -config.host.r134920
    5.13 -config.host.r139605
    5.14 -config.host.mine
    5.15  
    5.16  configure
    5.17  file
     6.1 --- a/gcc/libgcc/config.host	Wed Oct 01 11:51:50 2008 -0700
     6.2 +++ b/gcc/libgcc/config.host	Fri Oct 03 10:02:40 2008 -0700
     6.3 @@ -85,14 +85,8 @@
     6.4  	;;
     6.5  frv*)	cpu_type=frv
     6.6  	;;
     6.7 -<<<<<<< .mine
     6.8  ggx*)	cpu_type=ggx
     6.9  	;;
    6.10 -xscale-*-*)
    6.11 -	cpu_type=arm
    6.12 -	;;
    6.13 -=======
    6.14 ->>>>>>> .r139605
    6.15  i[34567]86-*-*)
    6.16  	cpu_type=i386
    6.17  	;;
     7.1 --- a/gcc/libgcc/config.host.mine	Wed Oct 01 11:51:50 2008 -0700
     7.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.3 @@ -1,659 +0,0 @@
     7.4 -# libgcc host-specific configuration file.
     7.5 -# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
     7.6 -# 2008 Free Software Foundation, Inc.
     7.7 -
     7.8 -#This file is part of GCC.
     7.9 -
    7.10 -#GCC is free software; you can redistribute it and/or modify it under
    7.11 -#the terms of the GNU General Public License as published by the Free
    7.12 -#Software Foundation; either version 2, or (at your option) any later
    7.13 -#version.
    7.14 -
    7.15 -#GCC is distributed in the hope that it will be useful, but WITHOUT
    7.16 -#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    7.17 -#FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    7.18 -#for more details.
    7.19 -
    7.20 -#You should have received a copy of the GNU General Public License
    7.21 -#along with GCC; see the file COPYING.  If not, write to the Free
    7.22 -#Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
    7.23 -#02110-1301, USA.
    7.24 -
    7.25 -# This is the libgcc host-specific configuration file
    7.26 -# where a configuration type is mapped to different system-specific
    7.27 -# definitions and files.  This is invoked by the autoconf-generated
    7.28 -# configure script.  Putting it in a separate shell file lets us skip
    7.29 -# running autoconf when modifying host-specific information.
    7.30 -
    7.31 -# This file bears an obvious resemblance to gcc/config.gcc.  The cases
    7.32 -# should be kept similar, to ease moving library-specific settings
    7.33 -# from config.gcc to this file.  That is also why tmake_file is
    7.34 -# left as tmake_file, rather than hmake_file, even though this library
    7.35 -# switches on ${host}.
    7.36 -
    7.37 -# This file switches on the shell variable ${host}, and also uses the
    7.38 -# following shell variables:
    7.39 -#
    7.40 -#  with_*		Various variables as set by configure.
    7.41 -
    7.42 -# This file sets the following shell variables for use by the
    7.43 -# autoconf-generated configure script:
    7.44 -#
    7.45 -#  asm_hidden_op	The assembler pseudo-op to use for hide
    7.46 -#			lists for object files implemented in
    7.47 -#			assembly (with -fvisibility=hidden for C).
    7.48 -#			The default is ".hidden".
    7.49 -#  cpu_type		The name of the cpu, if different from the first
    7.50 -#			chunk of the canonical host name.
    7.51 -#  extra_parts		List of extra object files that should be compiled
    7.52 -#			for this target machine.  This may be overridden
    7.53 -#			by setting EXTRA_PARTS in a tmake_file fragment.
    7.54 -#			If either is set, EXTRA_PARTS and
    7.55 -#			EXTRA_MULTILIB_PARTS inherited from the GCC
    7.56 -#			subdirectory will be ignored.
    7.57 -#  tmake_file		A list of machine-description-specific
    7.58 -#			makefile-fragments, if different from
    7.59 -#			"$cpu_type/t-$cpu_type".
    7.60 -
    7.61 -asm_hidden_op=.hidden
    7.62 -extra_parts=
    7.63 -tmake_file=
    7.64 -
    7.65 -# Set default cpu_type so it can be updated in each machine entry.
    7.66 -cpu_type=`echo ${host} | sed 's/-.*$//'`
    7.67 -case ${host} in
    7.68 -m32c*-*-*)
    7.69 -        cpu_type=m32c
    7.70 -        ;;
    7.71 -alpha*-*-*)
    7.72 -	cpu_type=alpha
    7.73 -	;;
    7.74 -am33_2.0-*-linux*)
    7.75 -	cpu_type=mn10300
    7.76 -	;;
    7.77 -strongarm*-*-*)
    7.78 -	cpu_type=arm
    7.79 -	;;
    7.80 -arm*-*-*)
    7.81 -	cpu_type=arm
    7.82 -	;;
    7.83 -avr-*-*)
    7.84 -	cpu_type=avr
    7.85 -	;;    
    7.86 -bfin*-*)
    7.87 -	cpu_type=bfin
    7.88 -	;;
    7.89 -ep9312*-*-*)
    7.90 -	cpu_type=arm
    7.91 -	;;
    7.92 -fido-*-*)
    7.93 -	cpu_type=m68k
    7.94 -	;;
    7.95 -frv*)	cpu_type=frv
    7.96 -	;;
    7.97 -ggx*)	cpu_type=ggx
    7.98 -	;;
    7.99 -xscale-*-*)
   7.100 -	cpu_type=arm
   7.101 -	;;
   7.102 -i[34567]86-*-*)
   7.103 -	cpu_type=i386
   7.104 -	;;
   7.105 -x86_64-*-*)
   7.106 -	cpu_type=i386
   7.107 -	;;
   7.108 -ia64-*-*)
   7.109 -	;;
   7.110 -hppa*-*-* | parisc*-*-*)
   7.111 -	cpu_type=pa
   7.112 -	;;
   7.113 -m32r*-*-*)
   7.114 -        cpu_type=m32r
   7.115 -        ;;
   7.116 -m680[012]0-*-*)
   7.117 -	cpu_type=m68k
   7.118 -	;;
   7.119 -m68k-*-*)
   7.120 -	;;
   7.121 -mips*-*-*)
   7.122 -	cpu_type=mips
   7.123 -	;;
   7.124 -powerpc*-*-*)
   7.125 -	cpu_type=rs6000
   7.126 -	;;
   7.127 -rs6000*-*-*)
   7.128 -	;;
   7.129 -score*-*-*)
   7.130 -	cpu_type=score
   7.131 -	;;
   7.132 -sparc64*-*-*)
   7.133 -	cpu_type=sparc
   7.134 -	;;
   7.135 -sparc*-*-*)
   7.136 -	cpu_type=sparc
   7.137 -	;;
   7.138 -spu*-*-*)
   7.139 -	cpu_type=spu
   7.140 -	;;
   7.141 -s390*-*-*)
   7.142 -	cpu_type=s390
   7.143 -	;;
   7.144 -# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
   7.145 -sh[123456789lbe]*-*-*)
   7.146 -	cpu_type=sh
   7.147 -	;;
   7.148 -esac
   7.149 -
   7.150 -# Common parts for widely ported systems.
   7.151 -case ${host} in
   7.152 -*-*-darwin*)
   7.153 -  asm_hidden_op=.private_extern
   7.154 -  tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
   7.155 -  ;;
   7.156 -*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
   7.157 -  # This is the place-holder for the generic a.out configuration
   7.158 -  # of FreeBSD.  No actual configuration resides here since
   7.159 -  # there was only ever a bare-bones ix86 configuration for
   7.160 -  # a.out and it exists solely in the machine-specific section.
   7.161 -  # This place-holder must exist to avoid dropping into
   7.162 -  # the generic ELF configuration of FreeBSD (i.e. it must be
   7.163 -  # ordered before that section).
   7.164 -  ;;
   7.165 -*-*-freebsd*)
   7.166 -  # This is the generic ELF configuration of FreeBSD.  Later
   7.167 -  # machine-specific sections may refine and add to this
   7.168 -  # configuration.
   7.169 -  ;;
   7.170 -*-*-linux*libc1* | *-*-linux*aout*)
   7.171 -  # Avoid the generic linux case.
   7.172 -  ;;
   7.173 -*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu)
   7.174 -  # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
   7.175 -  extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
   7.176 -  ;;
   7.177 -*-*-gnu*)
   7.178 -  ;;
   7.179 -*-*-netbsd*)
   7.180 -  ;;
   7.181 -*-*-openbsd*)
   7.182 -  ;;
   7.183 -*-*-rtems*)
   7.184 -  ;;
   7.185 -*-*-vxworks*)
   7.186 -  ;;
   7.187 -*-*-elf)
   7.188 -  ;;
   7.189 -esac
   7.190 -
   7.191 -case ${host} in
   7.192 -# Support site-specific machine types.
   7.193 -*local*)
   7.194 -	rest=`echo ${host} | sed -e "s/$cpu_type-//"`
   7.195 -	if test -f $srcdir/config/${cpu_type}/t-$rest
   7.196 -	then tmake_file=${cpu_type}/t-$rest
   7.197 -	fi
   7.198 -	;;
   7.199 -alpha*-*-unicosmk*)
   7.200 -	;;
   7.201 -alpha*-*-linux*)
   7.202 -	tmake_file="${tmake_file} alpha/t-crtfm"
   7.203 -	extra_parts="$extra_parts crtfastmath.o"
   7.204 -	;;
   7.205 -alpha*-*-gnu*)
   7.206 -	;;
   7.207 -alpha*-*-freebsd*)
   7.208 -	;;
   7.209 -alpha*-*-netbsd*)
   7.210 -	;;
   7.211 -alpha*-*-openbsd*)
   7.212 -	;;
   7.213 -alpha*-dec-osf[45]*)
   7.214 -	;;
   7.215 -alpha64-dec-*vms*)
   7.216 -	;;
   7.217 -alpha*-dec-*vms*)
   7.218 -	;;
   7.219 -arc-*-elf*)
   7.220 -	;;
   7.221 -arm-*-coff* | armel-*-coff*)
   7.222 -	;;
   7.223 -arm-semi-aof | armel-semi-aof)
   7.224 -	;;
   7.225 -arm-wrs-vxworks)
   7.226 -	;;
   7.227 -arm*-*-freebsd*|strongarm*-*-freebsd*)
   7.228 -	;;
   7.229 -arm*-*-netbsdelf*)
   7.230 -	;;
   7.231 -arm*-*-netbsd*)
   7.232 -	;;
   7.233 -arm*-*-linux*)			# ARM GNU/Linux with ELF
   7.234 -	;;
   7.235 -arm*-*-uclinux*)		# ARM ucLinux
   7.236 -	;;
   7.237 -arm*-*-ecos-elf)
   7.238 -	;;
   7.239 -arm*-*-eabi* | arm*-*-symbianelf* )
   7.240 -	;;
   7.241 -arm*-*-rtems*)
   7.242 -	;;
   7.243 -arm*-*-elf | ep9312-*-elf)
   7.244 -	;;
   7.245 -arm*-wince-pe*)
   7.246 -	;;
   7.247 -arm-*-pe*)
   7.248 -	;;
   7.249 -arm*-*-kaos*)
   7.250 -	;;
   7.251 -avr-*-rtems*)
   7.252 -	;;
   7.253 -avr-*-*)
   7.254 -    # Make HImode functions for AVR
   7.255 -    tmake_file=${cpu_type}/t-avr
   7.256 -	;;
   7.257 -bfin*-elf*)
   7.258 -        ;;
   7.259 -bfin*-uclinux*)
   7.260 -        ;;
   7.261 -bfin*-linux-uclibc*)
   7.262 -	# No need to build crtbeginT.o on uClibc systems.  Should probably
   7.263 -	# be moved to the OS specific section above.
   7.264 -	extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
   7.265 -	;;
   7.266 -bfin*-*)
   7.267 -        ;;
   7.268 -cris-*-aout)
   7.269 -	;;
   7.270 -crisv32-*-elf | crisv32-*-none | cris-*-elf | cris-*-none)
   7.271 -	extra_parts="crtbegin.o crtend.o"
   7.272 -	;;
   7.273 -cris-*-linux* | crisv32-*-linux*)
   7.274 -	;;
   7.275 -crx-*-elf)
   7.276 -	;;
   7.277 -fido-*-elf)
   7.278 -	;;
   7.279 -fr30-*-elf)
   7.280 -	;;
   7.281 -frv-*-elf)
   7.282 -	;;
   7.283 -frv-*-*linux*)
   7.284 -	;;
   7.285 -ggx-*-elf)
   7.286 -	;;
   7.287 -h8300-*-rtems*)
   7.288 -	;;
   7.289 -h8300-*-elf*)
   7.290 -	;;
   7.291 -h8300-*-*)
   7.292 -	;;
   7.293 -hppa*64*-*-linux* | parisc*64*-*-linux*)
   7.294 -	;;
   7.295 -hppa*-*-linux* | parisc*-*-linux*)
   7.296 -	;;
   7.297 -hppa1.1-*-pro*)
   7.298 -	;;
   7.299 -hppa1.1-*-osf*)
   7.300 -	;;
   7.301 -hppa1.1-*-bsd*)
   7.302 -	;;
   7.303 -hppa[12]*-*-hpux10*)
   7.304 -	;;
   7.305 -hppa*64*-*-hpux11*)
   7.306 -	;;
   7.307 -hppa[12]*-*-hpux11*)
   7.308 -	;;
   7.309 -i[34567]86-*-darwin*)
   7.310 -	;;
   7.311 -x86_64-*-darwin*)
   7.312 -	tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin"
   7.313 -	;;
   7.314 -i[34567]86-*-elf*)
   7.315 -	;;
   7.316 -x86_64-*-elf*)
   7.317 -	;;
   7.318 -i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
   7.319 -	;;
   7.320 -i[34567]86-*-aout*)
   7.321 -	;;
   7.322 -i[34567]86-*-beoself* | i[34567]86-*-beos*)
   7.323 -	;;
   7.324 -i[34567]86-*-freebsd*)
   7.325 -	;;
   7.326 -x86_64-*-freebsd*)
   7.327 -	;;
   7.328 -i[34567]86-*-netbsdelf*)
   7.329 -	;;
   7.330 -i[34567]86-*-netbsd*)
   7.331 -	;;
   7.332 -x86_64-*-netbsd*)
   7.333 -	;;
   7.334 -i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
   7.335 -	;;
   7.336 -i[34567]86-*-openbsd*)
   7.337 -	;;
   7.338 -i[34567]86-*-coff*)
   7.339 -	;;
   7.340 -i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu)
   7.341 -	extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
   7.342 -	tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
   7.343 -	;;
   7.344 -x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
   7.345 -	extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
   7.346 -	tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
   7.347 -	;;
   7.348 -i[34567]86-*-gnu*)
   7.349 -	;;
   7.350 -i[34567]86-pc-msdosdjgpp*)
   7.351 -	;;
   7.352 -i[34567]86-*-lynxos*)
   7.353 -	;;
   7.354 -i[3456x]86-*-netware*)
   7.355 -	case /${with_ld} in
   7.356 -	*/nwld)
   7.357 -	 	tmake_file="${tmake_file} i386/t-nwld"
   7.358 -		;;
   7.359 -	esac
   7.360 -	;;
   7.361 -i[34567]86-*-nto-qnx*)
   7.362 -	;;
   7.363 -i[34567]86-*-rtems*)
   7.364 -	;;
   7.365 -i[34567]86-*-sco3.2v5*)	# 80386 running SCO Open Server 5
   7.366 -	;;
   7.367 -i[34567]86-*-solaris2*)
   7.368 -	;;
   7.369 -i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
   7.370 -       ;;
   7.371 -i[34567]86-*-sysv4*)		# Intel 80386's running system V.4
   7.372 -	;;
   7.373 -i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
   7.374 -	;;
   7.375 -i[34567]86-*-pe)
   7.376 -	;;
   7.377 -i[34567]86-*-cygwin* | i[34567]86-*-mingw*)
   7.378 -	extra_parts="crtbegin.o crtend.o crtfastmath.o"
   7.379 -	tmake_file="i386/t-cygming i386/t-crtfm"
   7.380 -	;;
   7.381 -x86_64-*-mingw*)
   7.382 -	;;
   7.383 -i[34567]86-*-uwin*)
   7.384 -	;;
   7.385 -i[34567]86-*-interix3*)
   7.386 -	;;
   7.387 -i[34567]86-*-kaos*)
   7.388 -	;;
   7.389 -ia64*-*-elf*)
   7.390 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
   7.391 -	tmake_file="ia64/t-ia64"
   7.392 -	;;
   7.393 -ia64*-*-freebsd*)
   7.394 -	;;
   7.395 -ia64*-*-linux*)
   7.396 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
   7.397 -	tmake_file="ia64/t-ia64"
   7.398 -	;;
   7.399 -ia64*-*-hpux*)
   7.400 -	;;
   7.401 -iq2000*-*-elf*)
   7.402 -        ;;
   7.403 -m32r-*-elf*)
   7.404 - 	;;
   7.405 -m32rle-*-elf*)
   7.406 -	;;
   7.407 -m32r-*-linux*)
   7.408 - 	;;
   7.409 -m32rle-*-linux*)
   7.410 -	;;
   7.411 -m68hc11-*-*|m6811-*-*)
   7.412 -        ;;
   7.413 -m68hc12-*-*|m6812-*-*)
   7.414 -        ;;
   7.415 -m68k-*-aout*)
   7.416 -	;;
   7.417 -m68k-*-coff*)
   7.418 -	;;
   7.419 -m68020-*-elf* | m68k-*-elf*)
   7.420 -	;;
   7.421 -m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
   7.422 -	;;
   7.423 -m68k*-*-openbsd*)
   7.424 -	;;
   7.425 -m68k-*-uclinux*)		# Motorola m68k/ColdFire running uClinux with uClibc
   7.426 -	;;
   7.427 -m68k-*-linux*)		# Motorola m68k's running GNU/Linux
   7.428 -				# with ELF format using glibc 2
   7.429 -				# aka the GNU/Linux C library 6.
   7.430 -	;;
   7.431 -m68k-*-rtems*)
   7.432 -	;;
   7.433 -mcore-*-elf)
   7.434 -	;;
   7.435 -mcore-*-pe*)
   7.436 -	;;
   7.437 -mips-sgi-irix[56]*)
   7.438 -	;;
   7.439 -mips*-*-netbsd*)			# NetBSD/mips, either endian.
   7.440 -	;;
   7.441 -mips64*-*-linux*)
   7.442 -	;;
   7.443 -mips*-*-linux*)				# Linux MIPS, either endian.
   7.444 -	;;
   7.445 -mips*-*-openbsd*)
   7.446 -	;;
   7.447 -mipsisa32-*-elf* | mipsisa32el-*-elf*)
   7.448 -	;;
   7.449 -mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
   7.450 -	;;
   7.451 -mipsisa64-*-elf* | mipsisa64el-*-elf*)
   7.452 -	;;
   7.453 -mipsisa64sr71k-*-elf*)
   7.454 -        ;;
   7.455 -mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
   7.456 -	;;
   7.457 -mips-*-elf* | mipsel-*-elf*)
   7.458 -	;;
   7.459 -mips64-*-elf* | mips64el-*-elf*)
   7.460 -	;;
   7.461 -mips64vr-*-elf* | mips64vrel-*-elf*)
   7.462 -        ;;
   7.463 -mips64orion-*-elf* | mips64orionel-*-elf*)
   7.464 -	;;
   7.465 -mips*-*-rtems*)
   7.466 -	;;
   7.467 -mips-wrs-vxworks)
   7.468 -	;;
   7.469 -mips-wrs-windiss)	# Instruction-level simulator for VxWorks.
   7.470 -	;;
   7.471 -mipstx39-*-elf* | mipstx39el-*-elf*)
   7.472 -	;;
   7.473 -mmix-knuth-mmixware)
   7.474 -	;;
   7.475 -mn10300-*-*)
   7.476 -	;;
   7.477 -mt-*-elf)
   7.478 -        ;;
   7.479 -pdp11-*-bsd)
   7.480 -        ;;
   7.481 -pdp11-*-*)
   7.482 -	;;
   7.483 -powerpc64-*-linux*)
   7.484 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   7.485 -	;;
   7.486 -powerpc64-*-gnu*)
   7.487 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   7.488 -	;;
   7.489 -powerpc-*-beos*)
   7.490 -	;;
   7.491 -powerpc-*-darwin*)
   7.492 -	;;
   7.493 -powerpc64-*-darwin*)
   7.494 -	;;
   7.495 -powerpc*-*-freebsd*)
   7.496 -	;;
   7.497 -powerpc-*-netbsd*)
   7.498 -	;;
   7.499 -powerpc-*-chorusos*)
   7.500 -	;;
   7.501 -powerpc-*-eabispe*)
   7.502 -	;;
   7.503 -powerpc-*-eabisimaltivec*)
   7.504 -	;;
   7.505 -powerpc-*-eabisim*)
   7.506 -	;;
   7.507 -powerpc-*-elf*)
   7.508 -	;;
   7.509 -powerpc-*-eabialtivec*)
   7.510 -	;;
   7.511 -powerpc-*-eabi*)
   7.512 -	;;
   7.513 -powerpc-*-rtems*)
   7.514 -	;;
   7.515 -powerpc-*-linux*altivec*)
   7.516 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   7.517 -	;;
   7.518 -powerpc-*-linux*spe*)
   7.519 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   7.520 -	;;
   7.521 -powerpc-*-linux*)
   7.522 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   7.523 -	;;
   7.524 -powerpc-*-gnu-gnualtivec*)
   7.525 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   7.526 -	;;
   7.527 -powerpc-*-gnu*)
   7.528 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   7.529 -	;;
   7.530 -powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
   7.531 -	;;
   7.532 -powerpc-wrs-windiss*)  # Instruction-level simulator for VxWorks.
   7.533 -	;;
   7.534 -powerpc-*-lynxos*)
   7.535 -	;;
   7.536 -powerpcle-*-sysv*)
   7.537 -	;;
   7.538 -powerpcle-*-elf*)
   7.539 -	;;
   7.540 -powerpcle-*-eabisim*)
   7.541 -	;;
   7.542 -powerpcle-*-eabi*)
   7.543 -	;;
   7.544 -powerpc-*-kaos*)
   7.545 -	;;
   7.546 -powerpcle-*-kaos*)
   7.547 -	;;
   7.548 -rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
   7.549 -	;;
   7.550 -rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
   7.551 -	;;
   7.552 -rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
   7.553 -	;;
   7.554 -rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
   7.555 -	;;
   7.556 -s390-*-linux*)
   7.557 -	;;
   7.558 -s390x-*-linux*)
   7.559 -	;;
   7.560 -s390x-ibm-tpf*)
   7.561 -	;;
   7.562 -score-*-elf)
   7.563 -        ;;
   7.564 -sh-*-elf* | sh[12346l]*-*-elf* | sh*-*-kaos* | \
   7.565 -sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
   7.566 -  sh-*-linux* | sh[346lbe]*-*-linux* | \
   7.567 -  sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
   7.568 -   sh64-*-netbsd* | sh64l*-*-netbsd*)
   7.569 -	case ${host} in
   7.570 -	sh*-*-linux*)
   7.571 -		tmake_file="${tmake_file} sh/t-linux"
   7.572 -		;;
   7.573 -	esac
   7.574 -	;;
   7.575 -sh-*-rtems*)
   7.576 -	;;
   7.577 -sh-wrs-vxworks)
   7.578 -	;;
   7.579 -sh-*-*)
   7.580 -	;;
   7.581 -sparc-*-netbsdelf*)
   7.582 -	;;
   7.583 -sparc64-*-openbsd*)
   7.584 -	;;
   7.585 -sparc-*-elf*)
   7.586 -	;;
   7.587 -sparc-*-linux*)		# SPARC's running GNU/Linux, libc6
   7.588 -	extra_parts="$extra_parts crtfastmath.o"
   7.589 -	tmake_file="${tmake_file} sparc/t-crtfm"
   7.590 -	;;
   7.591 -sparc-*-rtems*)
   7.592 -	;;
   7.593 -sparc64-*-solaris2* | sparcv9-*-solaris2*)
   7.594 -	;;
   7.595 -sparc-*-solaris2*)
   7.596 -	;;
   7.597 -sparc-*-sysv4*)
   7.598 -	;;
   7.599 -sparc64-*-elf*)
   7.600 -	;;
   7.601 -sparc-wrs-vxworks)
   7.602 -	;;
   7.603 -sparc64-*-freebsd*|ultrasparc-*-freebsd*)
   7.604 -	;;
   7.605 -sparc64-*-linux*)		# 64-bit SPARC's running GNU/Linux
   7.606 -	extra_parts="$extra_parts crtfastmath.o"
   7.607 -	tmake_file="${tmake_file} sparc/t-crtfm"
   7.608 -	;;
   7.609 -sparc64-*-netbsd*)
   7.610 -	;;
   7.611 -spu-*-elf*)
   7.612 -	;;
   7.613 -strongarm-*-elf*)
   7.614 -	;;
   7.615 -strongarm-*-pe)
   7.616 -	;;
   7.617 -strongarm-*-kaos*)
   7.618 -	;;
   7.619 -v850e1-*-*)
   7.620 -	;;
   7.621 -v850e-*-*)
   7.622 -	;;
   7.623 -v850-*-*)
   7.624 -	;;
   7.625 -vax-*-bsd*)			# VAXen running BSD
   7.626 -	;;
   7.627 -vax-*-sysv*)			# VAXen running system V
   7.628 -	;;
   7.629 -vax-*-netbsdelf*)
   7.630 -	;;
   7.631 -vax-*-netbsd*)
   7.632 -	;;
   7.633 -vax-*-openbsd*)
   7.634 -	;;
   7.635 -vax-*-ultrix*)			# VAXen running ultrix
   7.636 -	;;
   7.637 -xscale-*-elf)
   7.638 -	;;
   7.639 -xscale-*-coff)
   7.640 -	;;
   7.641 -xstormy16-*-elf)
   7.642 -	;;
   7.643 -xtensa-*-elf*)
   7.644 -	;;
   7.645 -xtensa-*-linux*)
   7.646 -	;;
   7.647 -am33_2.0-*-linux*)
   7.648 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
   7.649 -	;;
   7.650 -m32c-*-elf*)
   7.651 - 	;;
   7.652 -*)
   7.653 -	echo "*** Configuration ${host} not supported" 1>&2
   7.654 -	exit 1
   7.655 -	;;
   7.656 -esac
   7.657 -
   7.658 -case ${host} in
   7.659 -i[34567]86-*-linux* | x86_64-*-linux*)
   7.660 -	tmake_file="${tmake_file} t-tls"
   7.661 -	;;
   7.662 -esac
     8.1 --- a/gcc/libgcc/config.host.r134920	Wed Oct 01 11:51:50 2008 -0700
     8.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.3 @@ -1,655 +0,0 @@
     8.4 -# libgcc host-specific configuration file.
     8.5 -# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
     8.6 -# 2008 Free Software Foundation, Inc.
     8.7 -
     8.8 -#This file is part of GCC.
     8.9 -
    8.10 -#GCC is free software; you can redistribute it and/or modify it under
    8.11 -#the terms of the GNU General Public License as published by the Free
    8.12 -#Software Foundation; either version 2, or (at your option) any later
    8.13 -#version.
    8.14 -
    8.15 -#GCC is distributed in the hope that it will be useful, but WITHOUT
    8.16 -#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    8.17 -#FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    8.18 -#for more details.
    8.19 -
    8.20 -#You should have received a copy of the GNU General Public License
    8.21 -#along with GCC; see the file COPYING.  If not, write to the Free
    8.22 -#Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
    8.23 -#02110-1301, USA.
    8.24 -
    8.25 -# This is the libgcc host-specific configuration file
    8.26 -# where a configuration type is mapped to different system-specific
    8.27 -# definitions and files.  This is invoked by the autoconf-generated
    8.28 -# configure script.  Putting it in a separate shell file lets us skip
    8.29 -# running autoconf when modifying host-specific information.
    8.30 -
    8.31 -# This file bears an obvious resemblance to gcc/config.gcc.  The cases
    8.32 -# should be kept similar, to ease moving library-specific settings
    8.33 -# from config.gcc to this file.  That is also why tmake_file is
    8.34 -# left as tmake_file, rather than hmake_file, even though this library
    8.35 -# switches on ${host}.
    8.36 -
    8.37 -# This file switches on the shell variable ${host}, and also uses the
    8.38 -# following shell variables:
    8.39 -#
    8.40 -#  with_*		Various variables as set by configure.
    8.41 -
    8.42 -# This file sets the following shell variables for use by the
    8.43 -# autoconf-generated configure script:
    8.44 -#
    8.45 -#  asm_hidden_op	The assembler pseudo-op to use for hide
    8.46 -#			lists for object files implemented in
    8.47 -#			assembly (with -fvisibility=hidden for C).
    8.48 -#			The default is ".hidden".
    8.49 -#  cpu_type		The name of the cpu, if different from the first
    8.50 -#			chunk of the canonical host name.
    8.51 -#  extra_parts		List of extra object files that should be compiled
    8.52 -#			for this target machine.  This may be overridden
    8.53 -#			by setting EXTRA_PARTS in a tmake_file fragment.
    8.54 -#			If either is set, EXTRA_PARTS and
    8.55 -#			EXTRA_MULTILIB_PARTS inherited from the GCC
    8.56 -#			subdirectory will be ignored.
    8.57 -#  tmake_file		A list of machine-description-specific
    8.58 -#			makefile-fragments, if different from
    8.59 -#			"$cpu_type/t-$cpu_type".
    8.60 -
    8.61 -asm_hidden_op=.hidden
    8.62 -extra_parts=
    8.63 -tmake_file=
    8.64 -
    8.65 -# Set default cpu_type so it can be updated in each machine entry.
    8.66 -cpu_type=`echo ${host} | sed 's/-.*$//'`
    8.67 -case ${host} in
    8.68 -m32c*-*-*)
    8.69 -        cpu_type=m32c
    8.70 -        ;;
    8.71 -alpha*-*-*)
    8.72 -	cpu_type=alpha
    8.73 -	;;
    8.74 -am33_2.0-*-linux*)
    8.75 -	cpu_type=mn10300
    8.76 -	;;
    8.77 -strongarm*-*-*)
    8.78 -	cpu_type=arm
    8.79 -	;;
    8.80 -arm*-*-*)
    8.81 -	cpu_type=arm
    8.82 -	;;
    8.83 -avr-*-*)
    8.84 -	cpu_type=avr
    8.85 -	;;    
    8.86 -bfin*-*)
    8.87 -	cpu_type=bfin
    8.88 -	;;
    8.89 -ep9312*-*-*)
    8.90 -	cpu_type=arm
    8.91 -	;;
    8.92 -fido-*-*)
    8.93 -	cpu_type=m68k
    8.94 -	;;
    8.95 -frv*)	cpu_type=frv
    8.96 -	;;
    8.97 -xscale-*-*)
    8.98 -	cpu_type=arm
    8.99 -	;;
   8.100 -i[34567]86-*-*)
   8.101 -	cpu_type=i386
   8.102 -	;;
   8.103 -x86_64-*-*)
   8.104 -	cpu_type=i386
   8.105 -	;;
   8.106 -ia64-*-*)
   8.107 -	;;
   8.108 -hppa*-*-* | parisc*-*-*)
   8.109 -	cpu_type=pa
   8.110 -	;;
   8.111 -m32r*-*-*)
   8.112 -        cpu_type=m32r
   8.113 -        ;;
   8.114 -m680[012]0-*-*)
   8.115 -	cpu_type=m68k
   8.116 -	;;
   8.117 -m68k-*-*)
   8.118 -	;;
   8.119 -mips*-*-*)
   8.120 -	cpu_type=mips
   8.121 -	;;
   8.122 -powerpc*-*-*)
   8.123 -	cpu_type=rs6000
   8.124 -	;;
   8.125 -rs6000*-*-*)
   8.126 -	;;
   8.127 -score*-*-*)
   8.128 -	cpu_type=score
   8.129 -	;;
   8.130 -sparc64*-*-*)
   8.131 -	cpu_type=sparc
   8.132 -	;;
   8.133 -sparc*-*-*)
   8.134 -	cpu_type=sparc
   8.135 -	;;
   8.136 -spu*-*-*)
   8.137 -	cpu_type=spu
   8.138 -	;;
   8.139 -s390*-*-*)
   8.140 -	cpu_type=s390
   8.141 -	;;
   8.142 -# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
   8.143 -sh[123456789lbe]*-*-*)
   8.144 -	cpu_type=sh
   8.145 -	;;
   8.146 -esac
   8.147 -
   8.148 -# Common parts for widely ported systems.
   8.149 -case ${host} in
   8.150 -*-*-darwin*)
   8.151 -  asm_hidden_op=.private_extern
   8.152 -  tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
   8.153 -  ;;
   8.154 -*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
   8.155 -  # This is the place-holder for the generic a.out configuration
   8.156 -  # of FreeBSD.  No actual configuration resides here since
   8.157 -  # there was only ever a bare-bones ix86 configuration for
   8.158 -  # a.out and it exists solely in the machine-specific section.
   8.159 -  # This place-holder must exist to avoid dropping into
   8.160 -  # the generic ELF configuration of FreeBSD (i.e. it must be
   8.161 -  # ordered before that section).
   8.162 -  ;;
   8.163 -*-*-freebsd*)
   8.164 -  # This is the generic ELF configuration of FreeBSD.  Later
   8.165 -  # machine-specific sections may refine and add to this
   8.166 -  # configuration.
   8.167 -  ;;
   8.168 -*-*-linux*libc1* | *-*-linux*aout*)
   8.169 -  # Avoid the generic linux case.
   8.170 -  ;;
   8.171 -*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu)
   8.172 -  # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
   8.173 -  extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
   8.174 -  ;;
   8.175 -*-*-gnu*)
   8.176 -  ;;
   8.177 -*-*-netbsd*)
   8.178 -  ;;
   8.179 -*-*-openbsd*)
   8.180 -  ;;
   8.181 -*-*-rtems*)
   8.182 -  ;;
   8.183 -*-*-vxworks*)
   8.184 -  ;;
   8.185 -*-*-elf)
   8.186 -  ;;
   8.187 -esac
   8.188 -
   8.189 -case ${host} in
   8.190 -# Support site-specific machine types.
   8.191 -*local*)
   8.192 -	rest=`echo ${host} | sed -e "s/$cpu_type-//"`
   8.193 -	if test -f $srcdir/config/${cpu_type}/t-$rest
   8.194 -	then tmake_file=${cpu_type}/t-$rest
   8.195 -	fi
   8.196 -	;;
   8.197 -alpha*-*-unicosmk*)
   8.198 -	;;
   8.199 -alpha*-*-linux*)
   8.200 -	tmake_file="${tmake_file} alpha/t-crtfm"
   8.201 -	extra_parts="$extra_parts crtfastmath.o"
   8.202 -	;;
   8.203 -alpha*-*-gnu*)
   8.204 -	;;
   8.205 -alpha*-*-freebsd*)
   8.206 -	;;
   8.207 -alpha*-*-netbsd*)
   8.208 -	;;
   8.209 -alpha*-*-openbsd*)
   8.210 -	;;
   8.211 -alpha*-dec-osf[45]*)
   8.212 -	;;
   8.213 -alpha64-dec-*vms*)
   8.214 -	;;
   8.215 -alpha*-dec-*vms*)
   8.216 -	;;
   8.217 -arc-*-elf*)
   8.218 -	;;
   8.219 -arm-*-coff* | armel-*-coff*)
   8.220 -	;;
   8.221 -arm-semi-aof | armel-semi-aof)
   8.222 -	;;
   8.223 -arm-wrs-vxworks)
   8.224 -	;;
   8.225 -arm*-*-freebsd*|strongarm*-*-freebsd*)
   8.226 -	;;
   8.227 -arm*-*-netbsdelf*)
   8.228 -	;;
   8.229 -arm*-*-netbsd*)
   8.230 -	;;
   8.231 -arm*-*-linux*)			# ARM GNU/Linux with ELF
   8.232 -	;;
   8.233 -arm*-*-uclinux*)		# ARM ucLinux
   8.234 -	;;
   8.235 -arm*-*-ecos-elf)
   8.236 -	;;
   8.237 -arm*-*-eabi* | arm*-*-symbianelf* )
   8.238 -	;;
   8.239 -arm*-*-rtems*)
   8.240 -	;;
   8.241 -arm*-*-elf | ep9312-*-elf)
   8.242 -	;;
   8.243 -arm*-wince-pe*)
   8.244 -	;;
   8.245 -arm-*-pe*)
   8.246 -	;;
   8.247 -arm*-*-kaos*)
   8.248 -	;;
   8.249 -avr-*-rtems*)
   8.250 -	;;
   8.251 -avr-*-*)
   8.252 -    # Make HImode functions for AVR
   8.253 -    tmake_file=${cpu_type}/t-avr
   8.254 -	;;
   8.255 -bfin*-elf*)
   8.256 -        ;;
   8.257 -bfin*-uclinux*)
   8.258 -        ;;
   8.259 -bfin*-linux-uclibc*)
   8.260 -	# No need to build crtbeginT.o on uClibc systems.  Should probably
   8.261 -	# be moved to the OS specific section above.
   8.262 -	extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
   8.263 -	;;
   8.264 -bfin*-*)
   8.265 -        ;;
   8.266 -cris-*-aout)
   8.267 -	;;
   8.268 -crisv32-*-elf | crisv32-*-none | cris-*-elf | cris-*-none)
   8.269 -	extra_parts="crtbegin.o crtend.o"
   8.270 -	;;
   8.271 -cris-*-linux* | crisv32-*-linux*)
   8.272 -	;;
   8.273 -crx-*-elf)
   8.274 -	;;
   8.275 -fido-*-elf)
   8.276 -	;;
   8.277 -fr30-*-elf)
   8.278 -	;;
   8.279 -frv-*-elf)
   8.280 -	;;
   8.281 -frv-*-*linux*)
   8.282 -	;;
   8.283 -h8300-*-rtems*)
   8.284 -	;;
   8.285 -h8300-*-elf*)
   8.286 -	;;
   8.287 -h8300-*-*)
   8.288 -	;;
   8.289 -hppa*64*-*-linux* | parisc*64*-*-linux*)
   8.290 -	;;
   8.291 -hppa*-*-linux* | parisc*-*-linux*)
   8.292 -	;;
   8.293 -hppa1.1-*-pro*)
   8.294 -	;;
   8.295 -hppa1.1-*-osf*)
   8.296 -	;;
   8.297 -hppa1.1-*-bsd*)
   8.298 -	;;
   8.299 -hppa[12]*-*-hpux10*)
   8.300 -	;;
   8.301 -hppa*64*-*-hpux11*)
   8.302 -	;;
   8.303 -hppa[12]*-*-hpux11*)
   8.304 -	;;
   8.305 -i[34567]86-*-darwin*)
   8.306 -	;;
   8.307 -x86_64-*-darwin*)
   8.308 -	tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin"
   8.309 -	;;
   8.310 -i[34567]86-*-elf*)
   8.311 -	;;
   8.312 -x86_64-*-elf*)
   8.313 -	;;
   8.314 -i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
   8.315 -	;;
   8.316 -i[34567]86-*-aout*)
   8.317 -	;;
   8.318 -i[34567]86-*-beoself* | i[34567]86-*-beos*)
   8.319 -	;;
   8.320 -i[34567]86-*-freebsd*)
   8.321 -	;;
   8.322 -x86_64-*-freebsd*)
   8.323 -	;;
   8.324 -i[34567]86-*-netbsdelf*)
   8.325 -	;;
   8.326 -i[34567]86-*-netbsd*)
   8.327 -	;;
   8.328 -x86_64-*-netbsd*)
   8.329 -	;;
   8.330 -i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
   8.331 -	;;
   8.332 -i[34567]86-*-openbsd*)
   8.333 -	;;
   8.334 -i[34567]86-*-coff*)
   8.335 -	;;
   8.336 -i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu)
   8.337 -	extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
   8.338 -	tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
   8.339 -	;;
   8.340 -x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
   8.341 -	extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
   8.342 -	tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
   8.343 -	;;
   8.344 -i[34567]86-*-gnu*)
   8.345 -	;;
   8.346 -i[34567]86-pc-msdosdjgpp*)
   8.347 -	;;
   8.348 -i[34567]86-*-lynxos*)
   8.349 -	;;
   8.350 -i[3456x]86-*-netware*)
   8.351 -	case /${with_ld} in
   8.352 -	*/nwld)
   8.353 -	 	tmake_file="${tmake_file} i386/t-nwld"
   8.354 -		;;
   8.355 -	esac
   8.356 -	;;
   8.357 -i[34567]86-*-nto-qnx*)
   8.358 -	;;
   8.359 -i[34567]86-*-rtems*)
   8.360 -	;;
   8.361 -i[34567]86-*-sco3.2v5*)	# 80386 running SCO Open Server 5
   8.362 -	;;
   8.363 -i[34567]86-*-solaris2*)
   8.364 -	;;
   8.365 -i[34567]86-*-sysv5*)           # Intel x86 on System V Release 5
   8.366 -       ;;
   8.367 -i[34567]86-*-sysv4*)		# Intel 80386's running system V.4
   8.368 -	;;
   8.369 -i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
   8.370 -	;;
   8.371 -i[34567]86-*-pe)
   8.372 -	;;
   8.373 -i[34567]86-*-cygwin* | i[34567]86-*-mingw*)
   8.374 -	extra_parts="crtbegin.o crtend.o crtfastmath.o"
   8.375 -	tmake_file="i386/t-cygming i386/t-crtfm"
   8.376 -	;;
   8.377 -x86_64-*-mingw*)
   8.378 -	;;
   8.379 -i[34567]86-*-uwin*)
   8.380 -	;;
   8.381 -i[34567]86-*-interix3*)
   8.382 -	;;
   8.383 -i[34567]86-*-kaos*)
   8.384 -	;;
   8.385 -ia64*-*-elf*)
   8.386 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
   8.387 -	tmake_file="ia64/t-ia64"
   8.388 -	;;
   8.389 -ia64*-*-freebsd*)
   8.390 -	;;
   8.391 -ia64*-*-linux*)
   8.392 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
   8.393 -	tmake_file="ia64/t-ia64"
   8.394 -	;;
   8.395 -ia64*-*-hpux*)
   8.396 -	;;
   8.397 -iq2000*-*-elf*)
   8.398 -        ;;
   8.399 -m32r-*-elf*)
   8.400 - 	;;
   8.401 -m32rle-*-elf*)
   8.402 -	;;
   8.403 -m32r-*-linux*)
   8.404 - 	;;
   8.405 -m32rle-*-linux*)
   8.406 -	;;
   8.407 -m68hc11-*-*|m6811-*-*)
   8.408 -        ;;
   8.409 -m68hc12-*-*|m6812-*-*)
   8.410 -        ;;
   8.411 -m68k-*-aout*)
   8.412 -	;;
   8.413 -m68k-*-coff*)
   8.414 -	;;
   8.415 -m68020-*-elf* | m68k-*-elf*)
   8.416 -	;;
   8.417 -m68010-*-netbsdelf* | m68k*-*-netbsdelf*)
   8.418 -	;;
   8.419 -m68k*-*-openbsd*)
   8.420 -	;;
   8.421 -m68k-*-uclinux*)		# Motorola m68k/ColdFire running uClinux with uClibc
   8.422 -	;;
   8.423 -m68k-*-linux*)		# Motorola m68k's running GNU/Linux
   8.424 -				# with ELF format using glibc 2
   8.425 -				# aka the GNU/Linux C library 6.
   8.426 -	;;
   8.427 -m68k-*-rtems*)
   8.428 -	;;
   8.429 -mcore-*-elf)
   8.430 -	;;
   8.431 -mcore-*-pe*)
   8.432 -	;;
   8.433 -mips-sgi-irix[56]*)
   8.434 -	;;
   8.435 -mips*-*-netbsd*)			# NetBSD/mips, either endian.
   8.436 -	;;
   8.437 -mips64*-*-linux*)
   8.438 -	;;
   8.439 -mips*-*-linux*)				# Linux MIPS, either endian.
   8.440 -	;;
   8.441 -mips*-*-openbsd*)
   8.442 -	;;
   8.443 -mipsisa32-*-elf* | mipsisa32el-*-elf*)
   8.444 -	;;
   8.445 -mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
   8.446 -	;;
   8.447 -mipsisa64-*-elf* | mipsisa64el-*-elf*)
   8.448 -	;;
   8.449 -mipsisa64sr71k-*-elf*)
   8.450 -        ;;
   8.451 -mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
   8.452 -	;;
   8.453 -mips-*-elf* | mipsel-*-elf*)
   8.454 -	;;
   8.455 -mips64-*-elf* | mips64el-*-elf*)
   8.456 -	;;
   8.457 -mips64vr-*-elf* | mips64vrel-*-elf*)
   8.458 -        ;;
   8.459 -mips64orion-*-elf* | mips64orionel-*-elf*)
   8.460 -	;;
   8.461 -mips*-*-rtems*)
   8.462 -	;;
   8.463 -mips-wrs-vxworks)
   8.464 -	;;
   8.465 -mips-wrs-windiss)	# Instruction-level simulator for VxWorks.
   8.466 -	;;
   8.467 -mipstx39-*-elf* | mipstx39el-*-elf*)
   8.468 -	;;
   8.469 -mmix-knuth-mmixware)
   8.470 -	;;
   8.471 -mn10300-*-*)
   8.472 -	;;
   8.473 -mt-*-elf)
   8.474 -        ;;
   8.475 -pdp11-*-bsd)
   8.476 -        ;;
   8.477 -pdp11-*-*)
   8.478 -	;;
   8.479 -powerpc64-*-linux*)
   8.480 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   8.481 -	;;
   8.482 -powerpc64-*-gnu*)
   8.483 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   8.484 -	;;
   8.485 -powerpc-*-beos*)
   8.486 -	;;
   8.487 -powerpc-*-darwin*)
   8.488 -	;;
   8.489 -powerpc64-*-darwin*)
   8.490 -	;;
   8.491 -powerpc*-*-freebsd*)
   8.492 -	;;
   8.493 -powerpc-*-netbsd*)
   8.494 -	;;
   8.495 -powerpc-*-chorusos*)
   8.496 -	;;
   8.497 -powerpc-*-eabispe*)
   8.498 -	;;
   8.499 -powerpc-*-eabisimaltivec*)
   8.500 -	;;
   8.501 -powerpc-*-eabisim*)
   8.502 -	;;
   8.503 -powerpc-*-elf*)
   8.504 -	;;
   8.505 -powerpc-*-eabialtivec*)
   8.506 -	;;
   8.507 -powerpc-*-eabi*)
   8.508 -	;;
   8.509 -powerpc-*-rtems*)
   8.510 -	;;
   8.511 -powerpc-*-linux*altivec*)
   8.512 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   8.513 -	;;
   8.514 -powerpc-*-linux*spe*)
   8.515 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   8.516 -	;;
   8.517 -powerpc-*-linux*)
   8.518 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   8.519 -	;;
   8.520 -powerpc-*-gnu-gnualtivec*)
   8.521 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   8.522 -	;;
   8.523 -powerpc-*-gnu*)
   8.524 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   8.525 -	;;
   8.526 -powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
   8.527 -	;;
   8.528 -powerpc-wrs-windiss*)  # Instruction-level simulator for VxWorks.
   8.529 -	;;
   8.530 -powerpc-*-lynxos*)
   8.531 -	;;
   8.532 -powerpcle-*-sysv*)
   8.533 -	;;
   8.534 -powerpcle-*-elf*)
   8.535 -	;;
   8.536 -powerpcle-*-eabisim*)
   8.537 -	;;
   8.538 -powerpcle-*-eabi*)
   8.539 -	;;
   8.540 -powerpc-*-kaos*)
   8.541 -	;;
   8.542 -powerpcle-*-kaos*)
   8.543 -	;;
   8.544 -rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
   8.545 -	;;
   8.546 -rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
   8.547 -	;;
   8.548 -rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
   8.549 -	;;
   8.550 -rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
   8.551 -	;;
   8.552 -s390-*-linux*)
   8.553 -	;;
   8.554 -s390x-*-linux*)
   8.555 -	;;
   8.556 -s390x-ibm-tpf*)
   8.557 -	;;
   8.558 -score-*-elf)
   8.559 -        ;;
   8.560 -sh-*-elf* | sh[12346l]*-*-elf* | sh*-*-kaos* | \
   8.561 -sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
   8.562 -  sh-*-linux* | sh[346lbe]*-*-linux* | \
   8.563 -  sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
   8.564 -   sh64-*-netbsd* | sh64l*-*-netbsd*)
   8.565 -	case ${host} in
   8.566 -	sh*-*-linux*)
   8.567 -		tmake_file="${tmake_file} sh/t-linux"
   8.568 -		;;
   8.569 -	esac
   8.570 -	;;
   8.571 -sh-*-rtems*)
   8.572 -	;;
   8.573 -sh-wrs-vxworks)
   8.574 -	;;
   8.575 -sh-*-*)
   8.576 -	;;
   8.577 -sparc-*-netbsdelf*)
   8.578 -	;;
   8.579 -sparc64-*-openbsd*)
   8.580 -	;;
   8.581 -sparc-*-elf*)
   8.582 -	;;
   8.583 -sparc-*-linux*)		# SPARC's running GNU/Linux, libc6
   8.584 -	extra_parts="$extra_parts crtfastmath.o"
   8.585 -	tmake_file="${tmake_file} sparc/t-crtfm"
   8.586 -	;;
   8.587 -sparc-*-rtems*)
   8.588 -	;;
   8.589 -sparc64-*-solaris2* | sparcv9-*-solaris2*)
   8.590 -	;;
   8.591 -sparc-*-solaris2*)
   8.592 -	;;
   8.593 -sparc-*-sysv4*)
   8.594 -	;;
   8.595 -sparc64-*-elf*)
   8.596 -	;;
   8.597 -sparc-wrs-vxworks)
   8.598 -	;;
   8.599 -sparc64-*-freebsd*|ultrasparc-*-freebsd*)
   8.600 -	;;
   8.601 -sparc64-*-linux*)		# 64-bit SPARC's running GNU/Linux
   8.602 -	extra_parts="$extra_parts crtfastmath.o"
   8.603 -	tmake_file="${tmake_file} sparc/t-crtfm"
   8.604 -	;;
   8.605 -sparc64-*-netbsd*)
   8.606 -	;;
   8.607 -spu-*-elf*)
   8.608 -	;;
   8.609 -strongarm-*-elf*)
   8.610 -	;;
   8.611 -strongarm-*-pe)
   8.612 -	;;
   8.613 -strongarm-*-kaos*)
   8.614 -	;;
   8.615 -v850e1-*-*)
   8.616 -	;;
   8.617 -v850e-*-*)
   8.618 -	;;
   8.619 -v850-*-*)
   8.620 -	;;
   8.621 -vax-*-bsd*)			# VAXen running BSD
   8.622 -	;;
   8.623 -vax-*-sysv*)			# VAXen running system V
   8.624 -	;;
   8.625 -vax-*-netbsdelf*)
   8.626 -	;;
   8.627 -vax-*-netbsd*)
   8.628 -	;;
   8.629 -vax-*-openbsd*)
   8.630 -	;;
   8.631 -vax-*-ultrix*)			# VAXen running ultrix
   8.632 -	;;
   8.633 -xscale-*-elf)
   8.634 -	;;
   8.635 -xscale-*-coff)
   8.636 -	;;
   8.637 -xstormy16-*-elf)
   8.638 -	;;
   8.639 -xtensa-*-elf*)
   8.640 -	;;
   8.641 -xtensa-*-linux*)
   8.642 -	;;
   8.643 -am33_2.0-*-linux*)
   8.644 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
   8.645 -	;;
   8.646 -m32c-*-elf*)
   8.647 - 	;;
   8.648 -*)
   8.649 -	echo "*** Configuration ${host} not supported" 1>&2
   8.650 -	exit 1
   8.651 -	;;
   8.652 -esac
   8.653 -
   8.654 -case ${host} in
   8.655 -i[34567]86-*-linux* | x86_64-*-linux*)
   8.656 -	tmake_file="${tmake_file} t-tls"
   8.657 -	;;
   8.658 -esac
     9.1 --- a/gcc/libgcc/config.host.r139605	Wed Oct 01 11:51:50 2008 -0700
     9.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.3 @@ -1,598 +0,0 @@
     9.4 -# libgcc host-specific configuration file.
     9.5 -# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
     9.6 -# 2008 Free Software Foundation, Inc.
     9.7 -
     9.8 -#This file is part of GCC.
     9.9 -
    9.10 -#GCC is free software; you can redistribute it and/or modify it under
    9.11 -#the terms of the GNU General Public License as published by the Free
    9.12 -#Software Foundation; either version 2, or (at your option) any later
    9.13 -#version.
    9.14 -
    9.15 -#GCC is distributed in the hope that it will be useful, but WITHOUT
    9.16 -#ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    9.17 -#FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    9.18 -#for more details.
    9.19 -
    9.20 -#You should have received a copy of the GNU General Public License
    9.21 -#along with GCC; see the file COPYING.  If not, write to the Free
    9.22 -#Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
    9.23 -#02110-1301, USA.
    9.24 -
    9.25 -# This is the libgcc host-specific configuration file
    9.26 -# where a configuration type is mapped to different system-specific
    9.27 -# definitions and files.  This is invoked by the autoconf-generated
    9.28 -# configure script.  Putting it in a separate shell file lets us skip
    9.29 -# running autoconf when modifying host-specific information.
    9.30 -
    9.31 -# This file bears an obvious resemblance to gcc/config.gcc.  The cases
    9.32 -# should be kept similar, to ease moving library-specific settings
    9.33 -# from config.gcc to this file.  That is also why tmake_file is
    9.34 -# left as tmake_file, rather than hmake_file, even though this library
    9.35 -# switches on ${host}.
    9.36 -
    9.37 -# This file switches on the shell variable ${host}, and also uses the
    9.38 -# following shell variables:
    9.39 -#
    9.40 -#  with_*		Various variables as set by configure.
    9.41 -
    9.42 -# This file sets the following shell variables for use by the
    9.43 -# autoconf-generated configure script:
    9.44 -#
    9.45 -#  asm_hidden_op	The assembler pseudo-op to use for hide
    9.46 -#			lists for object files implemented in
    9.47 -#			assembly (with -fvisibility=hidden for C).
    9.48 -#			The default is ".hidden".
    9.49 -#  cpu_type		The name of the cpu, if different from the first
    9.50 -#			chunk of the canonical host name.
    9.51 -#  extra_parts		List of extra object files that should be compiled
    9.52 -#			for this target machine.  This may be overridden
    9.53 -#			by setting EXTRA_PARTS in a tmake_file fragment.
    9.54 -#			If either is set, EXTRA_PARTS and
    9.55 -#			EXTRA_MULTILIB_PARTS inherited from the GCC
    9.56 -#			subdirectory will be ignored.
    9.57 -#  tmake_file		A list of machine-description-specific
    9.58 -#			makefile-fragments, if different from
    9.59 -#			"$cpu_type/t-$cpu_type".
    9.60 -
    9.61 -asm_hidden_op=.hidden
    9.62 -extra_parts=
    9.63 -tmake_file=
    9.64 -
    9.65 -# Set default cpu_type so it can be updated in each machine entry.
    9.66 -cpu_type=`echo ${host} | sed 's/-.*$//'`
    9.67 -case ${host} in
    9.68 -m32c*-*-*)
    9.69 -        cpu_type=m32c
    9.70 -        ;;
    9.71 -alpha*-*-*)
    9.72 -	cpu_type=alpha
    9.73 -	;;
    9.74 -am33_2.0-*-linux*)
    9.75 -	cpu_type=mn10300
    9.76 -	;;
    9.77 -arm*-*-*)
    9.78 -	cpu_type=arm
    9.79 -	;;
    9.80 -avr-*-*)
    9.81 -	cpu_type=avr
    9.82 -	;;    
    9.83 -bfin*-*)
    9.84 -	cpu_type=bfin
    9.85 -	;;
    9.86 -fido-*-*)
    9.87 -	cpu_type=m68k
    9.88 -	;;
    9.89 -frv*)	cpu_type=frv
    9.90 -	;;
    9.91 -i[34567]86-*-*)
    9.92 -	cpu_type=i386
    9.93 -	;;
    9.94 -x86_64-*-*)
    9.95 -	cpu_type=i386
    9.96 -	;;
    9.97 -ia64-*-*)
    9.98 -	;;
    9.99 -hppa*-*-*)
   9.100 -	cpu_type=pa
   9.101 -	;;
   9.102 -m32r*-*-*)
   9.103 -        cpu_type=m32r
   9.104 -        ;;
   9.105 -m68k-*-*)
   9.106 -	;;
   9.107 -mips*-*-*)
   9.108 -	cpu_type=mips
   9.109 -	;;
   9.110 -powerpc*-*-*)
   9.111 -	cpu_type=rs6000
   9.112 -	;;
   9.113 -rs6000*-*-*)
   9.114 -	;;
   9.115 -score*-*-*)
   9.116 -	cpu_type=score
   9.117 -	;;
   9.118 -sparc64*-*-*)
   9.119 -	cpu_type=sparc
   9.120 -	;;
   9.121 -sparc*-*-*)
   9.122 -	cpu_type=sparc
   9.123 -	;;
   9.124 -spu*-*-*)
   9.125 -	cpu_type=spu
   9.126 -	;;
   9.127 -s390*-*-*)
   9.128 -	cpu_type=s390
   9.129 -	;;
   9.130 -# Note the 'l'; we need to be able to match e.g. "shle" or "shl".
   9.131 -sh[123456789lbe]*-*-*)
   9.132 -	cpu_type=sh
   9.133 -	;;
   9.134 -esac
   9.135 -
   9.136 -# Common parts for widely ported systems.
   9.137 -case ${host} in
   9.138 -*-*-darwin*)
   9.139 -  asm_hidden_op=.private_extern
   9.140 -  tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
   9.141 -  ;;
   9.142 -*-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
   9.143 -  # This is the place-holder for the generic a.out configuration
   9.144 -  # of FreeBSD.  No actual configuration resides here since
   9.145 -  # there was only ever a bare-bones ix86 configuration for
   9.146 -  # a.out and it exists solely in the machine-specific section.
   9.147 -  # This place-holder must exist to avoid dropping into
   9.148 -  # the generic ELF configuration of FreeBSD (i.e. it must be
   9.149 -  # ordered before that section).
   9.150 -  ;;
   9.151 -*-*-freebsd*)
   9.152 -  # This is the generic ELF configuration of FreeBSD.  Later
   9.153 -  # machine-specific sections may refine and add to this
   9.154 -  # configuration.
   9.155 -  ;;
   9.156 -*-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu)
   9.157 -  # Must come before *-*-gnu* (because of *-*-linux-gnu* systems).
   9.158 -  extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
   9.159 -  ;;
   9.160 -*-*-gnu*)
   9.161 -  ;;
   9.162 -*-*-netbsd*)
   9.163 -  ;;
   9.164 -*-*-openbsd*)
   9.165 -  ;;
   9.166 -*-*-rtems*)
   9.167 -  ;;
   9.168 -*-*-vxworks*)
   9.169 -  ;;
   9.170 -*-*-elf)
   9.171 -  ;;
   9.172 -esac
   9.173 -
   9.174 -case ${host} in
   9.175 -# Support site-specific machine types.
   9.176 -*local*)
   9.177 -	rest=`echo ${host} | sed -e "s/$cpu_type-//"`
   9.178 -	if test -f $srcdir/config/${cpu_type}/t-$rest
   9.179 -	then tmake_file=${cpu_type}/t-$rest
   9.180 -	fi
   9.181 -	;;
   9.182 -alpha*-*-linux*)
   9.183 -	tmake_file="${tmake_file} alpha/t-crtfm"
   9.184 -	extra_parts="$extra_parts crtfastmath.o"
   9.185 -	;;
   9.186 -alpha*-*-gnu*)
   9.187 -	;;
   9.188 -alpha*-*-freebsd*)
   9.189 -	;;
   9.190 -alpha*-*-netbsd*)
   9.191 -	;;
   9.192 -alpha*-*-openbsd*)
   9.193 -	;;
   9.194 -alpha*-dec-osf[45]*)
   9.195 -	;;
   9.196 -alpha64-dec-*vms*)
   9.197 -	;;
   9.198 -alpha*-dec-*vms*)
   9.199 -	;;
   9.200 -arc-*-elf*)
   9.201 -	;;
   9.202 -arm-*-coff* | armel-*-coff*)
   9.203 -	;;
   9.204 -arm-semi-aof | armel-semi-aof)
   9.205 -	;;
   9.206 -arm-wrs-vxworks)
   9.207 -	;;
   9.208 -arm*-*-freebsd*)
   9.209 -	;;
   9.210 -arm*-*-netbsdelf*)
   9.211 -	;;
   9.212 -arm*-*-netbsd*)
   9.213 -	;;
   9.214 -arm*-*-linux*)			# ARM GNU/Linux with ELF
   9.215 -	;;
   9.216 -arm*-*-uclinux*)		# ARM ucLinux
   9.217 -	;;
   9.218 -arm*-*-ecos-elf)
   9.219 -	;;
   9.220 -arm*-*-eabi* | arm*-*-symbianelf* )
   9.221 -	;;
   9.222 -arm*-*-rtems*)
   9.223 -	;;
   9.224 -arm*-*-elf)
   9.225 -	;;
   9.226 -arm*-wince-pe*)
   9.227 -	;;
   9.228 -arm-*-pe*)
   9.229 -	;;
   9.230 -avr-*-rtems*)
   9.231 -	;;
   9.232 -avr-*-*)
   9.233 -    # Make HImode functions for AVR
   9.234 -    tmake_file=${cpu_type}/t-avr
   9.235 -	;;
   9.236 -bfin*-elf*)
   9.237 -        ;;
   9.238 -bfin*-uclinux*)
   9.239 -        ;;
   9.240 -bfin*-linux-uclibc*)
   9.241 -	# No need to build crtbeginT.o on uClibc systems.  Should probably
   9.242 -	# be moved to the OS specific section above.
   9.243 -	extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
   9.244 -	;;
   9.245 -bfin*-*)
   9.246 -        ;;
   9.247 -crisv32-*-elf | crisv32-*-none | cris-*-elf | cris-*-none)
   9.248 -	extra_parts="crtbegin.o crtend.o"
   9.249 -	;;
   9.250 -cris-*-linux* | crisv32-*-linux*)
   9.251 -	;;
   9.252 -crx-*-elf)
   9.253 -	;;
   9.254 -fido-*-elf)
   9.255 -	;;
   9.256 -fr30-*-elf)
   9.257 -	;;
   9.258 -frv-*-elf)
   9.259 -	;;
   9.260 -frv-*-*linux*)
   9.261 -	;;
   9.262 -h8300-*-rtems*)
   9.263 -	;;
   9.264 -h8300-*-elf*)
   9.265 -	;;
   9.266 -h8300-*-*)
   9.267 -	;;
   9.268 -hppa*64*-*-linux*)
   9.269 -	;;
   9.270 -hppa*-*-linux*)
   9.271 -	;;
   9.272 -hppa[12]*-*-hpux10*)
   9.273 -	;;
   9.274 -hppa*64*-*-hpux11*)
   9.275 -	;;
   9.276 -hppa[12]*-*-hpux11*)
   9.277 -	;;
   9.278 -i[34567]86-*-darwin*)
   9.279 -	;;
   9.280 -x86_64-*-darwin*)
   9.281 -	tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin"
   9.282 -	;;
   9.283 -i[34567]86-*-elf*)
   9.284 -	;;
   9.285 -x86_64-*-elf*)
   9.286 -	;;
   9.287 -i[34567]86-*-aout*)
   9.288 -	;;
   9.289 -i[34567]86-*-freebsd*)
   9.290 -	;;
   9.291 -x86_64-*-freebsd*)
   9.292 -	;;
   9.293 -i[34567]86-*-netbsdelf*)
   9.294 -	;;
   9.295 -i[34567]86-*-netbsd*)
   9.296 -	;;
   9.297 -x86_64-*-netbsd*)
   9.298 -	;;
   9.299 -i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
   9.300 -	;;
   9.301 -i[34567]86-*-openbsd*)
   9.302 -	;;
   9.303 -i[34567]86-*-coff*)
   9.304 -	;;
   9.305 -i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu)
   9.306 -	extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
   9.307 -	tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
   9.308 -	;;
   9.309 -x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
   9.310 -	extra_parts="$extra_parts crtprec32.o crtprec64.o crtprec80.o crtfastmath.o"
   9.311 -	tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
   9.312 -	;;
   9.313 -i[34567]86-*-gnu*)
   9.314 -	;;
   9.315 -i[34567]86-pc-msdosdjgpp*)
   9.316 -	;;
   9.317 -i[34567]86-*-lynxos*)
   9.318 -	;;
   9.319 -i[3456x]86-*-netware*)
   9.320 -	case /${with_ld} in
   9.321 -	*/nwld)
   9.322 -	 	tmake_file="${tmake_file} i386/t-nwld"
   9.323 -		;;
   9.324 -	esac
   9.325 -	;;
   9.326 -i[34567]86-*-nto-qnx*)
   9.327 -	;;
   9.328 -i[34567]86-*-rtems*)
   9.329 -	;;
   9.330 -i[34567]86-*-solaris2*)
   9.331 -	;;
   9.332 -i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
   9.333 -	;;
   9.334 -i[34567]86-*-pe)
   9.335 -	;;
   9.336 -i[34567]86-*-cygwin* | i[34567]86-*-mingw*)
   9.337 -	extra_parts="crtbegin.o crtend.o crtfastmath.o"
   9.338 -	tmake_file="i386/t-cygming i386/t-crtfm"
   9.339 -	;;
   9.340 -x86_64-*-mingw*)
   9.341 -	;;
   9.342 -i[34567]86-*-interix3*)
   9.343 -	;;
   9.344 -ia64*-*-elf*)
   9.345 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
   9.346 -	tmake_file="ia64/t-ia64"
   9.347 -	;;
   9.348 -ia64*-*-freebsd*)
   9.349 -	;;
   9.350 -ia64*-*-linux*)
   9.351 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
   9.352 -	tmake_file="ia64/t-ia64"
   9.353 -	;;
   9.354 -ia64*-*-hpux*)
   9.355 -	;;
   9.356 -iq2000*-*-elf*)
   9.357 -        ;;
   9.358 -m32r-*-elf*)
   9.359 - 	;;
   9.360 -m32rle-*-elf*)
   9.361 -	;;
   9.362 -m32r-*-linux*)
   9.363 - 	;;
   9.364 -m32rle-*-linux*)
   9.365 -	;;
   9.366 -m68hc11-*-*|m6811-*-*)
   9.367 -        ;;
   9.368 -m68hc12-*-*|m6812-*-*)
   9.369 -        ;;
   9.370 -m68k-*-aout*)
   9.371 -	;;
   9.372 -m68k-*-coff*)
   9.373 -	;;
   9.374 -m68k-*-elf*)
   9.375 -	;;
   9.376 -m68k*-*-netbsdelf*)
   9.377 -	;;
   9.378 -m68k*-*-openbsd*)
   9.379 -	;;
   9.380 -m68k-*-uclinux*)		# Motorola m68k/ColdFire running uClinux with uClibc
   9.381 -	;;
   9.382 -m68k-*-linux*)		# Motorola m68k's running GNU/Linux
   9.383 -				# with ELF format using glibc 2
   9.384 -				# aka the GNU/Linux C library 6.
   9.385 -	;;
   9.386 -m68k-*-rtems*)
   9.387 -	;;
   9.388 -mcore-*-elf)
   9.389 -	;;
   9.390 -mcore-*-pe*)
   9.391 -	;;
   9.392 -mips-sgi-irix[56]*)
   9.393 -	;;
   9.394 -mips*-*-netbsd*)			# NetBSD/mips, either endian.
   9.395 -	;;
   9.396 -mips64*-*-linux*)
   9.397 -	;;
   9.398 -mips*-*-linux*)				# Linux MIPS, either endian.
   9.399 -	;;
   9.400 -mips*-*-openbsd*)
   9.401 -	;;
   9.402 -mipsisa32-*-elf* | mipsisa32el-*-elf*)
   9.403 -	;;
   9.404 -mipsisa32r2-*-elf* | mipsisa32r2el-*-elf*)
   9.405 -	;;
   9.406 -mipsisa64-*-elf* | mipsisa64el-*-elf*)
   9.407 -	;;
   9.408 -mipsisa64sr71k-*-elf*)
   9.409 -        ;;
   9.410 -mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
   9.411 -	;;
   9.412 -mips-*-elf* | mipsel-*-elf*)
   9.413 -	;;
   9.414 -mips64-*-elf* | mips64el-*-elf*)
   9.415 -	;;
   9.416 -mips64vr-*-elf* | mips64vrel-*-elf*)
   9.417 -        ;;
   9.418 -mips64orion-*-elf* | mips64orionel-*-elf*)
   9.419 -	;;
   9.420 -mips*-*-rtems*)
   9.421 -	;;
   9.422 -mips-wrs-vxworks)
   9.423 -	;;
   9.424 -mipstx39-*-elf* | mipstx39el-*-elf*)
   9.425 -	;;
   9.426 -mmix-knuth-mmixware)
   9.427 -	;;
   9.428 -mn10300-*-*)
   9.429 -	;;
   9.430 -pdp11-*-bsd)
   9.431 -        ;;
   9.432 -pdp11-*-*)
   9.433 -	;;
   9.434 -powerpc64-*-linux*)
   9.435 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   9.436 -	;;
   9.437 -powerpc64-*-gnu*)
   9.438 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   9.439 -	;;
   9.440 -powerpc-*-darwin*)
   9.441 -	;;
   9.442 -powerpc64-*-darwin*)
   9.443 -	;;
   9.444 -powerpc*-*-freebsd*)
   9.445 -	;;
   9.446 -powerpc-*-netbsd*)
   9.447 -	;;
   9.448 -powerpc-*-eabispe*)
   9.449 -	;;
   9.450 -powerpc-*-eabisimaltivec*)
   9.451 -	;;
   9.452 -powerpc-*-eabisim*)
   9.453 -	;;
   9.454 -powerpc-*-elf*)
   9.455 -	;;
   9.456 -powerpc-*-eabialtivec*)
   9.457 -	;;
   9.458 -powerpc-*-eabi*)
   9.459 -	;;
   9.460 -powerpc-*-rtems*)
   9.461 -	;;
   9.462 -powerpc-*-linux*altivec*)
   9.463 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   9.464 -	;;
   9.465 -powerpc-*-linux*spe*)
   9.466 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   9.467 -	;;
   9.468 -powerpc-*-linux*)
   9.469 -	tmake_file="${tmake_file} rs6000/t-ppccomm rs6000/t-ldbl128"
   9.470 -	;;
   9.471 -powerpc-*-gnu-gnualtivec*)
   9.472 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   9.473 -	;;
   9.474 -powerpc-*-gnu*)
   9.475 -	tmake_file="${tmake_file} rs6000/t-ldbl128"
   9.476 -	;;
   9.477 -powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
   9.478 -	;;
   9.479 -powerpc-*-lynxos*)
   9.480 -	;;
   9.481 -powerpcle-*-elf*)
   9.482 -	;;
   9.483 -powerpcle-*-eabisim*)
   9.484 -	;;
   9.485 -powerpcle-*-eabi*)
   9.486 -	;;
   9.487 -rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
   9.488 -	;;
   9.489 -rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
   9.490 -	;;
   9.491 -rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
   9.492 -	;;
   9.493 -rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
   9.494 -	;;
   9.495 -s390-*-linux*)
   9.496 -	;;
   9.497 -s390x-*-linux*)
   9.498 -	;;
   9.499 -s390x-ibm-tpf*)
   9.500 -	;;
   9.501 -score-*-elf)
   9.502 -        ;;
   9.503 -sh-*-elf* | sh[12346l]*-*-elf* | \
   9.504 -sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
   9.505 -  sh-*-linux* | sh[2346lbe]*-*-linux* | \
   9.506 -  sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
   9.507 -   sh64-*-netbsd* | sh64l*-*-netbsd*)
   9.508 -	case ${host} in
   9.509 -	sh*-*-linux*)
   9.510 -		tmake_file="${tmake_file} sh/t-linux"
   9.511 -		;;
   9.512 -	esac
   9.513 -	;;
   9.514 -sh-*-rtems*)
   9.515 -	;;
   9.516 -sh-wrs-vxworks)
   9.517 -	;;
   9.518 -sh-*-*)
   9.519 -	;;
   9.520 -sparc-*-netbsdelf*)
   9.521 -	;;
   9.522 -sparc64-*-openbsd*)
   9.523 -	;;
   9.524 -sparc-*-elf*)
   9.525 -	;;
   9.526 -sparc-*-linux*)		# SPARC's running GNU/Linux, libc6
   9.527 -	extra_parts="$extra_parts crtfastmath.o"
   9.528 -	tmake_file="${tmake_file} sparc/t-crtfm"
   9.529 -	;;
   9.530 -sparc-*-rtems*)
   9.531 -	;;
   9.532 -sparc64-*-solaris2* | sparcv9-*-solaris2*)
   9.533 -	;;
   9.534 -sparc-*-solaris2*)
   9.535 -	;;
   9.536 -sparc64-*-elf*)
   9.537 -	;;
   9.538 -sparc-wrs-vxworks)
   9.539 -	;;
   9.540 -sparc64-*-freebsd*|ultrasparc-*-freebsd*)
   9.541 -	;;
   9.542 -sparc64-*-linux*)		# 64-bit SPARC's running GNU/Linux
   9.543 -	extra_parts="$extra_parts crtfastmath.o"
   9.544 -	tmake_file="${tmake_file} sparc/t-crtfm"
   9.545 -	;;
   9.546 -sparc64-*-netbsd*)
   9.547 -	;;
   9.548 -spu-*-elf*)
   9.549 -	;;
   9.550 -v850e1-*-*)
   9.551 -	;;
   9.552 -v850e-*-*)
   9.553 -	;;
   9.554 -v850-*-*)
   9.555 -	;;
   9.556 -vax-*-netbsdelf*)
   9.557 -	;;
   9.558 -vax-*-netbsd*)
   9.559 -	;;
   9.560 -vax-*-openbsd*)
   9.561 -	;;
   9.562 -xstormy16-*-elf)
   9.563 -	;;
   9.564 -xtensa*-*-elf*)
   9.565 -	;;
   9.566 -xtensa*-*-linux*)
   9.567 -	;;
   9.568 -am33_2.0-*-linux*)
   9.569 -	extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
   9.570 -	;;
   9.571 -m32c-*-elf*)
   9.572 - 	;;
   9.573 -*)
   9.574 -	echo "*** Configuration ${host} not supported" 1>&2
   9.575 -	exit 1
   9.576 -	;;
   9.577 -esac
   9.578 -
   9.579 -case ${host} in
   9.580 -i[34567]86-*-linux* | x86_64-*-linux*)
   9.581 -	tmake_file="${tmake_file} t-tls"
   9.582 -	;;
   9.583 -esac
   9.584 -
   9.585 -case ${host} in
   9.586 -i[34567]86-*-darwin* | x86_64-*-darwin* | \
   9.587 -  i[34567]86-*-linux* | x86_64-*-linux*)
   9.588 -	if test "${host_address}" = 32; then
   9.589 -		tmake_file="${tmake_file} i386/${host_address}/t-fprules-softfp"
   9.590 -	fi
   9.591 -	;;
   9.592 -esac
   9.593 -
   9.594 -case ${host} in
   9.595 -i[34567]86-*-linux* | x86_64-*-linux*)
   9.596 -	# Provide backward binary compatibility for 64bit Linux/x86.
   9.597 -	if test "${host_address}" = 64; then
   9.598 -		tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
   9.599 -	fi
   9.600 -	;;
   9.601 -esac
    10.1 --- a/scripts/sum.bc~	Wed Oct 01 11:51:50 2008 -0700
    10.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.3 @@ -1,13 +0,0 @@
    10.4 -print "benchmark summer!\n"
    10.5 -total = 0
    10.6 -while (1) {
    10.7 -  count = read()
    10.8 -  if (count == 0)
    10.9 -  {
   10.10 -    print total
   10.11 -    print "\n"
   10.12 -    break
   10.13 -  }
   10.14 -  total = total + count
   10.15 -}
   10.16 -quit
    11.1 --- a/src/binutils/configure.~1.110.~	Wed Oct 01 11:51:50 2008 -0700
    11.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.3 @@ -1,17317 +0,0 @@
    11.4 -#! /bin/sh
    11.5 -# Guess values for system-dependent variables and create Makefiles.
    11.6 -# Generated by GNU Autoconf 2.59.
    11.7 -#
    11.8 -# Copyright (C) 2003 Free Software Foundation, Inc.
    11.9 -# This configure script is free software; the Free Software Foundation
   11.10 -# gives unlimited permission to copy, distribute and modify it.
   11.11 -## --------------------- ##
   11.12 -## M4sh Initialization.  ##
   11.13 -## --------------------- ##
   11.14 -
   11.15 -# Be Bourne compatible
   11.16 -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
   11.17 -  emulate sh
   11.18 -  NULLCMD=:
   11.19 -  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
   11.20 -  # is contrary to our usage.  Disable this feature.
   11.21 -  alias -g '${1+"$@"}'='"$@"'
   11.22 -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
   11.23 -  set -o posix
   11.24 -fi
   11.25 -DUALCASE=1; export DUALCASE # for MKS sh
   11.26 -
   11.27 -# Support unset when possible.
   11.28 -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
   11.29 -  as_unset=unset
   11.30 -else
   11.31 -  as_unset=false
   11.32 -fi
   11.33 -
   11.34 -
   11.35 -# Work around bugs in pre-3.0 UWIN ksh.
   11.36 -$as_unset ENV MAIL MAILPATH
   11.37 -PS1='$ '
   11.38 -PS2='> '
   11.39 -PS4='+ '
   11.40 -
   11.41 -# NLS nuisances.
   11.42 -for as_var in \
   11.43 -  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
   11.44 -  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
   11.45 -  LC_TELEPHONE LC_TIME
   11.46 -do
   11.47 -  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
   11.48 -    eval $as_var=C; export $as_var
   11.49 -  else
   11.50 -    $as_unset $as_var
   11.51 -  fi
   11.52 -done
   11.53 -
   11.54 -# Required to use basename.
   11.55 -if expr a : '\(a\)' >/dev/null 2>&1; then
   11.56 -  as_expr=expr
   11.57 -else
   11.58 -  as_expr=false
   11.59 -fi
   11.60 -
   11.61 -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
   11.62 -  as_basename=basename
   11.63 -else
   11.64 -  as_basename=false
   11.65 -fi
   11.66 -
   11.67 -
   11.68 -# Name of the executable.
   11.69 -as_me=`$as_basename "$0" ||
   11.70 -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
   11.71 -	 X"$0" : 'X\(//\)$' \| \
   11.72 -	 X"$0" : 'X\(/\)$' \| \
   11.73 -	 .     : '\(.\)' 2>/dev/null ||
   11.74 -echo X/"$0" |
   11.75 -    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
   11.76 -  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
   11.77 -  	  /^X\/\(\/\).*/{ s//\1/; q; }
   11.78 -  	  s/.*/./; q'`
   11.79 -
   11.80 -
   11.81 -# PATH needs CR, and LINENO needs CR and PATH.
   11.82 -# Avoid depending upon Character Ranges.
   11.83 -as_cr_letters='abcdefghijklmnopqrstuvwxyz'
   11.84 -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
   11.85 -as_cr_Letters=$as_cr_letters$as_cr_LETTERS
   11.86 -as_cr_digits='0123456789'
   11.87 -as_cr_alnum=$as_cr_Letters$as_cr_digits
   11.88 -
   11.89 -# The user is always right.
   11.90 -if test "${PATH_SEPARATOR+set}" != set; then
   11.91 -  echo "#! /bin/sh" >conf$$.sh
   11.92 -  echo  "exit 0"   >>conf$$.sh
   11.93 -  chmod +x conf$$.sh
   11.94 -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
   11.95 -    PATH_SEPARATOR=';'
   11.96 -  else
   11.97 -    PATH_SEPARATOR=:
   11.98 -  fi
   11.99 -  rm -f conf$$.sh
  11.100 -fi
  11.101 -
  11.102 -
  11.103 -  as_lineno_1=$LINENO
  11.104 -  as_lineno_2=$LINENO
  11.105 -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  11.106 -  test "x$as_lineno_1" != "x$as_lineno_2" &&
  11.107 -  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
  11.108 -  # Find who we are.  Look in the path if we contain no path at all
  11.109 -  # relative or not.
  11.110 -  case $0 in
  11.111 -    *[\\/]* ) as_myself=$0 ;;
  11.112 -    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  11.113 -for as_dir in $PATH
  11.114 -do
  11.115 -  IFS=$as_save_IFS
  11.116 -  test -z "$as_dir" && as_dir=.
  11.117 -  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  11.118 -done
  11.119 -
  11.120 -       ;;
  11.121 -  esac
  11.122 -  # We did not find ourselves, most probably we were run as `sh COMMAND'
  11.123 -  # in which case we are not to be found in the path.
  11.124 -  if test "x$as_myself" = x; then
  11.125 -    as_myself=$0
  11.126 -  fi
  11.127 -  if test ! -f "$as_myself"; then
  11.128 -    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
  11.129 -   { (exit 1); exit 1; }; }
  11.130 -  fi
  11.131 -  case $CONFIG_SHELL in
  11.132 -  '')
  11.133 -    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  11.134 -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  11.135 -do
  11.136 -  IFS=$as_save_IFS
  11.137 -  test -z "$as_dir" && as_dir=.
  11.138 -  for as_base in sh bash ksh sh5; do
  11.139 -	 case $as_dir in
  11.140 -	 /*)
  11.141 -	   if ("$as_dir/$as_base" -c '
  11.142 -  as_lineno_1=$LINENO
  11.143 -  as_lineno_2=$LINENO
  11.144 -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  11.145 -  test "x$as_lineno_1" != "x$as_lineno_2" &&
  11.146 -  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
  11.147 -	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
  11.148 -	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
  11.149 -	     CONFIG_SHELL=$as_dir/$as_base
  11.150 -	     export CONFIG_SHELL
  11.151 -	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
  11.152 -	   fi;;
  11.153 -	 esac
  11.154 -       done
  11.155 -done
  11.156 -;;
  11.157 -  esac
  11.158 -
  11.159 -  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  11.160 -  # uniformly replaced by the line number.  The first 'sed' inserts a
  11.161 -  # line-number line before each line; the second 'sed' does the real
  11.162 -  # work.  The second script uses 'N' to pair each line-number line
  11.163 -  # with the numbered line, and appends trailing '-' during
  11.164 -  # substitution so that $LINENO is not a special case at line end.
  11.165 -  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  11.166 -  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
  11.167 -  sed '=' <$as_myself |
  11.168 -    sed '
  11.169 -      N
  11.170 -      s,$,-,
  11.171 -      : loop
  11.172 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
  11.173 -      t loop
  11.174 -      s,-$,,
  11.175 -      s,^['$as_cr_digits']*\n,,
  11.176 -    ' >$as_me.lineno &&
  11.177 -  chmod +x $as_me.lineno ||
  11.178 -    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
  11.179 -   { (exit 1); exit 1; }; }
  11.180 -
  11.181 -  # Don't try to exec as it changes $[0], causing all sort of problems
  11.182 -  # (the dirname of $[0] is not the place where we might find the
  11.183 -  # original and so on.  Autoconf is especially sensible to this).
  11.184 -  . ./$as_me.lineno
  11.185 -  # Exit status is that of the last command.
  11.186 -  exit
  11.187 -}
  11.188 -
  11.189 -
  11.190 -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
  11.191 -  *c*,-n*) ECHO_N= ECHO_C='
  11.192 -' ECHO_T='	' ;;
  11.193 -  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
  11.194 -  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
  11.195 -esac
  11.196 -
  11.197 -if expr a : '\(a\)' >/dev/null 2>&1; then
  11.198 -  as_expr=expr
  11.199 -else
  11.200 -  as_expr=false
  11.201 -fi
  11.202 -
  11.203 -rm -f conf$$ conf$$.exe conf$$.file
  11.204 -echo >conf$$.file
  11.205 -if ln -s conf$$.file conf$$ 2>/dev/null; then
  11.206 -  # We could just check for DJGPP; but this test a) works b) is more generic
  11.207 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
  11.208 -  if test -f conf$$.exe; then
  11.209 -    # Don't use ln at all; we don't have any links
  11.210 -    as_ln_s='cp -p'
  11.211 -  else
  11.212 -    as_ln_s='ln -s'
  11.213 -  fi
  11.214 -elif ln conf$$.file conf$$ 2>/dev/null; then
  11.215 -  as_ln_s=ln
  11.216 -else
  11.217 -  as_ln_s='cp -p'
  11.218 -fi
  11.219 -rm -f conf$$ conf$$.exe conf$$.file
  11.220 -
  11.221 -if mkdir -p . 2>/dev/null; then
  11.222 -  as_mkdir_p=:
  11.223 -else
  11.224 -  test -d ./-p && rmdir ./-p
  11.225 -  as_mkdir_p=false
  11.226 -fi
  11.227 -
  11.228 -as_executable_p="test -f"
  11.229 -
  11.230 -# Sed expression to map a string onto a valid CPP name.
  11.231 -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  11.232 -
  11.233 -# Sed expression to map a string onto a valid variable name.
  11.234 -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  11.235 -
  11.236 -
  11.237 -# IFS
  11.238 -# We need space, tab and new line, in precisely that order.
  11.239 -as_nl='
  11.240 -'
  11.241 -IFS=" 	$as_nl"
  11.242 -
  11.243 -# CDPATH.
  11.244 -$as_unset CDPATH
  11.245 -
  11.246 -
  11.247 -
  11.248 -# Check that we are running under the correct shell.
  11.249 -SHELL=${CONFIG_SHELL-/bin/sh}
  11.250 -
  11.251 -case X$lt_ECHO in
  11.252 -X*--fallback-echo)
  11.253 -  # Remove one level of quotation (which was required for Make).
  11.254 -  ECHO=`echo "$lt_ECHO" | sed 's,\\\\\$\\$0,'$0','`
  11.255 -  ;;
  11.256 -esac
  11.257 -
  11.258 -ECHO=${lt_ECHO-echo}
  11.259 -if test "X$1" = X--no-reexec; then
  11.260 -  # Discard the --no-reexec flag, and continue.
  11.261 -  shift
  11.262 -elif test "X$1" = X--fallback-echo; then
  11.263 -  # Avoid inline document here, it may be left over
  11.264 -  :
  11.265 -elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then
  11.266 -  # Yippee, $ECHO works!
  11.267 -  :
  11.268 -else
  11.269 -  # Restart under the correct shell.
  11.270 -  exec $SHELL "$0" --no-reexec ${1+"$@"}
  11.271 -fi
  11.272 -
  11.273 -if test "X$1" = X--fallback-echo; then
  11.274 -  # used as fallback echo
  11.275 -  shift
  11.276 -  cat <<_LT_EOF
  11.277 -$*
  11.278 -_LT_EOF
  11.279 -  exit 0
  11.280 -fi
  11.281 -
  11.282 -# The HP-UX ksh and POSIX shell print the target directory to stdout
  11.283 -# if CDPATH is set.
  11.284 -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  11.285 -
  11.286 -if test -z "$lt_ECHO"; then
  11.287 -  if test "X${echo_test_string+set}" != Xset; then
  11.288 -    # find a string as large as possible, as long as the shell can cope with it
  11.289 -    for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
  11.290 -      # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
  11.291 -      if { echo_test_string=`eval $cmd`; } 2>/dev/null &&
  11.292 -	 { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null
  11.293 -      then
  11.294 -        break
  11.295 -      fi
  11.296 -    done
  11.297 -  fi
  11.298 -
  11.299 -  if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
  11.300 -     echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
  11.301 -     test "X$echo_testing_string" = "X$echo_test_string"; then
  11.302 -    :
  11.303 -  else
  11.304 -    # The Solaris, AIX, and Digital Unix default echo programs unquote
  11.305 -    # backslashes.  This makes it impossible to quote backslashes using
  11.306 -    #   echo "$something" | sed 's/\\/\\\\/g'
  11.307 -    #
  11.308 -    # So, first we look for a working echo in the user's PATH.
  11.309 -
  11.310 -    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  11.311 -    for dir in $PATH /usr/ucb; do
  11.312 -      IFS="$lt_save_ifs"
  11.313 -      if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
  11.314 -         test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
  11.315 -         echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
  11.316 -         test "X$echo_testing_string" = "X$echo_test_string"; then
  11.317 -        ECHO="$dir/echo"
  11.318 -        break
  11.319 -      fi
  11.320 -    done
  11.321 -    IFS="$lt_save_ifs"
  11.322 -
  11.323 -    if test "X$ECHO" = Xecho; then
  11.324 -      # We didn't find a better echo, so look for alternatives.
  11.325 -      if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' &&
  11.326 -         echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` &&
  11.327 -         test "X$echo_testing_string" = "X$echo_test_string"; then
  11.328 -        # This shell has a builtin print -r that does the trick.
  11.329 -        ECHO='print -r'
  11.330 -      elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } &&
  11.331 -	   test "X$CONFIG_SHELL" != X/bin/ksh; then
  11.332 -        # If we have ksh, try running configure again with it.
  11.333 -        ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
  11.334 -        export ORIGINAL_CONFIG_SHELL
  11.335 -        CONFIG_SHELL=/bin/ksh
  11.336 -        export CONFIG_SHELL
  11.337 -        exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
  11.338 -      else
  11.339 -        # Try using printf.
  11.340 -        ECHO='printf %s\n'
  11.341 -        if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
  11.342 -	   echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
  11.343 -	   test "X$echo_testing_string" = "X$echo_test_string"; then
  11.344 -	  # Cool, printf works
  11.345 -	  :
  11.346 -        elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
  11.347 -	     test "X$echo_testing_string" = 'X\t' &&
  11.348 -	     echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  11.349 -	     test "X$echo_testing_string" = "X$echo_test_string"; then
  11.350 -	  CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
  11.351 -	  export CONFIG_SHELL
  11.352 -	  SHELL="$CONFIG_SHELL"
  11.353 -	  export SHELL
  11.354 -	  ECHO="$CONFIG_SHELL $0 --fallback-echo"
  11.355 -        elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
  11.356 -	     test "X$echo_testing_string" = 'X\t' &&
  11.357 -	     echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  11.358 -	     test "X$echo_testing_string" = "X$echo_test_string"; then
  11.359 -	  ECHO="$CONFIG_SHELL $0 --fallback-echo"
  11.360 -        else
  11.361 -	  # maybe with a smaller string...
  11.362 -	  prev=:
  11.363 -
  11.364 -	  for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
  11.365 -	    if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null
  11.366 -	    then
  11.367 -	      break
  11.368 -	    fi
  11.369 -	    prev="$cmd"
  11.370 -	  done
  11.371 -
  11.372 -	  if test "$prev" != 'sed 50q "$0"'; then
  11.373 -	    echo_test_string=`eval $prev`
  11.374 -	    export echo_test_string
  11.375 -	    exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
  11.376 -	  else
  11.377 -	    # Oops.  We lost completely, so just stick with echo.
  11.378 -	    ECHO=echo
  11.379 -	  fi
  11.380 -        fi
  11.381 -      fi
  11.382 -    fi
  11.383 -  fi
  11.384 -fi
  11.385 -
  11.386 -# Copy echo and quote the copy suitably for passing to libtool from
  11.387 -# the Makefile, instead of quoting the original, which is used later.
  11.388 -lt_ECHO=$ECHO
  11.389 -if test "X$lt_ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then
  11.390 -   lt_ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo"
  11.391 -fi
  11.392 -
  11.393 -
  11.394 -
  11.395 -
  11.396 -# Name of the host.
  11.397 -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
  11.398 -# so uname gets run too.
  11.399 -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  11.400 -
  11.401 -exec 6>&1
  11.402 -
  11.403 -#
  11.404 -# Initializations.
  11.405 -#
  11.406 -ac_default_prefix=/usr/local
  11.407 -ac_config_libobj_dir=.
  11.408 -cross_compiling=no
  11.409 -subdirs=
  11.410 -MFLAGS=
  11.411 -MAKEFLAGS=
  11.412 -SHELL=${CONFIG_SHELL-/bin/sh}
  11.413 -
  11.414 -# Maximum number of lines to put in a shell here document.
  11.415 -# This variable seems obsolete.  It should probably be removed, and
  11.416 -# only ac_max_sed_lines should be used.
  11.417 -: ${ac_max_here_lines=38}
  11.418 -
  11.419 -# Identity of this package.
  11.420 -PACKAGE_NAME=
  11.421 -PACKAGE_TARNAME=
  11.422 -PACKAGE_VERSION=
  11.423 -PACKAGE_STRING=
  11.424 -PACKAGE_BUGREPORT=
  11.425 -
  11.426 -ac_unique_file="ar.c"
  11.427 -# Factoring default headers for most tests.
  11.428 -ac_includes_default="\
  11.429 -#include <stdio.h>
  11.430 -#if HAVE_SYS_TYPES_H
  11.431 -# include <sys/types.h>
  11.432 -#endif
  11.433 -#if HAVE_SYS_STAT_H
  11.434 -# include <sys/stat.h>
  11.435 -#endif
  11.436 -#if STDC_HEADERS
  11.437 -# include <stdlib.h>
  11.438 -# include <stddef.h>
  11.439 -#else
  11.440 -# if HAVE_STDLIB_H
  11.441 -#  include <stdlib.h>
  11.442 -# endif
  11.443 -#endif
  11.444 -#if HAVE_STRING_H
  11.445 -# if !STDC_HEADERS && HAVE_MEMORY_H
  11.446 -#  include <memory.h>
  11.447 -# endif
  11.448 -# include <string.h>
  11.449 -#endif
  11.450 -#if HAVE_STRINGS_H
  11.451 -# include <strings.h>
  11.452 -#endif
  11.453 -#if HAVE_INTTYPES_H
  11.454 -# include <inttypes.h>
  11.455 -#else
  11.456 -# if HAVE_STDINT_H
  11.457 -#  include <stdint.h>
  11.458 -# endif
  11.459 -#endif
  11.460 -#if HAVE_UNISTD_H
  11.461 -# include <unistd.h>
  11.462 -#endif"
  11.463 -
  11.464 -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE LIBTOOL SED EGREP FGREP GREP LD DUMPBIN ac_ct_DUMPBIN NM LN_S AR ac_ct_AR RANLIB ac_ct_RANLIB lt_ECHO CPP WARN_CFLAGS NO_WERROR YACC LEX LEXLIB LEX_OUTPUT_ROOT USE_NLS LIBINTL LIBINTL_DEP INCINTL XGETTEXT GMSGFMT POSUB CATALOGS DATADIRNAME INSTOBJEXT GENCAT CATOBJEXT MKINSTALLDIRS MSGFMT MSGMERGE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT GENINSRC_NEVER_TRUE GENINSRC_NEVER_FALSE HDEFINES CC_FOR_BUILD EXEEXT_FOR_BUILD DEMANGLER_NAME ALLOCA LIBICONV LTLIBICONV NLMCONV_DEFS BUILD_NLMCONV BUILD_SRCONV BUILD_DLLTOOL DLLTOOL_DEFS BUILD_WINDRES BUILD_WINDMC BUILD_DLLWRAP BUILD_MISC BUILD_INSTALL_MISC OBJDUMP_DEFS EMULATION EMULATION_VECTOR datarootdir docdir htmldir LIBOBJS LTLIBOBJS'
  11.465 -ac_subst_files=''
  11.466 -ac_pwd=`pwd`
  11.467 -
  11.468 -# Initialize some variables set by options.
  11.469 -ac_init_help=
  11.470 -ac_init_version=false
  11.471 -# The variables have the same names as the options, with
  11.472 -# dashes changed to underlines.
  11.473 -cache_file=/dev/null
  11.474 -exec_prefix=NONE
  11.475 -no_create=
  11.476 -no_recursion=
  11.477 -prefix=NONE
  11.478 -program_prefix=NONE
  11.479 -program_suffix=NONE
  11.480 -program_transform_name=s,x,x,
  11.481 -silent=
  11.482 -site=
  11.483 -srcdir=
  11.484 -verbose=
  11.485 -x_includes=NONE
  11.486 -x_libraries=NONE
  11.487 -
  11.488 -# Installation directory options.
  11.489 -# These are left unexpanded so users can "make install exec_prefix=/foo"
  11.490 -# and all the variables that are supposed to be based on exec_prefix
  11.491 -# by default will actually change.
  11.492 -# Use braces instead of parens because sh, perl, etc. also accept them.
  11.493 -bindir='${exec_prefix}/bin'
  11.494 -sbindir='${exec_prefix}/sbin'
  11.495 -libexecdir='${exec_prefix}/libexec'
  11.496 -datadir='${prefix}/share'
  11.497 -sysconfdir='${prefix}/etc'
  11.498 -sharedstatedir='${prefix}/com'
  11.499 -localstatedir='${prefix}/var'
  11.500 -libdir='${exec_prefix}/lib'
  11.501 -includedir='${prefix}/include'
  11.502 -oldincludedir='/usr/include'
  11.503 -infodir='${prefix}/info'
  11.504 -mandir='${prefix}/man'
  11.505 -
  11.506 -ac_prev=
  11.507 -for ac_option
  11.508 -do
  11.509 -  # If the previous option needs an argument, assign it.
  11.510 -  if test -n "$ac_prev"; then
  11.511 -    eval "$ac_prev=\$ac_option"
  11.512 -    ac_prev=
  11.513 -    continue
  11.514 -  fi
  11.515 -
  11.516 -  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
  11.517 -
  11.518 -  # Accept the important Cygnus configure options, so we can diagnose typos.
  11.519 -
  11.520 -  case $ac_option in
  11.521 -
  11.522 -  -bindir | --bindir | --bindi | --bind | --bin | --bi)
  11.523 -    ac_prev=bindir ;;
  11.524 -  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  11.525 -    bindir=$ac_optarg ;;
  11.526 -
  11.527 -  -build | --build | --buil | --bui | --bu)
  11.528 -    ac_prev=build_alias ;;
  11.529 -  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  11.530 -    build_alias=$ac_optarg ;;
  11.531 -
  11.532 -  -cache-file | --cache-file | --cache-fil | --cache-fi \
  11.533 -  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  11.534 -    ac_prev=cache_file ;;
  11.535 -  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  11.536 -  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  11.537 -    cache_file=$ac_optarg ;;
  11.538 -
  11.539 -  --config-cache | -C)
  11.540 -    cache_file=config.cache ;;
  11.541 -
  11.542 -  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
  11.543 -    ac_prev=datadir ;;
  11.544 -  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
  11.545 -  | --da=*)
  11.546 -    datadir=$ac_optarg ;;
  11.547 -
  11.548 -  -disable-* | --disable-*)
  11.549 -    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  11.550 -    # Reject names that are not valid shell variable names.
  11.551 -    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  11.552 -      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
  11.553 -   { (exit 1); exit 1; }; }
  11.554 -    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
  11.555 -    eval "enable_$ac_feature=no" ;;
  11.556 -
  11.557 -  -enable-* | --enable-*)
  11.558 -    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  11.559 -    # Reject names that are not valid shell variable names.
  11.560 -    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  11.561 -      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
  11.562 -   { (exit 1); exit 1; }; }
  11.563 -    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
  11.564 -    case $ac_option in
  11.565 -      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
  11.566 -      *) ac_optarg=yes ;;
  11.567 -    esac
  11.568 -    eval "enable_$ac_feature='$ac_optarg'" ;;
  11.569 -
  11.570 -  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  11.571 -  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  11.572 -  | --exec | --exe | --ex)
  11.573 -    ac_prev=exec_prefix ;;
  11.574 -  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  11.575 -  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  11.576 -  | --exec=* | --exe=* | --ex=*)
  11.577 -    exec_prefix=$ac_optarg ;;
  11.578 -
  11.579 -  -gas | --gas | --ga | --g)
  11.580 -    # Obsolete; use --with-gas.
  11.581 -    with_gas=yes ;;
  11.582 -
  11.583 -  -help | --help | --hel | --he | -h)
  11.584 -    ac_init_help=long ;;
  11.585 -  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
  11.586 -    ac_init_help=recursive ;;
  11.587 -  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
  11.588 -    ac_init_help=short ;;
  11.589 -
  11.590 -  -host | --host | --hos | --ho)
  11.591 -    ac_prev=host_alias ;;
  11.592 -  -host=* | --host=* | --hos=* | --ho=*)
  11.593 -    host_alias=$ac_optarg ;;
  11.594 -
  11.595 -  -includedir | --includedir | --includedi | --included | --include \
  11.596 -  | --includ | --inclu | --incl | --inc)
  11.597 -    ac_prev=includedir ;;
  11.598 -  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  11.599 -  | --includ=* | --inclu=* | --incl=* | --inc=*)
  11.600 -    includedir=$ac_optarg ;;
  11.601 -
  11.602 -  -infodir | --infodir | --infodi | --infod | --info | --inf)
  11.603 -    ac_prev=infodir ;;
  11.604 -  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  11.605 -    infodir=$ac_optarg ;;
  11.606 -
  11.607 -  -libdir | --libdir | --libdi | --libd)
  11.608 -    ac_prev=libdir ;;
  11.609 -  -libdir=* | --libdir=* | --libdi=* | --libd=*)
  11.610 -    libdir=$ac_optarg ;;
  11.611 -
  11.612 -  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  11.613 -  | --libexe | --libex | --libe)
  11.614 -    ac_prev=libexecdir ;;
  11.615 -  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  11.616 -  | --libexe=* | --libex=* | --libe=*)
  11.617 -    libexecdir=$ac_optarg ;;
  11.618 -
  11.619 -  -localstatedir | --localstatedir | --localstatedi | --localstated \
  11.620 -  | --localstate | --localstat | --localsta | --localst \
  11.621 -  | --locals | --local | --loca | --loc | --lo)
  11.622 -    ac_prev=localstatedir ;;
  11.623 -  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  11.624 -  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
  11.625 -  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
  11.626 -    localstatedir=$ac_optarg ;;
  11.627 -
  11.628 -  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  11.629 -    ac_prev=mandir ;;
  11.630 -  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  11.631 -    mandir=$ac_optarg ;;
  11.632 -
  11.633 -  -nfp | --nfp | --nf)
  11.634 -    # Obsolete; use --without-fp.
  11.635 -    with_fp=no ;;
  11.636 -
  11.637 -  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  11.638 -  | --no-cr | --no-c | -n)
  11.639 -    no_create=yes ;;
  11.640 -
  11.641 -  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  11.642 -  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  11.643 -    no_recursion=yes ;;
  11.644 -
  11.645 -  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  11.646 -  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  11.647 -  | --oldin | --oldi | --old | --ol | --o)
  11.648 -    ac_prev=oldincludedir ;;
  11.649 -  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  11.650 -  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  11.651 -  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  11.652 -    oldincludedir=$ac_optarg ;;
  11.653 -
  11.654 -  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  11.655 -    ac_prev=prefix ;;
  11.656 -  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  11.657 -    prefix=$ac_optarg ;;
  11.658 -
  11.659 -  -program-prefix | --program-prefix | --program-prefi | --program-pref \
  11.660 -  | --program-pre | --program-pr | --program-p)
  11.661 -    ac_prev=program_prefix ;;
  11.662 -  -program-prefix=* | --program-prefix=* | --program-prefi=* \
  11.663 -  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  11.664 -    program_prefix=$ac_optarg ;;
  11.665 -
  11.666 -  -program-suffix | --program-suffix | --program-suffi | --program-suff \
  11.667 -  | --program-suf | --program-su | --program-s)
  11.668 -    ac_prev=program_suffix ;;
  11.669 -  -program-suffix=* | --program-suffix=* | --program-suffi=* \
  11.670 -  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  11.671 -    program_suffix=$ac_optarg ;;
  11.672 -
  11.673 -  -program-transform-name | --program-transform-name \
  11.674 -  | --program-transform-nam | --program-transform-na \
  11.675 -  | --program-transform-n | --program-transform- \
  11.676 -  | --program-transform | --program-transfor \
  11.677 -  | --program-transfo | --program-transf \
  11.678 -  | --program-trans | --program-tran \
  11.679 -  | --progr-tra | --program-tr | --program-t)
  11.680 -    ac_prev=program_transform_name ;;
  11.681 -  -program-transform-name=* | --program-transform-name=* \
  11.682 -  | --program-transform-nam=* | --program-transform-na=* \
  11.683 -  | --program-transform-n=* | --program-transform-=* \
  11.684 -  | --program-transform=* | --program-transfor=* \
  11.685 -  | --program-transfo=* | --program-transf=* \
  11.686 -  | --program-trans=* | --program-tran=* \
  11.687 -  | --progr-tra=* | --program-tr=* | --program-t=*)
  11.688 -    program_transform_name=$ac_optarg ;;
  11.689 -
  11.690 -  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  11.691 -  | -silent | --silent | --silen | --sile | --sil)
  11.692 -    silent=yes ;;
  11.693 -
  11.694 -  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  11.695 -    ac_prev=sbindir ;;
  11.696 -  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  11.697 -  | --sbi=* | --sb=*)
  11.698 -    sbindir=$ac_optarg ;;
  11.699 -
  11.700 -  -sharedstatedir | --sharedstatedir | --sharedstatedi \
  11.701 -  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  11.702 -  | --sharedst | --shareds | --shared | --share | --shar \
  11.703 -  | --sha | --sh)
  11.704 -    ac_prev=sharedstatedir ;;
  11.705 -  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  11.706 -  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  11.707 -  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  11.708 -  | --sha=* | --sh=*)
  11.709 -    sharedstatedir=$ac_optarg ;;
  11.710 -
  11.711 -  -site | --site | --sit)
  11.712 -    ac_prev=site ;;
  11.713 -  -site=* | --site=* | --sit=*)
  11.714 -    site=$ac_optarg ;;
  11.715 -
  11.716 -  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  11.717 -    ac_prev=srcdir ;;
  11.718 -  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  11.719 -    srcdir=$ac_optarg ;;
  11.720 -
  11.721 -  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  11.722 -  | --syscon | --sysco | --sysc | --sys | --sy)
  11.723 -    ac_prev=sysconfdir ;;
  11.724 -  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  11.725 -  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  11.726 -    sysconfdir=$ac_optarg ;;
  11.727 -
  11.728 -  -target | --target | --targe | --targ | --tar | --ta | --t)
  11.729 -    ac_prev=target_alias ;;
  11.730 -  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  11.731 -    target_alias=$ac_optarg ;;
  11.732 -
  11.733 -  -v | -verbose | --verbose | --verbos | --verbo | --verb)
  11.734 -    verbose=yes ;;
  11.735 -
  11.736 -  -version | --version | --versio | --versi | --vers | -V)
  11.737 -    ac_init_version=: ;;
  11.738 -
  11.739 -  -with-* | --with-*)
  11.740 -    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  11.741 -    # Reject names that are not valid shell variable names.
  11.742 -    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  11.743 -      { echo "$as_me: error: invalid package name: $ac_package" >&2
  11.744 -   { (exit 1); exit 1; }; }
  11.745 -    ac_package=`echo $ac_package| sed 's/-/_/g'`
  11.746 -    case $ac_option in
  11.747 -      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
  11.748 -      *) ac_optarg=yes ;;
  11.749 -    esac
  11.750 -    eval "with_$ac_package='$ac_optarg'" ;;
  11.751 -
  11.752 -  -without-* | --without-*)
  11.753 -    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
  11.754 -    # Reject names that are not valid shell variable names.
  11.755 -    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
  11.756 -      { echo "$as_me: error: invalid package name: $ac_package" >&2
  11.757 -   { (exit 1); exit 1; }; }
  11.758 -    ac_package=`echo $ac_package | sed 's/-/_/g'`
  11.759 -    eval "with_$ac_package=no" ;;
  11.760 -
  11.761 -  --x)
  11.762 -    # Obsolete; use --with-x.
  11.763 -    with_x=yes ;;
  11.764 -
  11.765 -  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  11.766 -  | --x-incl | --x-inc | --x-in | --x-i)
  11.767 -    ac_prev=x_includes ;;
  11.768 -  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  11.769 -  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  11.770 -    x_includes=$ac_optarg ;;
  11.771 -
  11.772 -  -x-libraries | --x-libraries | --x-librarie | --x-librari \
  11.773 -  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  11.774 -    ac_prev=x_libraries ;;
  11.775 -  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  11.776 -  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  11.777 -    x_libraries=$ac_optarg ;;
  11.778 -
  11.779 -  -*) { echo "$as_me: error: unrecognized option: $ac_option
  11.780 -Try \`$0 --help' for more information." >&2
  11.781 -   { (exit 1); exit 1; }; }
  11.782 -    ;;
  11.783 -
  11.784 -  *=*)
  11.785 -    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
  11.786 -    # Reject names that are not valid shell variable names.
  11.787 -    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
  11.788 -      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
  11.789 -   { (exit 1); exit 1; }; }
  11.790 -    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
  11.791 -    eval "$ac_envvar='$ac_optarg'"
  11.792 -    export $ac_envvar ;;
  11.793 -
  11.794 -  *)
  11.795 -    # FIXME: should be removed in autoconf 3.0.
  11.796 -    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
  11.797 -    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  11.798 -      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
  11.799 -    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
  11.800 -    ;;
  11.801 -
  11.802 -  esac
  11.803 -done
  11.804 -
  11.805 -if test -n "$ac_prev"; then
  11.806 -  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
  11.807 -  { echo "$as_me: error: missing argument to $ac_option" >&2
  11.808 -   { (exit 1); exit 1; }; }
  11.809 -fi
  11.810 -
  11.811 -# Be sure to have absolute paths.
  11.812 -for ac_var in exec_prefix prefix
  11.813 -do
  11.814 -  eval ac_val=$`echo $ac_var`
  11.815 -  case $ac_val in
  11.816 -    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
  11.817 -    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
  11.818 -   { (exit 1); exit 1; }; };;
  11.819 -  esac
  11.820 -done
  11.821 -
  11.822 -# Be sure to have absolute paths.
  11.823 -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
  11.824 -	      localstatedir libdir includedir oldincludedir infodir mandir
  11.825 -do
  11.826 -  eval ac_val=$`echo $ac_var`
  11.827 -  case $ac_val in
  11.828 -    [\\/$]* | ?:[\\/]* ) ;;
  11.829 -    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
  11.830 -   { (exit 1); exit 1; }; };;
  11.831 -  esac
  11.832 -done
  11.833 -
  11.834 -# There might be people who depend on the old broken behavior: `$host'
  11.835 -# used to hold the argument of --host etc.
  11.836 -# FIXME: To remove some day.
  11.837 -build=$build_alias
  11.838 -host=$host_alias
  11.839 -target=$target_alias
  11.840 -
  11.841 -# FIXME: To remove some day.
  11.842 -if test "x$host_alias" != x; then
  11.843 -  if test "x$build_alias" = x; then
  11.844 -    cross_compiling=maybe
  11.845 -    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
  11.846 -    If a cross compiler is detected then cross compile mode will be used." >&2
  11.847 -  elif test "x$build_alias" != "x$host_alias"; then
  11.848 -    cross_compiling=yes
  11.849 -  fi
  11.850 -fi
  11.851 -
  11.852 -ac_tool_prefix=
  11.853 -test -n "$host_alias" && ac_tool_prefix=$host_alias-
  11.854 -
  11.855 -test "$silent" = yes && exec 6>/dev/null
  11.856 -
  11.857 -
  11.858 -# Find the source files, if location was not specified.
  11.859 -if test -z "$srcdir"; then
  11.860 -  ac_srcdir_defaulted=yes
  11.861 -  # Try the directory containing this script, then its parent.
  11.862 -  ac_confdir=`(dirname "$0") 2>/dev/null ||
  11.863 -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  11.864 -	 X"$0" : 'X\(//\)[^/]' \| \
  11.865 -	 X"$0" : 'X\(//\)$' \| \
  11.866 -	 X"$0" : 'X\(/\)' \| \
  11.867 -	 .     : '\(.\)' 2>/dev/null ||
  11.868 -echo X"$0" |
  11.869 -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
  11.870 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
  11.871 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
  11.872 -  	  /^X\(\/\).*/{ s//\1/; q; }
  11.873 -  	  s/.*/./; q'`
  11.874 -  srcdir=$ac_confdir
  11.875 -  if test ! -r $srcdir/$ac_unique_file; then
  11.876 -    srcdir=..
  11.877 -  fi
  11.878 -else
  11.879 -  ac_srcdir_defaulted=no
  11.880 -fi
  11.881 -if test ! -r $srcdir/$ac_unique_file; then
  11.882 -  if test "$ac_srcdir_defaulted" = yes; then
  11.883 -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
  11.884 -   { (exit 1); exit 1; }; }
  11.885 -  else
  11.886 -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
  11.887 -   { (exit 1); exit 1; }; }
  11.888 -  fi
  11.889 -fi
  11.890 -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
  11.891 -  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
  11.892 -   { (exit 1); exit 1; }; }
  11.893 -srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
  11.894 -ac_env_build_alias_set=${build_alias+set}
  11.895 -ac_env_build_alias_value=$build_alias
  11.896 -ac_cv_env_build_alias_set=${build_alias+set}
  11.897 -ac_cv_env_build_alias_value=$build_alias
  11.898 -ac_env_host_alias_set=${host_alias+set}
  11.899 -ac_env_host_alias_value=$host_alias
  11.900 -ac_cv_env_host_alias_set=${host_alias+set}
  11.901 -ac_cv_env_host_alias_value=$host_alias
  11.902 -ac_env_target_alias_set=${target_alias+set}
  11.903 -ac_env_target_alias_value=$target_alias
  11.904 -ac_cv_env_target_alias_set=${target_alias+set}
  11.905 -ac_cv_env_target_alias_value=$target_alias
  11.906 -ac_env_CC_set=${CC+set}
  11.907 -ac_env_CC_value=$CC
  11.908 -ac_cv_env_CC_set=${CC+set}
  11.909 -ac_cv_env_CC_value=$CC
  11.910 -ac_env_CFLAGS_set=${CFLAGS+set}
  11.911 -ac_env_CFLAGS_value=$CFLAGS
  11.912 -ac_cv_env_CFLAGS_set=${CFLAGS+set}
  11.913 -ac_cv_env_CFLAGS_value=$CFLAGS
  11.914 -ac_env_LDFLAGS_set=${LDFLAGS+set}
  11.915 -ac_env_LDFLAGS_value=$LDFLAGS
  11.916 -ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
  11.917 -ac_cv_env_LDFLAGS_value=$LDFLAGS
  11.918 -ac_env_CPPFLAGS_set=${CPPFLAGS+set}
  11.919 -ac_env_CPPFLAGS_value=$CPPFLAGS
  11.920 -ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
  11.921 -ac_cv_env_CPPFLAGS_value=$CPPFLAGS
  11.922 -ac_env_CPP_set=${CPP+set}
  11.923 -ac_env_CPP_value=$CPP
  11.924 -ac_cv_env_CPP_set=${CPP+set}
  11.925 -ac_cv_env_CPP_value=$CPP
  11.926 -
  11.927 -#
  11.928 -# Report the --help message.
  11.929 -#
  11.930 -if test "$ac_init_help" = "long"; then
  11.931 -  # Omit some internal or obsolete options to make the list less imposing.
  11.932 -  # This message is too long to be a string in the A/UX 3.1 sh.
  11.933 -  cat <<_ACEOF
  11.934 -\`configure' configures this package to adapt to many kinds of systems.
  11.935 -
  11.936 -Usage: $0 [OPTION]... [VAR=VALUE]...
  11.937 -
  11.938 -To assign environment variables (e.g., CC, CFLAGS...), specify them as
  11.939 -VAR=VALUE.  See below for descriptions of some of the useful variables.
  11.940 -
  11.941 -Defaults for the options are specified in brackets.
  11.942 -
  11.943 -Configuration:
  11.944 -  -h, --help              display this help and exit
  11.945 -      --help=short        display options specific to this package
  11.946 -      --help=recursive    display the short help of all the included packages
  11.947 -  -V, --version           display version information and exit
  11.948 -  -q, --quiet, --silent   do not print \`checking...' messages
  11.949 -      --cache-file=FILE   cache test results in FILE [disabled]
  11.950 -  -C, --config-cache      alias for \`--cache-file=config.cache'
  11.951 -  -n, --no-create         do not create output files
  11.952 -      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
  11.953 -
  11.954 -_ACEOF
  11.955 -
  11.956 -  cat <<_ACEOF
  11.957 -Installation directories:
  11.958 -  --prefix=PREFIX         install architecture-independent files in PREFIX
  11.959 -			  [$ac_default_prefix]
  11.960 -  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  11.961 -			  [PREFIX]
  11.962 -
  11.963 -By default, \`make install' will install all the files in
  11.964 -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
  11.965 -an installation prefix other than \`$ac_default_prefix' using \`--prefix',
  11.966 -for instance \`--prefix=\$HOME'.
  11.967 -
  11.968 -For better control, use the options below.
  11.969 -
  11.970 -Fine tuning of the installation directories:
  11.971 -  --bindir=DIR           user executables [EPREFIX/bin]
  11.972 -  --sbindir=DIR          system admin executables [EPREFIX/sbin]
  11.973 -  --libexecdir=DIR       program executables [EPREFIX/libexec]
  11.974 -  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
  11.975 -  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
  11.976 -  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
  11.977 -  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
  11.978 -  --libdir=DIR           object code libraries [EPREFIX/lib]
  11.979 -  --includedir=DIR       C header files [PREFIX/include]
  11.980 -  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
  11.981 -  --infodir=DIR          info documentation [PREFIX/info]
  11.982 -  --mandir=DIR           man documentation [PREFIX/man]
  11.983 -_ACEOF
  11.984 -
  11.985 -  cat <<\_ACEOF
  11.986 -
  11.987 -Program names:
  11.988 -  --program-prefix=PREFIX            prepend PREFIX to installed program names
  11.989 -  --program-suffix=SUFFIX            append SUFFIX to installed program names
  11.990 -  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
  11.991 -
  11.992 -System types:
  11.993 -  --build=BUILD     configure for building on BUILD [guessed]
  11.994 -  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
  11.995 -  --target=TARGET   configure for building compilers for TARGET [HOST]
  11.996 -_ACEOF
  11.997 -fi
  11.998 -
  11.999 -if test -n "$ac_init_help"; then
 11.1000 -
 11.1001 -  cat <<\_ACEOF
 11.1002 -
 11.1003 -Optional Features:
 11.1004 -  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
 11.1005 -  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 11.1006 -  --disable-dependency-tracking  speeds up one-time build
 11.1007 -  --enable-dependency-tracking   do not reject slow dependency extractors
 11.1008 -  --enable-shared[=PKGS]
 11.1009 -                          build shared libraries [default=yes]
 11.1010 -  --enable-static[=PKGS]
 11.1011 -                          build static libraries [default=yes]
 11.1012 -  --enable-fast-install[=PKGS]
 11.1013 -                          optimize for fast installation [default=yes]
 11.1014 -  --disable-libtool-lock  avoid locking (might break parallel builds)
 11.1015 -  --enable-targets        alternative target configurations
 11.1016 -  --enable-commonbfdlib   build shared BFD/opcodes/libiberty library
 11.1017 -  --enable-werror         treat compile warnings as errors
 11.1018 -  --enable-build-warnings enable build-time compiler warnings
 11.1019 -  --disable-nls           do not use Native Language Support
 11.1020 -  --enable-maintainer-mode  enable make rules and dependencies not useful
 11.1021 -			  (and sometimes confusing) to the casual installer
 11.1022 -  --disable-rpath         do not hardcode runtime library paths
 11.1023 -
 11.1024 -Optional Packages:
 11.1025 -  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
 11.1026 -  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
 11.1027 -  --with-pic              try to use only PIC/non-PIC objects [default=use
 11.1028 -                          both]
 11.1029 -  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]
 11.1030 -  --with-gnu-ld           assume the C compiler uses GNU ld default=no
 11.1031 -  --with-libiconv-prefix[=DIR]  search for libiconv in DIR/include and DIR/lib
 11.1032 -  --without-libiconv-prefix     don't search for libiconv in includedir and libdir
 11.1033 -
 11.1034 -Some influential environment variables:
 11.1035 -  CC          C compiler command
 11.1036 -  CFLAGS      C compiler flags
 11.1037 -  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
 11.1038 -              nonstandard directory <lib dir>
 11.1039 -  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
 11.1040 -              headers in a nonstandard directory <include dir>
 11.1041 -  CPP         C preprocessor
 11.1042 -
 11.1043 -Use these variables to override the choices made by `configure' or to help
 11.1044 -it to find libraries and programs with nonstandard names/locations.
 11.1045 -
 11.1046 -_ACEOF
 11.1047 -fi
 11.1048 -
 11.1049 -if test "$ac_init_help" = "recursive"; then
 11.1050 -  # If there are subdirs, report their specific --help.
 11.1051 -  ac_popdir=`pwd`
 11.1052 -  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 11.1053 -    test -d $ac_dir || continue
 11.1054 -    ac_builddir=.
 11.1055 -
 11.1056 -if test "$ac_dir" != .; then
 11.1057 -  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 11.1058 -  # A "../" for each directory in $ac_dir_suffix.
 11.1059 -  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
 11.1060 -else
 11.1061 -  ac_dir_suffix= ac_top_builddir=
 11.1062 -fi
 11.1063 -
 11.1064 -case $srcdir in
 11.1065 -  .)  # No --srcdir option.  We are building in place.
 11.1066 -    ac_srcdir=.
 11.1067 -    if test -z "$ac_top_builddir"; then
 11.1068 -       ac_top_srcdir=.
 11.1069 -    else
 11.1070 -       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
 11.1071 -    fi ;;
 11.1072 -  [\\/]* | ?:[\\/]* )  # Absolute path.
 11.1073 -    ac_srcdir=$srcdir$ac_dir_suffix;
 11.1074 -    ac_top_srcdir=$srcdir ;;
 11.1075 -  *) # Relative path.
 11.1076 -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 11.1077 -    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 11.1078 -esac
 11.1079 -
 11.1080 -# Do not use `cd foo && pwd` to compute absolute paths, because
 11.1081 -# the directories may not exist.
 11.1082 -case `pwd` in
 11.1083 -.) ac_abs_builddir="$ac_dir";;
 11.1084 -*)
 11.1085 -  case "$ac_dir" in
 11.1086 -  .) ac_abs_builddir=`pwd`;;
 11.1087 -  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
 11.1088 -  *) ac_abs_builddir=`pwd`/"$ac_dir";;
 11.1089 -  esac;;
 11.1090 -esac
 11.1091 -case $ac_abs_builddir in
 11.1092 -.) ac_abs_top_builddir=${ac_top_builddir}.;;
 11.1093 -*)
 11.1094 -  case ${ac_top_builddir}. in
 11.1095 -  .) ac_abs_top_builddir=$ac_abs_builddir;;
 11.1096 -  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
 11.1097 -  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
 11.1098 -  esac;;
 11.1099 -esac
 11.1100 -case $ac_abs_builddir in
 11.1101 -.) ac_abs_srcdir=$ac_srcdir;;
 11.1102 -*)
 11.1103 -  case $ac_srcdir in
 11.1104 -  .) ac_abs_srcdir=$ac_abs_builddir;;
 11.1105 -  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 11.1106 -  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 11.1107 -  esac;;
 11.1108 -esac
 11.1109 -case $ac_abs_builddir in
 11.1110 -.) ac_abs_top_srcdir=$ac_top_srcdir;;
 11.1111 -*)
 11.1112 -  case $ac_top_srcdir in
 11.1113 -  .) ac_abs_top_srcdir=$ac_abs_builddir;;
 11.1114 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 11.1115 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 11.1116 -  esac;;
 11.1117 -esac
 11.1118 -
 11.1119 -    cd $ac_dir
 11.1120 -    # Check for guested configure; otherwise get Cygnus style configure.
 11.1121 -    if test -f $ac_srcdir/configure.gnu; then
 11.1122 -      echo
 11.1123 -      $SHELL $ac_srcdir/configure.gnu  --help=recursive
 11.1124 -    elif test -f $ac_srcdir/configure; then
 11.1125 -      echo
 11.1126 -      $SHELL $ac_srcdir/configure  --help=recursive
 11.1127 -    elif test -f $ac_srcdir/configure.ac ||
 11.1128 -	   test -f $ac_srcdir/configure.in; then
 11.1129 -      echo
 11.1130 -      $ac_configure --help
 11.1131 -    else
 11.1132 -      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 11.1133 -    fi
 11.1134 -    cd "$ac_popdir"
 11.1135 -  done
 11.1136 -fi
 11.1137 -
 11.1138 -test -n "$ac_init_help" && exit 0
 11.1139 -if $ac_init_version; then
 11.1140 -  cat <<\_ACEOF
 11.1141 -
 11.1142 -Copyright (C) 2003 Free Software Foundation, Inc.
 11.1143 -This configure script is free software; the Free Software Foundation
 11.1144 -gives unlimited permission to copy, distribute and modify it.
 11.1145 -_ACEOF
 11.1146 -  exit 0
 11.1147 -fi
 11.1148 -exec 5>config.log
 11.1149 -cat >&5 <<_ACEOF
 11.1150 -This file contains any messages produced by compilers while
 11.1151 -running configure, to aid debugging if configure makes a mistake.
 11.1152 -
 11.1153 -It was created by $as_me, which was
 11.1154 -generated by GNU Autoconf 2.59.  Invocation command line was
 11.1155 -
 11.1156 -  $ $0 $@
 11.1157 -
 11.1158 -_ACEOF
 11.1159 -{
 11.1160 -cat <<_ASUNAME
 11.1161 -## --------- ##
 11.1162 -## Platform. ##
 11.1163 -## --------- ##
 11.1164 -
 11.1165 -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
 11.1166 -uname -m = `(uname -m) 2>/dev/null || echo unknown`
 11.1167 -uname -r = `(uname -r) 2>/dev/null || echo unknown`
 11.1168 -uname -s = `(uname -s) 2>/dev/null || echo unknown`
 11.1169 -uname -v = `(uname -v) 2>/dev/null || echo unknown`
 11.1170 -
 11.1171 -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
 11.1172 -/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
 11.1173 -
 11.1174 -/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 11.1175 -/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 11.1176 -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 11.1177 -hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown`
 11.1178 -/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 11.1179 -/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 11.1180 -/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 11.1181 -
 11.1182 -_ASUNAME
 11.1183 -
 11.1184 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1185 -for as_dir in $PATH
 11.1186 -do
 11.1187 -  IFS=$as_save_IFS
 11.1188 -  test -z "$as_dir" && as_dir=.
 11.1189 -  echo "PATH: $as_dir"
 11.1190 -done
 11.1191 -
 11.1192 -} >&5
 11.1193 -
 11.1194 -cat >&5 <<_ACEOF
 11.1195 -
 11.1196 -
 11.1197 -## ----------- ##
 11.1198 -## Core tests. ##
 11.1199 -## ----------- ##
 11.1200 -
 11.1201 -_ACEOF
 11.1202 -
 11.1203 -
 11.1204 -# Keep a trace of the command line.
 11.1205 -# Strip out --no-create and --no-recursion so they do not pile up.
 11.1206 -# Strip out --silent because we don't want to record it for future runs.
 11.1207 -# Also quote any args containing shell meta-characters.
 11.1208 -# Make two passes to allow for proper duplicate-argument suppression.
 11.1209 -ac_configure_args=
 11.1210 -ac_configure_args0=
 11.1211 -ac_configure_args1=
 11.1212 -ac_sep=
 11.1213 -ac_must_keep_next=false
 11.1214 -for ac_pass in 1 2
 11.1215 -do
 11.1216 -  for ac_arg
 11.1217 -  do
 11.1218 -    case $ac_arg in
 11.1219 -    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
 11.1220 -    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 11.1221 -    | -silent | --silent | --silen | --sile | --sil)
 11.1222 -      continue ;;
 11.1223 -    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
 11.1224 -      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 11.1225 -    esac
 11.1226 -    case $ac_pass in
 11.1227 -    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
 11.1228 -    2)
 11.1229 -      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
 11.1230 -      if test $ac_must_keep_next = true; then
 11.1231 -	ac_must_keep_next=false # Got value, back to normal.
 11.1232 -      else
 11.1233 -	case $ac_arg in
 11.1234 -	  *=* | --config-cache | -C | -disable-* | --disable-* \
 11.1235 -	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
 11.1236 -	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
 11.1237 -	  | -with-* | --with-* | -without-* | --without-* | --x)
 11.1238 -	    case "$ac_configure_args0 " in
 11.1239 -	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
 11.1240 -	    esac
 11.1241 -	    ;;
 11.1242 -	  -* ) ac_must_keep_next=true ;;
 11.1243 -	esac
 11.1244 -      fi
 11.1245 -      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
 11.1246 -      # Get rid of the leading space.
 11.1247 -      ac_sep=" "
 11.1248 -      ;;
 11.1249 -    esac
 11.1250 -  done
 11.1251 -done
 11.1252 -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
 11.1253 -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
 11.1254 -
 11.1255 -# When interrupted or exit'd, cleanup temporary files, and complete
 11.1256 -# config.log.  We remove comments because anyway the quotes in there
 11.1257 -# would cause problems or look ugly.
 11.1258 -# WARNING: Be sure not to use single quotes in there, as some shells,
 11.1259 -# such as our DU 5.0 friend, will then `close' the trap.
 11.1260 -trap 'exit_status=$?
 11.1261 -  # Save into config.log some information that might help in debugging.
 11.1262 -  {
 11.1263 -    echo
 11.1264 -
 11.1265 -    cat <<\_ASBOX
 11.1266 -## ---------------- ##
 11.1267 -## Cache variables. ##
 11.1268 -## ---------------- ##
 11.1269 -_ASBOX
 11.1270 -    echo
 11.1271 -    # The following way of writing the cache mishandles newlines in values,
 11.1272 -{
 11.1273 -  (set) 2>&1 |
 11.1274 -    case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
 11.1275 -    *ac_space=\ *)
 11.1276 -      sed -n \
 11.1277 -	"s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
 11.1278 -	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
 11.1279 -      ;;
 11.1280 -    *)
 11.1281 -      sed -n \
 11.1282 -	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
 11.1283 -      ;;
 11.1284 -    esac;
 11.1285 -}
 11.1286 -    echo
 11.1287 -
 11.1288 -    cat <<\_ASBOX
 11.1289 -## ----------------- ##
 11.1290 -## Output variables. ##
 11.1291 -## ----------------- ##
 11.1292 -_ASBOX
 11.1293 -    echo
 11.1294 -    for ac_var in $ac_subst_vars
 11.1295 -    do
 11.1296 -      eval ac_val=$`echo $ac_var`
 11.1297 -      echo "$ac_var='"'"'$ac_val'"'"'"
 11.1298 -    done | sort
 11.1299 -    echo
 11.1300 -
 11.1301 -    if test -n "$ac_subst_files"; then
 11.1302 -      cat <<\_ASBOX
 11.1303 -## ------------- ##
 11.1304 -## Output files. ##
 11.1305 -## ------------- ##
 11.1306 -_ASBOX
 11.1307 -      echo
 11.1308 -      for ac_var in $ac_subst_files
 11.1309 -      do
 11.1310 -	eval ac_val=$`echo $ac_var`
 11.1311 -	echo "$ac_var='"'"'$ac_val'"'"'"
 11.1312 -      done | sort
 11.1313 -      echo
 11.1314 -    fi
 11.1315 -
 11.1316 -    if test -s confdefs.h; then
 11.1317 -      cat <<\_ASBOX
 11.1318 -## ----------- ##
 11.1319 -## confdefs.h. ##
 11.1320 -## ----------- ##
 11.1321 -_ASBOX
 11.1322 -      echo
 11.1323 -      sed "/^$/d" confdefs.h | sort
 11.1324 -      echo
 11.1325 -    fi
 11.1326 -    test "$ac_signal" != 0 &&
 11.1327 -      echo "$as_me: caught signal $ac_signal"
 11.1328 -    echo "$as_me: exit $exit_status"
 11.1329 -  } >&5
 11.1330 -  rm -f core *.core &&
 11.1331 -  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
 11.1332 -    exit $exit_status
 11.1333 -     ' 0
 11.1334 -for ac_signal in 1 2 13 15; do
 11.1335 -  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
 11.1336 -done
 11.1337 -ac_signal=0
 11.1338 -
 11.1339 -# confdefs.h avoids OS command line length limits that DEFS can exceed.
 11.1340 -rm -rf conftest* confdefs.h
 11.1341 -# AIX cpp loses on an empty file, so make sure it contains at least a newline.
 11.1342 -echo >confdefs.h
 11.1343 -
 11.1344 -# Predefined preprocessor variables.
 11.1345 -
 11.1346 -cat >>confdefs.h <<_ACEOF
 11.1347 -#define PACKAGE_NAME "$PACKAGE_NAME"
 11.1348 -_ACEOF
 11.1349 -
 11.1350 -
 11.1351 -cat >>confdefs.h <<_ACEOF
 11.1352 -#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
 11.1353 -_ACEOF
 11.1354 -
 11.1355 -
 11.1356 -cat >>confdefs.h <<_ACEOF
 11.1357 -#define PACKAGE_VERSION "$PACKAGE_VERSION"
 11.1358 -_ACEOF
 11.1359 -
 11.1360 -
 11.1361 -cat >>confdefs.h <<_ACEOF
 11.1362 -#define PACKAGE_STRING "$PACKAGE_STRING"
 11.1363 -_ACEOF
 11.1364 -
 11.1365 -
 11.1366 -cat >>confdefs.h <<_ACEOF
 11.1367 -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
 11.1368 -_ACEOF
 11.1369 -
 11.1370 -
 11.1371 -# Let the site file select an alternate cache file if it wants to.
 11.1372 -# Prefer explicitly selected file to automatically selected ones.
 11.1373 -if test -z "$CONFIG_SITE"; then
 11.1374 -  if test "x$prefix" != xNONE; then
 11.1375 -    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
 11.1376 -  else
 11.1377 -    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
 11.1378 -  fi
 11.1379 -fi
 11.1380 -for ac_site_file in $CONFIG_SITE; do
 11.1381 -  if test -r "$ac_site_file"; then
 11.1382 -    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
 11.1383 -echo "$as_me: loading site script $ac_site_file" >&6;}
 11.1384 -    sed 's/^/| /' "$ac_site_file" >&5
 11.1385 -    . "$ac_site_file"
 11.1386 -  fi
 11.1387 -done
 11.1388 -
 11.1389 -if test -r "$cache_file"; then
 11.1390 -  # Some versions of bash will fail to source /dev/null (special
 11.1391 -  # files actually), so we avoid doing that.
 11.1392 -  if test -f "$cache_file"; then
 11.1393 -    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
 11.1394 -echo "$as_me: loading cache $cache_file" >&6;}
 11.1395 -    case $cache_file in
 11.1396 -      [\\/]* | ?:[\\/]* ) . $cache_file;;
 11.1397 -      *)                      . ./$cache_file;;
 11.1398 -    esac
 11.1399 -  fi
 11.1400 -else
 11.1401 -  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
 11.1402 -echo "$as_me: creating cache $cache_file" >&6;}
 11.1403 -  >$cache_file
 11.1404 -fi
 11.1405 -
 11.1406 -# Check that the precious variables saved in the cache have kept the same
 11.1407 -# value.
 11.1408 -ac_cache_corrupted=false
 11.1409 -for ac_var in `(set) 2>&1 |
 11.1410 -	       sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
 11.1411 -  eval ac_old_set=\$ac_cv_env_${ac_var}_set
 11.1412 -  eval ac_new_set=\$ac_env_${ac_var}_set
 11.1413 -  eval ac_old_val="\$ac_cv_env_${ac_var}_value"
 11.1414 -  eval ac_new_val="\$ac_env_${ac_var}_value"
 11.1415 -  case $ac_old_set,$ac_new_set in
 11.1416 -    set,)
 11.1417 -      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 11.1418 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 11.1419 -      ac_cache_corrupted=: ;;
 11.1420 -    ,set)
 11.1421 -      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
 11.1422 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 11.1423 -      ac_cache_corrupted=: ;;
 11.1424 -    ,);;
 11.1425 -    *)
 11.1426 -      if test "x$ac_old_val" != "x$ac_new_val"; then
 11.1427 -        # differences in whitespace do not lead to failure.
 11.1428 -        ac_old_val_w=`echo x $ac_old_val`
 11.1429 -        ac_new_val_w=`echo x $ac_new_val`
 11.1430 -        if test "$ac_old_val_w" != "$ac_new_val_w"; then
 11.1431 -          { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
 11.1432 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 11.1433 -          ac_cache_corrupted=:
 11.1434 -        else
 11.1435 -          { echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 11.1436 -echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 11.1437 -          eval $ac_var=\$ac_old_val
 11.1438 -        fi
 11.1439 -        { echo "$as_me:$LINENO:   former value:  \`$ac_old_val'" >&5
 11.1440 -echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 11.1441 -        { echo "$as_me:$LINENO:   current value: \`$ac_new_val'" >&5
 11.1442 -echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 11.1443 -      fi;;
 11.1444 -  esac
 11.1445 -  # Pass precious variables to config.status.
 11.1446 -  if test "$ac_new_set" = set; then
 11.1447 -    case $ac_new_val in
 11.1448 -    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
 11.1449 -      ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 11.1450 -    *) ac_arg=$ac_var=$ac_new_val ;;
 11.1451 -    esac
 11.1452 -    case " $ac_configure_args " in
 11.1453 -      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
 11.1454 -      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
 11.1455 -    esac
 11.1456 -  fi
 11.1457 -done
 11.1458 -if $ac_cache_corrupted; then
 11.1459 -  { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.1460 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.1461 -  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
 11.1462 -echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 11.1463 -  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
 11.1464 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
 11.1465 -   { (exit 1); exit 1; }; }
 11.1466 -fi
 11.1467 -
 11.1468 -ac_ext=c
 11.1469 -ac_cpp='$CPP $CPPFLAGS'
 11.1470 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.1471 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.1472 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.1473 -
 11.1474 -
 11.1475 -
 11.1476 -
 11.1477 -
 11.1478 -
 11.1479 -
 11.1480 -
 11.1481 -
 11.1482 -
 11.1483 -
 11.1484 -
 11.1485 -
 11.1486 -
 11.1487 -
 11.1488 -
 11.1489 -
 11.1490 -
 11.1491 -
 11.1492 -
 11.1493 -
 11.1494 -
 11.1495 -
 11.1496 -ac_aux_dir=
 11.1497 -for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
 11.1498 -  if test -f $ac_dir/install-sh; then
 11.1499 -    ac_aux_dir=$ac_dir
 11.1500 -    ac_install_sh="$ac_aux_dir/install-sh -c"
 11.1501 -    break
 11.1502 -  elif test -f $ac_dir/install.sh; then
 11.1503 -    ac_aux_dir=$ac_dir
 11.1504 -    ac_install_sh="$ac_aux_dir/install.sh -c"
 11.1505 -    break
 11.1506 -  elif test -f $ac_dir/shtool; then
 11.1507 -    ac_aux_dir=$ac_dir
 11.1508 -    ac_install_sh="$ac_aux_dir/shtool install -c"
 11.1509 -    break
 11.1510 -  fi
 11.1511 -done
 11.1512 -if test -z "$ac_aux_dir"; then
 11.1513 -  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
 11.1514 -echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
 11.1515 -   { (exit 1); exit 1; }; }
 11.1516 -fi
 11.1517 -ac_config_guess="$SHELL $ac_aux_dir/config.guess"
 11.1518 -ac_config_sub="$SHELL $ac_aux_dir/config.sub"
 11.1519 -ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
 11.1520 -
 11.1521 -# Make sure we can run config.sub.
 11.1522 -$ac_config_sub sun4 >/dev/null 2>&1 ||
 11.1523 -  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
 11.1524 -echo "$as_me: error: cannot run $ac_config_sub" >&2;}
 11.1525 -   { (exit 1); exit 1; }; }
 11.1526 -
 11.1527 -echo "$as_me:$LINENO: checking build system type" >&5
 11.1528 -echo $ECHO_N "checking build system type... $ECHO_C" >&6
 11.1529 -if test "${ac_cv_build+set}" = set; then
 11.1530 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1531 -else
 11.1532 -  ac_cv_build_alias=$build_alias
 11.1533 -test -z "$ac_cv_build_alias" &&
 11.1534 -  ac_cv_build_alias=`$ac_config_guess`
 11.1535 -test -z "$ac_cv_build_alias" &&
 11.1536 -  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
 11.1537 -echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
 11.1538 -   { (exit 1); exit 1; }; }
 11.1539 -ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
 11.1540 -  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
 11.1541 -echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
 11.1542 -   { (exit 1); exit 1; }; }
 11.1543 -
 11.1544 -fi
 11.1545 -echo "$as_me:$LINENO: result: $ac_cv_build" >&5
 11.1546 -echo "${ECHO_T}$ac_cv_build" >&6
 11.1547 -build=$ac_cv_build
 11.1548 -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 11.1549 -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 11.1550 -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 11.1551 -
 11.1552 -
 11.1553 -echo "$as_me:$LINENO: checking host system type" >&5
 11.1554 -echo $ECHO_N "checking host system type... $ECHO_C" >&6
 11.1555 -if test "${ac_cv_host+set}" = set; then
 11.1556 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1557 -else
 11.1558 -  ac_cv_host_alias=$host_alias
 11.1559 -test -z "$ac_cv_host_alias" &&
 11.1560 -  ac_cv_host_alias=$ac_cv_build_alias
 11.1561 -ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
 11.1562 -  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
 11.1563 -echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
 11.1564 -   { (exit 1); exit 1; }; }
 11.1565 -
 11.1566 -fi
 11.1567 -echo "$as_me:$LINENO: result: $ac_cv_host" >&5
 11.1568 -echo "${ECHO_T}$ac_cv_host" >&6
 11.1569 -host=$ac_cv_host
 11.1570 -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 11.1571 -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 11.1572 -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 11.1573 -
 11.1574 -
 11.1575 -echo "$as_me:$LINENO: checking target system type" >&5
 11.1576 -echo $ECHO_N "checking target system type... $ECHO_C" >&6
 11.1577 -if test "${ac_cv_target+set}" = set; then
 11.1578 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1579 -else
 11.1580 -  ac_cv_target_alias=$target_alias
 11.1581 -test "x$ac_cv_target_alias" = "x" &&
 11.1582 -  ac_cv_target_alias=$ac_cv_host_alias
 11.1583 -ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
 11.1584 -  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
 11.1585 -echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
 11.1586 -   { (exit 1); exit 1; }; }
 11.1587 -
 11.1588 -fi
 11.1589 -echo "$as_me:$LINENO: result: $ac_cv_target" >&5
 11.1590 -echo "${ECHO_T}$ac_cv_target" >&6
 11.1591 -target=$ac_cv_target
 11.1592 -target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 11.1593 -target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 11.1594 -target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 11.1595 -
 11.1596 -
 11.1597 -# The aliases save the names the user supplied, while $host etc.
 11.1598 -# will get canonicalized.
 11.1599 -test -n "$target_alias" &&
 11.1600 -  test "$program_prefix$program_suffix$program_transform_name" = \
 11.1601 -    NONENONEs,x,x, &&
 11.1602 -  program_prefix=${target_alias}-
 11.1603 -ac_ext=c
 11.1604 -ac_cpp='$CPP $CPPFLAGS'
 11.1605 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.1606 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.1607 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.1608 -if test -n "$ac_tool_prefix"; then
 11.1609 -  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 11.1610 -set dummy ${ac_tool_prefix}gcc; ac_word=$2
 11.1611 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1612 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1613 -if test "${ac_cv_prog_CC+set}" = set; then
 11.1614 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1615 -else
 11.1616 -  if test -n "$CC"; then
 11.1617 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.1618 -else
 11.1619 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1620 -for as_dir in $PATH
 11.1621 -do
 11.1622 -  IFS=$as_save_IFS
 11.1623 -  test -z "$as_dir" && as_dir=.
 11.1624 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1625 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1626 -    ac_cv_prog_CC="${ac_tool_prefix}gcc"
 11.1627 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1628 -    break 2
 11.1629 -  fi
 11.1630 -done
 11.1631 -done
 11.1632 -
 11.1633 -fi
 11.1634 -fi
 11.1635 -CC=$ac_cv_prog_CC
 11.1636 -if test -n "$CC"; then
 11.1637 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.1638 -echo "${ECHO_T}$CC" >&6
 11.1639 -else
 11.1640 -  echo "$as_me:$LINENO: result: no" >&5
 11.1641 -echo "${ECHO_T}no" >&6
 11.1642 -fi
 11.1643 -
 11.1644 -fi
 11.1645 -if test -z "$ac_cv_prog_CC"; then
 11.1646 -  ac_ct_CC=$CC
 11.1647 -  # Extract the first word of "gcc", so it can be a program name with args.
 11.1648 -set dummy gcc; ac_word=$2
 11.1649 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1650 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1651 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 11.1652 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1653 -else
 11.1654 -  if test -n "$ac_ct_CC"; then
 11.1655 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 11.1656 -else
 11.1657 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1658 -for as_dir in $PATH
 11.1659 -do
 11.1660 -  IFS=$as_save_IFS
 11.1661 -  test -z "$as_dir" && as_dir=.
 11.1662 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1663 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1664 -    ac_cv_prog_ac_ct_CC="gcc"
 11.1665 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1666 -    break 2
 11.1667 -  fi
 11.1668 -done
 11.1669 -done
 11.1670 -
 11.1671 -fi
 11.1672 -fi
 11.1673 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 11.1674 -if test -n "$ac_ct_CC"; then
 11.1675 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 11.1676 -echo "${ECHO_T}$ac_ct_CC" >&6
 11.1677 -else
 11.1678 -  echo "$as_me:$LINENO: result: no" >&5
 11.1679 -echo "${ECHO_T}no" >&6
 11.1680 -fi
 11.1681 -
 11.1682 -  CC=$ac_ct_CC
 11.1683 -else
 11.1684 -  CC="$ac_cv_prog_CC"
 11.1685 -fi
 11.1686 -
 11.1687 -if test -z "$CC"; then
 11.1688 -  if test -n "$ac_tool_prefix"; then
 11.1689 -  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 11.1690 -set dummy ${ac_tool_prefix}cc; ac_word=$2
 11.1691 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1692 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1693 -if test "${ac_cv_prog_CC+set}" = set; then
 11.1694 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1695 -else
 11.1696 -  if test -n "$CC"; then
 11.1697 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.1698 -else
 11.1699 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1700 -for as_dir in $PATH
 11.1701 -do
 11.1702 -  IFS=$as_save_IFS
 11.1703 -  test -z "$as_dir" && as_dir=.
 11.1704 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1705 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1706 -    ac_cv_prog_CC="${ac_tool_prefix}cc"
 11.1707 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1708 -    break 2
 11.1709 -  fi
 11.1710 -done
 11.1711 -done
 11.1712 -
 11.1713 -fi
 11.1714 -fi
 11.1715 -CC=$ac_cv_prog_CC
 11.1716 -if test -n "$CC"; then
 11.1717 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.1718 -echo "${ECHO_T}$CC" >&6
 11.1719 -else
 11.1720 -  echo "$as_me:$LINENO: result: no" >&5
 11.1721 -echo "${ECHO_T}no" >&6
 11.1722 -fi
 11.1723 -
 11.1724 -fi
 11.1725 -if test -z "$ac_cv_prog_CC"; then
 11.1726 -  ac_ct_CC=$CC
 11.1727 -  # Extract the first word of "cc", so it can be a program name with args.
 11.1728 -set dummy cc; ac_word=$2
 11.1729 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1730 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1731 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 11.1732 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1733 -else
 11.1734 -  if test -n "$ac_ct_CC"; then
 11.1735 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 11.1736 -else
 11.1737 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1738 -for as_dir in $PATH
 11.1739 -do
 11.1740 -  IFS=$as_save_IFS
 11.1741 -  test -z "$as_dir" && as_dir=.
 11.1742 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1743 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1744 -    ac_cv_prog_ac_ct_CC="cc"
 11.1745 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1746 -    break 2
 11.1747 -  fi
 11.1748 -done
 11.1749 -done
 11.1750 -
 11.1751 -fi
 11.1752 -fi
 11.1753 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 11.1754 -if test -n "$ac_ct_CC"; then
 11.1755 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 11.1756 -echo "${ECHO_T}$ac_ct_CC" >&6
 11.1757 -else
 11.1758 -  echo "$as_me:$LINENO: result: no" >&5
 11.1759 -echo "${ECHO_T}no" >&6
 11.1760 -fi
 11.1761 -
 11.1762 -  CC=$ac_ct_CC
 11.1763 -else
 11.1764 -  CC="$ac_cv_prog_CC"
 11.1765 -fi
 11.1766 -
 11.1767 -fi
 11.1768 -if test -z "$CC"; then
 11.1769 -  # Extract the first word of "cc", so it can be a program name with args.
 11.1770 -set dummy cc; ac_word=$2
 11.1771 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1772 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1773 -if test "${ac_cv_prog_CC+set}" = set; then
 11.1774 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1775 -else
 11.1776 -  if test -n "$CC"; then
 11.1777 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.1778 -else
 11.1779 -  ac_prog_rejected=no
 11.1780 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1781 -for as_dir in $PATH
 11.1782 -do
 11.1783 -  IFS=$as_save_IFS
 11.1784 -  test -z "$as_dir" && as_dir=.
 11.1785 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1786 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1787 -    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 11.1788 -       ac_prog_rejected=yes
 11.1789 -       continue
 11.1790 -     fi
 11.1791 -    ac_cv_prog_CC="cc"
 11.1792 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1793 -    break 2
 11.1794 -  fi
 11.1795 -done
 11.1796 -done
 11.1797 -
 11.1798 -if test $ac_prog_rejected = yes; then
 11.1799 -  # We found a bogon in the path, so make sure we never use it.
 11.1800 -  set dummy $ac_cv_prog_CC
 11.1801 -  shift
 11.1802 -  if test $# != 0; then
 11.1803 -    # We chose a different compiler from the bogus one.
 11.1804 -    # However, it has the same basename, so the bogon will be chosen
 11.1805 -    # first if we set CC to just the basename; use the full file name.
 11.1806 -    shift
 11.1807 -    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
 11.1808 -  fi
 11.1809 -fi
 11.1810 -fi
 11.1811 -fi
 11.1812 -CC=$ac_cv_prog_CC
 11.1813 -if test -n "$CC"; then
 11.1814 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.1815 -echo "${ECHO_T}$CC" >&6
 11.1816 -else
 11.1817 -  echo "$as_me:$LINENO: result: no" >&5
 11.1818 -echo "${ECHO_T}no" >&6
 11.1819 -fi
 11.1820 -
 11.1821 -fi
 11.1822 -if test -z "$CC"; then
 11.1823 -  if test -n "$ac_tool_prefix"; then
 11.1824 -  for ac_prog in cl
 11.1825 -  do
 11.1826 -    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 11.1827 -set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 11.1828 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1829 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1830 -if test "${ac_cv_prog_CC+set}" = set; then
 11.1831 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1832 -else
 11.1833 -  if test -n "$CC"; then
 11.1834 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.1835 -else
 11.1836 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1837 -for as_dir in $PATH
 11.1838 -do
 11.1839 -  IFS=$as_save_IFS
 11.1840 -  test -z "$as_dir" && as_dir=.
 11.1841 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1842 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1843 -    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 11.1844 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1845 -    break 2
 11.1846 -  fi
 11.1847 -done
 11.1848 -done
 11.1849 -
 11.1850 -fi
 11.1851 -fi
 11.1852 -CC=$ac_cv_prog_CC
 11.1853 -if test -n "$CC"; then
 11.1854 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.1855 -echo "${ECHO_T}$CC" >&6
 11.1856 -else
 11.1857 -  echo "$as_me:$LINENO: result: no" >&5
 11.1858 -echo "${ECHO_T}no" >&6
 11.1859 -fi
 11.1860 -
 11.1861 -    test -n "$CC" && break
 11.1862 -  done
 11.1863 -fi
 11.1864 -if test -z "$CC"; then
 11.1865 -  ac_ct_CC=$CC
 11.1866 -  for ac_prog in cl
 11.1867 -do
 11.1868 -  # Extract the first word of "$ac_prog", so it can be a program name with args.
 11.1869 -set dummy $ac_prog; ac_word=$2
 11.1870 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.1871 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.1872 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 11.1873 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.1874 -else
 11.1875 -  if test -n "$ac_ct_CC"; then
 11.1876 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 11.1877 -else
 11.1878 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.1879 -for as_dir in $PATH
 11.1880 -do
 11.1881 -  IFS=$as_save_IFS
 11.1882 -  test -z "$as_dir" && as_dir=.
 11.1883 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.1884 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.1885 -    ac_cv_prog_ac_ct_CC="$ac_prog"
 11.1886 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.1887 -    break 2
 11.1888 -  fi
 11.1889 -done
 11.1890 -done
 11.1891 -
 11.1892 -fi
 11.1893 -fi
 11.1894 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 11.1895 -if test -n "$ac_ct_CC"; then
 11.1896 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 11.1897 -echo "${ECHO_T}$ac_ct_CC" >&6
 11.1898 -else
 11.1899 -  echo "$as_me:$LINENO: result: no" >&5
 11.1900 -echo "${ECHO_T}no" >&6
 11.1901 -fi
 11.1902 -
 11.1903 -  test -n "$ac_ct_CC" && break
 11.1904 -done
 11.1905 -
 11.1906 -  CC=$ac_ct_CC
 11.1907 -fi
 11.1908 -
 11.1909 -fi
 11.1910 -
 11.1911 -
 11.1912 -test -z "$CC" && { { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.1913 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.1914 -{ { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
 11.1915 -See \`config.log' for more details." >&5
 11.1916 -echo "$as_me: error: no acceptable C compiler found in \$PATH
 11.1917 -See \`config.log' for more details." >&2;}
 11.1918 -   { (exit 1); exit 1; }; }; }
 11.1919 -
 11.1920 -# Provide some information about the compiler.
 11.1921 -echo "$as_me:$LINENO:" \
 11.1922 -     "checking for C compiler version" >&5
 11.1923 -ac_compiler=`set X $ac_compile; echo $2`
 11.1924 -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
 11.1925 -  (eval $ac_compiler --version </dev/null >&5) 2>&5
 11.1926 -  ac_status=$?
 11.1927 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.1928 -  (exit $ac_status); }
 11.1929 -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
 11.1930 -  (eval $ac_compiler -v </dev/null >&5) 2>&5
 11.1931 -  ac_status=$?
 11.1932 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.1933 -  (exit $ac_status); }
 11.1934 -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
 11.1935 -  (eval $ac_compiler -V </dev/null >&5) 2>&5
 11.1936 -  ac_status=$?
 11.1937 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.1938 -  (exit $ac_status); }
 11.1939 -
 11.1940 -cat >conftest.$ac_ext <<_ACEOF
 11.1941 -/* confdefs.h.  */
 11.1942 -_ACEOF
 11.1943 -cat confdefs.h >>conftest.$ac_ext
 11.1944 -cat >>conftest.$ac_ext <<_ACEOF
 11.1945 -/* end confdefs.h.  */
 11.1946 -
 11.1947 -int
 11.1948 -main ()
 11.1949 -{
 11.1950 -
 11.1951 -  ;
 11.1952 -  return 0;
 11.1953 -}
 11.1954 -_ACEOF
 11.1955 -ac_clean_files_save=$ac_clean_files
 11.1956 -ac_clean_files="$ac_clean_files a.out a.exe b.out"
 11.1957 -# Try to create an executable without -o first, disregard a.out.
 11.1958 -# It will help us diagnose broken compilers, and finding out an intuition
 11.1959 -# of exeext.
 11.1960 -echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
 11.1961 -echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
 11.1962 -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 11.1963 -if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
 11.1964 -  (eval $ac_link_default) 2>&5
 11.1965 -  ac_status=$?
 11.1966 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.1967 -  (exit $ac_status); }; then
 11.1968 -  # Find the output, starting from the most likely.  This scheme is
 11.1969 -# not robust to junk in `.', hence go to wildcards (a.*) only as a last
 11.1970 -# resort.
 11.1971 -
 11.1972 -# Be careful to initialize this variable, since it used to be cached.
 11.1973 -# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
 11.1974 -ac_cv_exeext=
 11.1975 -# b.out is created by i960 compilers.
 11.1976 -for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
 11.1977 -do
 11.1978 -  test -f "$ac_file" || continue
 11.1979 -  case $ac_file in
 11.1980 -    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
 11.1981 -	;;
 11.1982 -    conftest.$ac_ext )
 11.1983 -	# This is the source file.
 11.1984 -	;;
 11.1985 -    [ab].out )
 11.1986 -	# We found the default executable, but exeext='' is most
 11.1987 -	# certainly right.
 11.1988 -	break;;
 11.1989 -    *.* )
 11.1990 -	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 11.1991 -	# FIXME: I believe we export ac_cv_exeext for Libtool,
 11.1992 -	# but it would be cool to find out if it's true.  Does anybody
 11.1993 -	# maintain Libtool? --akim.
 11.1994 -	export ac_cv_exeext
 11.1995 -	break;;
 11.1996 -    * )
 11.1997 -	break;;
 11.1998 -  esac
 11.1999 -done
 11.2000 -else
 11.2001 -  echo "$as_me: failed program was:" >&5
 11.2002 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2003 -
 11.2004 -{ { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.2005 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.2006 -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
 11.2007 -See \`config.log' for more details." >&5
 11.2008 -echo "$as_me: error: C compiler cannot create executables
 11.2009 -See \`config.log' for more details." >&2;}
 11.2010 -   { (exit 77); exit 77; }; }; }
 11.2011 -fi
 11.2012 -
 11.2013 -ac_exeext=$ac_cv_exeext
 11.2014 -echo "$as_me:$LINENO: result: $ac_file" >&5
 11.2015 -echo "${ECHO_T}$ac_file" >&6
 11.2016 -
 11.2017 -# Check the compiler produces executables we can run.  If not, either
 11.2018 -# the compiler is broken, or we cross compile.
 11.2019 -echo "$as_me:$LINENO: checking whether the C compiler works" >&5
 11.2020 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
 11.2021 -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
 11.2022 -# If not cross compiling, check that we can run a simple program.
 11.2023 -if test "$cross_compiling" != yes; then
 11.2024 -  if { ac_try='./$ac_file'
 11.2025 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2026 -  (eval $ac_try) 2>&5
 11.2027 -  ac_status=$?
 11.2028 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2029 -  (exit $ac_status); }; }; then
 11.2030 -    cross_compiling=no
 11.2031 -  else
 11.2032 -    if test "$cross_compiling" = maybe; then
 11.2033 -	cross_compiling=yes
 11.2034 -    else
 11.2035 -	{ { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.2036 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.2037 -{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
 11.2038 -If you meant to cross compile, use \`--host'.
 11.2039 -See \`config.log' for more details." >&5
 11.2040 -echo "$as_me: error: cannot run C compiled programs.
 11.2041 -If you meant to cross compile, use \`--host'.
 11.2042 -See \`config.log' for more details." >&2;}
 11.2043 -   { (exit 1); exit 1; }; }; }
 11.2044 -    fi
 11.2045 -  fi
 11.2046 -fi
 11.2047 -echo "$as_me:$LINENO: result: yes" >&5
 11.2048 -echo "${ECHO_T}yes" >&6
 11.2049 -
 11.2050 -rm -f a.out a.exe conftest$ac_cv_exeext b.out
 11.2051 -ac_clean_files=$ac_clean_files_save
 11.2052 -# Check the compiler produces executables we can run.  If not, either
 11.2053 -# the compiler is broken, or we cross compile.
 11.2054 -echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
 11.2055 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
 11.2056 -echo "$as_me:$LINENO: result: $cross_compiling" >&5
 11.2057 -echo "${ECHO_T}$cross_compiling" >&6
 11.2058 -
 11.2059 -echo "$as_me:$LINENO: checking for suffix of executables" >&5
 11.2060 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
 11.2061 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 11.2062 -  (eval $ac_link) 2>&5
 11.2063 -  ac_status=$?
 11.2064 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2065 -  (exit $ac_status); }; then
 11.2066 -  # If both `conftest.exe' and `conftest' are `present' (well, observable)
 11.2067 -# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
 11.2068 -# work properly (i.e., refer to `conftest.exe'), while it won't with
 11.2069 -# `rm'.
 11.2070 -for ac_file in conftest.exe conftest conftest.*; do
 11.2071 -  test -f "$ac_file" || continue
 11.2072 -  case $ac_file in
 11.2073 -    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
 11.2074 -    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 11.2075 -	  export ac_cv_exeext
 11.2076 -	  break;;
 11.2077 -    * ) break;;
 11.2078 -  esac
 11.2079 -done
 11.2080 -else
 11.2081 -  { { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.2082 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.2083 -{ { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
 11.2084 -See \`config.log' for more details." >&5
 11.2085 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
 11.2086 -See \`config.log' for more details." >&2;}
 11.2087 -   { (exit 1); exit 1; }; }; }
 11.2088 -fi
 11.2089 -
 11.2090 -rm -f conftest$ac_cv_exeext
 11.2091 -echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
 11.2092 -echo "${ECHO_T}$ac_cv_exeext" >&6
 11.2093 -
 11.2094 -rm -f conftest.$ac_ext
 11.2095 -EXEEXT=$ac_cv_exeext
 11.2096 -ac_exeext=$EXEEXT
 11.2097 -echo "$as_me:$LINENO: checking for suffix of object files" >&5
 11.2098 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
 11.2099 -if test "${ac_cv_objext+set}" = set; then
 11.2100 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2101 -else
 11.2102 -  cat >conftest.$ac_ext <<_ACEOF
 11.2103 -/* confdefs.h.  */
 11.2104 -_ACEOF
 11.2105 -cat confdefs.h >>conftest.$ac_ext
 11.2106 -cat >>conftest.$ac_ext <<_ACEOF
 11.2107 -/* end confdefs.h.  */
 11.2108 -
 11.2109 -int
 11.2110 -main ()
 11.2111 -{
 11.2112 -
 11.2113 -  ;
 11.2114 -  return 0;
 11.2115 -}
 11.2116 -_ACEOF
 11.2117 -rm -f conftest.o conftest.obj
 11.2118 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2119 -  (eval $ac_compile) 2>&5
 11.2120 -  ac_status=$?
 11.2121 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2122 -  (exit $ac_status); }; then
 11.2123 -  for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
 11.2124 -  case $ac_file in
 11.2125 -    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
 11.2126 -    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
 11.2127 -       break;;
 11.2128 -  esac
 11.2129 -done
 11.2130 -else
 11.2131 -  echo "$as_me: failed program was:" >&5
 11.2132 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2133 -
 11.2134 -{ { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.2135 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.2136 -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
 11.2137 -See \`config.log' for more details." >&5
 11.2138 -echo "$as_me: error: cannot compute suffix of object files: cannot compile
 11.2139 -See \`config.log' for more details." >&2;}
 11.2140 -   { (exit 1); exit 1; }; }; }
 11.2141 -fi
 11.2142 -
 11.2143 -rm -f conftest.$ac_cv_objext conftest.$ac_ext
 11.2144 -fi
 11.2145 -echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
 11.2146 -echo "${ECHO_T}$ac_cv_objext" >&6
 11.2147 -OBJEXT=$ac_cv_objext
 11.2148 -ac_objext=$OBJEXT
 11.2149 -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 11.2150 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
 11.2151 -if test "${ac_cv_c_compiler_gnu+set}" = set; then
 11.2152 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2153 -else
 11.2154 -  cat >conftest.$ac_ext <<_ACEOF
 11.2155 -/* confdefs.h.  */
 11.2156 -_ACEOF
 11.2157 -cat confdefs.h >>conftest.$ac_ext
 11.2158 -cat >>conftest.$ac_ext <<_ACEOF
 11.2159 -/* end confdefs.h.  */
 11.2160 -
 11.2161 -int
 11.2162 -main ()
 11.2163 -{
 11.2164 -#ifndef __GNUC__
 11.2165 -       choke me
 11.2166 -#endif
 11.2167 -
 11.2168 -  ;
 11.2169 -  return 0;
 11.2170 -}
 11.2171 -_ACEOF
 11.2172 -rm -f conftest.$ac_objext
 11.2173 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2174 -  (eval $ac_compile) 2>conftest.er1
 11.2175 -  ac_status=$?
 11.2176 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2177 -  rm -f conftest.er1
 11.2178 -  cat conftest.err >&5
 11.2179 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2180 -  (exit $ac_status); } &&
 11.2181 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2182 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2183 -  (eval $ac_try) 2>&5
 11.2184 -  ac_status=$?
 11.2185 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2186 -  (exit $ac_status); }; } &&
 11.2187 -	 { ac_try='test -s conftest.$ac_objext'
 11.2188 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2189 -  (eval $ac_try) 2>&5
 11.2190 -  ac_status=$?
 11.2191 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2192 -  (exit $ac_status); }; }; then
 11.2193 -  ac_compiler_gnu=yes
 11.2194 -else
 11.2195 -  echo "$as_me: failed program was:" >&5
 11.2196 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2197 -
 11.2198 -ac_compiler_gnu=no
 11.2199 -fi
 11.2200 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.2201 -ac_cv_c_compiler_gnu=$ac_compiler_gnu
 11.2202 -
 11.2203 -fi
 11.2204 -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 11.2205 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
 11.2206 -GCC=`test $ac_compiler_gnu = yes && echo yes`
 11.2207 -ac_test_CFLAGS=${CFLAGS+set}
 11.2208 -ac_save_CFLAGS=$CFLAGS
 11.2209 -CFLAGS="-g"
 11.2210 -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 11.2211 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
 11.2212 -if test "${ac_cv_prog_cc_g+set}" = set; then
 11.2213 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2214 -else
 11.2215 -  cat >conftest.$ac_ext <<_ACEOF
 11.2216 -/* confdefs.h.  */
 11.2217 -_ACEOF
 11.2218 -cat confdefs.h >>conftest.$ac_ext
 11.2219 -cat >>conftest.$ac_ext <<_ACEOF
 11.2220 -/* end confdefs.h.  */
 11.2221 -
 11.2222 -int
 11.2223 -main ()
 11.2224 -{
 11.2225 -
 11.2226 -  ;
 11.2227 -  return 0;
 11.2228 -}
 11.2229 -_ACEOF
 11.2230 -rm -f conftest.$ac_objext
 11.2231 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2232 -  (eval $ac_compile) 2>conftest.er1
 11.2233 -  ac_status=$?
 11.2234 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2235 -  rm -f conftest.er1
 11.2236 -  cat conftest.err >&5
 11.2237 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2238 -  (exit $ac_status); } &&
 11.2239 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2240 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2241 -  (eval $ac_try) 2>&5
 11.2242 -  ac_status=$?
 11.2243 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2244 -  (exit $ac_status); }; } &&
 11.2245 -	 { ac_try='test -s conftest.$ac_objext'
 11.2246 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2247 -  (eval $ac_try) 2>&5
 11.2248 -  ac_status=$?
 11.2249 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2250 -  (exit $ac_status); }; }; then
 11.2251 -  ac_cv_prog_cc_g=yes
 11.2252 -else
 11.2253 -  echo "$as_me: failed program was:" >&5
 11.2254 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2255 -
 11.2256 -ac_cv_prog_cc_g=no
 11.2257 -fi
 11.2258 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.2259 -fi
 11.2260 -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 11.2261 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 11.2262 -if test "$ac_test_CFLAGS" = set; then
 11.2263 -  CFLAGS=$ac_save_CFLAGS
 11.2264 -elif test $ac_cv_prog_cc_g = yes; then
 11.2265 -  if test "$GCC" = yes; then
 11.2266 -    CFLAGS="-g -O2"
 11.2267 -  else
 11.2268 -    CFLAGS="-g"
 11.2269 -  fi
 11.2270 -else
 11.2271 -  if test "$GCC" = yes; then
 11.2272 -    CFLAGS="-O2"
 11.2273 -  else
 11.2274 -    CFLAGS=
 11.2275 -  fi
 11.2276 -fi
 11.2277 -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
 11.2278 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
 11.2279 -if test "${ac_cv_prog_cc_stdc+set}" = set; then
 11.2280 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2281 -else
 11.2282 -  ac_cv_prog_cc_stdc=no
 11.2283 -ac_save_CC=$CC
 11.2284 -cat >conftest.$ac_ext <<_ACEOF
 11.2285 -/* confdefs.h.  */
 11.2286 -_ACEOF
 11.2287 -cat confdefs.h >>conftest.$ac_ext
 11.2288 -cat >>conftest.$ac_ext <<_ACEOF
 11.2289 -/* end confdefs.h.  */
 11.2290 -#include <stdarg.h>
 11.2291 -#include <stdio.h>
 11.2292 -#include <sys/types.h>
 11.2293 -#include <sys/stat.h>
 11.2294 -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 11.2295 -struct buf { int x; };
 11.2296 -FILE * (*rcsopen) (struct buf *, struct stat *, int);
 11.2297 -static char *e (p, i)
 11.2298 -     char **p;
 11.2299 -     int i;
 11.2300 -{
 11.2301 -  return p[i];
 11.2302 -}
 11.2303 -static char *f (char * (*g) (char **, int), char **p, ...)
 11.2304 -{
 11.2305 -  char *s;
 11.2306 -  va_list v;
 11.2307 -  va_start (v,p);
 11.2308 -  s = g (p, va_arg (v,int));
 11.2309 -  va_end (v);
 11.2310 -  return s;
 11.2311 -}
 11.2312 -
 11.2313 -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 11.2314 -   function prototypes and stuff, but not '\xHH' hex character constants.
 11.2315 -   These don't provoke an error unfortunately, instead are silently treated
 11.2316 -   as 'x'.  The following induces an error, until -std1 is added to get
 11.2317 -   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 11.2318 -   array size at least.  It's necessary to write '\x00'==0 to get something
 11.2319 -   that's true only with -std1.  */
 11.2320 -int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 11.2321 -
 11.2322 -int test (int i, double x);
 11.2323 -struct s1 {int (*f) (int a);};
 11.2324 -struct s2 {int (*f) (double a);};
 11.2325 -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 11.2326 -int argc;
 11.2327 -char **argv;
 11.2328 -int
 11.2329 -main ()
 11.2330 -{
 11.2331 -return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 11.2332 -  ;
 11.2333 -  return 0;
 11.2334 -}
 11.2335 -_ACEOF
 11.2336 -# Don't try gcc -ansi; that turns off useful extensions and
 11.2337 -# breaks some systems' header files.
 11.2338 -# AIX			-qlanglvl=ansi
 11.2339 -# Ultrix and OSF/1	-std1
 11.2340 -# HP-UX 10.20 and later	-Ae
 11.2341 -# HP-UX older versions	-Aa -D_HPUX_SOURCE
 11.2342 -# SVR4			-Xc -D__EXTENSIONS__
 11.2343 -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 11.2344 -do
 11.2345 -  CC="$ac_save_CC $ac_arg"
 11.2346 -  rm -f conftest.$ac_objext
 11.2347 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2348 -  (eval $ac_compile) 2>conftest.er1
 11.2349 -  ac_status=$?
 11.2350 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2351 -  rm -f conftest.er1
 11.2352 -  cat conftest.err >&5
 11.2353 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2354 -  (exit $ac_status); } &&
 11.2355 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2356 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2357 -  (eval $ac_try) 2>&5
 11.2358 -  ac_status=$?
 11.2359 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2360 -  (exit $ac_status); }; } &&
 11.2361 -	 { ac_try='test -s conftest.$ac_objext'
 11.2362 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2363 -  (eval $ac_try) 2>&5
 11.2364 -  ac_status=$?
 11.2365 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2366 -  (exit $ac_status); }; }; then
 11.2367 -  ac_cv_prog_cc_stdc=$ac_arg
 11.2368 -break
 11.2369 -else
 11.2370 -  echo "$as_me: failed program was:" >&5
 11.2371 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2372 -
 11.2373 -fi
 11.2374 -rm -f conftest.err conftest.$ac_objext
 11.2375 -done
 11.2376 -rm -f conftest.$ac_ext conftest.$ac_objext
 11.2377 -CC=$ac_save_CC
 11.2378 -
 11.2379 -fi
 11.2380 -
 11.2381 -case "x$ac_cv_prog_cc_stdc" in
 11.2382 -  x|xno)
 11.2383 -    echo "$as_me:$LINENO: result: none needed" >&5
 11.2384 -echo "${ECHO_T}none needed" >&6 ;;
 11.2385 -  *)
 11.2386 -    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
 11.2387 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
 11.2388 -    CC="$CC $ac_cv_prog_cc_stdc" ;;
 11.2389 -esac
 11.2390 -
 11.2391 -# Some people use a C++ compiler to compile C.  Since we use `exit',
 11.2392 -# in C++ we need to declare it.  In case someone uses the same compiler
 11.2393 -# for both compiling C and C++ we need to have the C++ compiler decide
 11.2394 -# the declaration of exit, since it's the most demanding environment.
 11.2395 -cat >conftest.$ac_ext <<_ACEOF
 11.2396 -#ifndef __cplusplus
 11.2397 -  choke me
 11.2398 -#endif
 11.2399 -_ACEOF
 11.2400 -rm -f conftest.$ac_objext
 11.2401 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2402 -  (eval $ac_compile) 2>conftest.er1
 11.2403 -  ac_status=$?
 11.2404 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2405 -  rm -f conftest.er1
 11.2406 -  cat conftest.err >&5
 11.2407 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2408 -  (exit $ac_status); } &&
 11.2409 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2410 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2411 -  (eval $ac_try) 2>&5
 11.2412 -  ac_status=$?
 11.2413 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2414 -  (exit $ac_status); }; } &&
 11.2415 -	 { ac_try='test -s conftest.$ac_objext'
 11.2416 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2417 -  (eval $ac_try) 2>&5
 11.2418 -  ac_status=$?
 11.2419 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2420 -  (exit $ac_status); }; }; then
 11.2421 -  for ac_declaration in \
 11.2422 -   '' \
 11.2423 -   'extern "C" void std::exit (int) throw (); using std::exit;' \
 11.2424 -   'extern "C" void std::exit (int); using std::exit;' \
 11.2425 -   'extern "C" void exit (int) throw ();' \
 11.2426 -   'extern "C" void exit (int);' \
 11.2427 -   'void exit (int);'
 11.2428 -do
 11.2429 -  cat >conftest.$ac_ext <<_ACEOF
 11.2430 -/* confdefs.h.  */
 11.2431 -_ACEOF
 11.2432 -cat confdefs.h >>conftest.$ac_ext
 11.2433 -cat >>conftest.$ac_ext <<_ACEOF
 11.2434 -/* end confdefs.h.  */
 11.2435 -$ac_declaration
 11.2436 -#include <stdlib.h>
 11.2437 -int
 11.2438 -main ()
 11.2439 -{
 11.2440 -exit (42);
 11.2441 -  ;
 11.2442 -  return 0;
 11.2443 -}
 11.2444 -_ACEOF
 11.2445 -rm -f conftest.$ac_objext
 11.2446 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2447 -  (eval $ac_compile) 2>conftest.er1
 11.2448 -  ac_status=$?
 11.2449 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2450 -  rm -f conftest.er1
 11.2451 -  cat conftest.err >&5
 11.2452 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2453 -  (exit $ac_status); } &&
 11.2454 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2455 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2456 -  (eval $ac_try) 2>&5
 11.2457 -  ac_status=$?
 11.2458 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2459 -  (exit $ac_status); }; } &&
 11.2460 -	 { ac_try='test -s conftest.$ac_objext'
 11.2461 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2462 -  (eval $ac_try) 2>&5
 11.2463 -  ac_status=$?
 11.2464 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2465 -  (exit $ac_status); }; }; then
 11.2466 -  :
 11.2467 -else
 11.2468 -  echo "$as_me: failed program was:" >&5
 11.2469 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2470 -
 11.2471 -continue
 11.2472 -fi
 11.2473 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.2474 -  cat >conftest.$ac_ext <<_ACEOF
 11.2475 -/* confdefs.h.  */
 11.2476 -_ACEOF
 11.2477 -cat confdefs.h >>conftest.$ac_ext
 11.2478 -cat >>conftest.$ac_ext <<_ACEOF
 11.2479 -/* end confdefs.h.  */
 11.2480 -$ac_declaration
 11.2481 -int
 11.2482 -main ()
 11.2483 -{
 11.2484 -exit (42);
 11.2485 -  ;
 11.2486 -  return 0;
 11.2487 -}
 11.2488 -_ACEOF
 11.2489 -rm -f conftest.$ac_objext
 11.2490 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.2491 -  (eval $ac_compile) 2>conftest.er1
 11.2492 -  ac_status=$?
 11.2493 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2494 -  rm -f conftest.er1
 11.2495 -  cat conftest.err >&5
 11.2496 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2497 -  (exit $ac_status); } &&
 11.2498 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2499 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2500 -  (eval $ac_try) 2>&5
 11.2501 -  ac_status=$?
 11.2502 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2503 -  (exit $ac_status); }; } &&
 11.2504 -	 { ac_try='test -s conftest.$ac_objext'
 11.2505 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2506 -  (eval $ac_try) 2>&5
 11.2507 -  ac_status=$?
 11.2508 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2509 -  (exit $ac_status); }; }; then
 11.2510 -  break
 11.2511 -else
 11.2512 -  echo "$as_me: failed program was:" >&5
 11.2513 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2514 -
 11.2515 -fi
 11.2516 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.2517 -done
 11.2518 -rm -f conftest*
 11.2519 -if test -n "$ac_declaration"; then
 11.2520 -  echo '#ifdef __cplusplus' >>confdefs.h
 11.2521 -  echo $ac_declaration      >>confdefs.h
 11.2522 -  echo '#endif'             >>confdefs.h
 11.2523 -fi
 11.2524 -
 11.2525 -else
 11.2526 -  echo "$as_me: failed program was:" >&5
 11.2527 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2528 -
 11.2529 -fi
 11.2530 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.2531 -ac_ext=c
 11.2532 -ac_cpp='$CPP $CPPFLAGS'
 11.2533 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.2534 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.2535 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.2536 -
 11.2537 -
 11.2538 -echo "$as_me:$LINENO: checking for library containing strerror" >&5
 11.2539 -echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6
 11.2540 -if test "${ac_cv_search_strerror+set}" = set; then
 11.2541 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2542 -else
 11.2543 -  ac_func_search_save_LIBS=$LIBS
 11.2544 -ac_cv_search_strerror=no
 11.2545 -cat >conftest.$ac_ext <<_ACEOF
 11.2546 -/* confdefs.h.  */
 11.2547 -_ACEOF
 11.2548 -cat confdefs.h >>conftest.$ac_ext
 11.2549 -cat >>conftest.$ac_ext <<_ACEOF
 11.2550 -/* end confdefs.h.  */
 11.2551 -
 11.2552 -/* Override any gcc2 internal prototype to avoid an error.  */
 11.2553 -#ifdef __cplusplus
 11.2554 -extern "C"
 11.2555 -#endif
 11.2556 -/* We use char because int might match the return type of a gcc2
 11.2557 -   builtin and then its argument prototype would still apply.  */
 11.2558 -char strerror ();
 11.2559 -int
 11.2560 -main ()
 11.2561 -{
 11.2562 -strerror ();
 11.2563 -  ;
 11.2564 -  return 0;
 11.2565 -}
 11.2566 -_ACEOF
 11.2567 -rm -f conftest.$ac_objext conftest$ac_exeext
 11.2568 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 11.2569 -  (eval $ac_link) 2>conftest.er1
 11.2570 -  ac_status=$?
 11.2571 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2572 -  rm -f conftest.er1
 11.2573 -  cat conftest.err >&5
 11.2574 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2575 -  (exit $ac_status); } &&
 11.2576 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2577 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2578 -  (eval $ac_try) 2>&5
 11.2579 -  ac_status=$?
 11.2580 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2581 -  (exit $ac_status); }; } &&
 11.2582 -	 { ac_try='test -s conftest$ac_exeext'
 11.2583 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2584 -  (eval $ac_try) 2>&5
 11.2585 -  ac_status=$?
 11.2586 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2587 -  (exit $ac_status); }; }; then
 11.2588 -  ac_cv_search_strerror="none required"
 11.2589 -else
 11.2590 -  echo "$as_me: failed program was:" >&5
 11.2591 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2592 -
 11.2593 -fi
 11.2594 -rm -f conftest.err conftest.$ac_objext \
 11.2595 -      conftest$ac_exeext conftest.$ac_ext
 11.2596 -if test "$ac_cv_search_strerror" = no; then
 11.2597 -  for ac_lib in cposix; do
 11.2598 -    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
 11.2599 -    cat >conftest.$ac_ext <<_ACEOF
 11.2600 -/* confdefs.h.  */
 11.2601 -_ACEOF
 11.2602 -cat confdefs.h >>conftest.$ac_ext
 11.2603 -cat >>conftest.$ac_ext <<_ACEOF
 11.2604 -/* end confdefs.h.  */
 11.2605 -
 11.2606 -/* Override any gcc2 internal prototype to avoid an error.  */
 11.2607 -#ifdef __cplusplus
 11.2608 -extern "C"
 11.2609 -#endif
 11.2610 -/* We use char because int might match the return type of a gcc2
 11.2611 -   builtin and then its argument prototype would still apply.  */
 11.2612 -char strerror ();
 11.2613 -int
 11.2614 -main ()
 11.2615 -{
 11.2616 -strerror ();
 11.2617 -  ;
 11.2618 -  return 0;
 11.2619 -}
 11.2620 -_ACEOF
 11.2621 -rm -f conftest.$ac_objext conftest$ac_exeext
 11.2622 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 11.2623 -  (eval $ac_link) 2>conftest.er1
 11.2624 -  ac_status=$?
 11.2625 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.2626 -  rm -f conftest.er1
 11.2627 -  cat conftest.err >&5
 11.2628 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2629 -  (exit $ac_status); } &&
 11.2630 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.2631 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2632 -  (eval $ac_try) 2>&5
 11.2633 -  ac_status=$?
 11.2634 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2635 -  (exit $ac_status); }; } &&
 11.2636 -	 { ac_try='test -s conftest$ac_exeext'
 11.2637 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.2638 -  (eval $ac_try) 2>&5
 11.2639 -  ac_status=$?
 11.2640 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.2641 -  (exit $ac_status); }; }; then
 11.2642 -  ac_cv_search_strerror="-l$ac_lib"
 11.2643 -break
 11.2644 -else
 11.2645 -  echo "$as_me: failed program was:" >&5
 11.2646 -sed 's/^/| /' conftest.$ac_ext >&5
 11.2647 -
 11.2648 -fi
 11.2649 -rm -f conftest.err conftest.$ac_objext \
 11.2650 -      conftest$ac_exeext conftest.$ac_ext
 11.2651 -  done
 11.2652 -fi
 11.2653 -LIBS=$ac_func_search_save_LIBS
 11.2654 -fi
 11.2655 -echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5
 11.2656 -echo "${ECHO_T}$ac_cv_search_strerror" >&6
 11.2657 -if test "$ac_cv_search_strerror" != no; then
 11.2658 -  test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS"
 11.2659 -
 11.2660 -fi
 11.2661 -
 11.2662 -
 11.2663 -BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ 	]*\([^ 	]*\)[ 	]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
 11.2664 -am__api_version="1.9"
 11.2665 -# Find a good install program.  We prefer a C program (faster),
 11.2666 -# so one script is as good as another.  But avoid the broken or
 11.2667 -# incompatible versions:
 11.2668 -# SysV /etc/install, /usr/sbin/install
 11.2669 -# SunOS /usr/etc/install
 11.2670 -# IRIX /sbin/install
 11.2671 -# AIX /bin/install
 11.2672 -# AmigaOS /C/install, which installs bootblocks on floppy discs
 11.2673 -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
 11.2674 -# AFS /usr/afsws/bin/install, which mishandles nonexistent args
 11.2675 -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 11.2676 -# OS/2's system install, which has a completely different semantic
 11.2677 -# ./install, which can be erroneously created by make from ./install.sh.
 11.2678 -# Reject install programs that cannot install multiple files.
 11.2679 -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 11.2680 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
 11.2681 -if test -z "$INSTALL"; then
 11.2682 -if test "${ac_cv_path_install+set}" = set; then
 11.2683 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2684 -else
 11.2685 -  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.2686 -for as_dir in $PATH
 11.2687 -do
 11.2688 -  IFS=$as_save_IFS
 11.2689 -  test -z "$as_dir" && as_dir=.
 11.2690 -  # Account for people who put trailing slashes in PATH elements.
 11.2691 -case $as_dir/ in
 11.2692 -  ./ | .// | /cC/* | \
 11.2693 -  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
 11.2694 -  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
 11.2695 -  /usr/ucb/* ) ;;
 11.2696 -  *)
 11.2697 -    # OSF1 and SCO ODT 3.0 have their own names for install.
 11.2698 -    # Don't use installbsd from OSF since it installs stuff as root
 11.2699 -    # by default.
 11.2700 -    for ac_prog in ginstall scoinst install; do
 11.2701 -      for ac_exec_ext in '' $ac_executable_extensions; do
 11.2702 -	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
 11.2703 -	  if test $ac_prog = install &&
 11.2704 -	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 11.2705 -	    # AIX install.  It has an incompatible calling convention.
 11.2706 -	    :
 11.2707 -	  elif test $ac_prog = install &&
 11.2708 -	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 11.2709 -	    # program-specific install script used by HP pwplus--don't use.
 11.2710 -	    :
 11.2711 -	  else
 11.2712 -	    rm -rf conftest.one conftest.two conftest.dir
 11.2713 -	    echo one > conftest.one
 11.2714 -	    echo two > conftest.two
 11.2715 -	    mkdir conftest.dir
 11.2716 -	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
 11.2717 -	      test -s conftest.one && test -s conftest.two &&
 11.2718 -	      test -s conftest.dir/conftest.one &&
 11.2719 -	      test -s conftest.dir/conftest.two
 11.2720 -	    then
 11.2721 -	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 11.2722 -	      break 3
 11.2723 -	    fi
 11.2724 -	  fi
 11.2725 -	fi
 11.2726 -      done
 11.2727 -    done
 11.2728 -    ;;
 11.2729 -esac
 11.2730 -done
 11.2731 -
 11.2732 -rm -rf conftest.one conftest.two conftest.dir
 11.2733 -
 11.2734 -fi
 11.2735 -  if test "${ac_cv_path_install+set}" = set; then
 11.2736 -    INSTALL=$ac_cv_path_install
 11.2737 -  else
 11.2738 -    # As a last resort, use the slow shell script.  Don't cache a
 11.2739 -    # value for INSTALL within a source directory, because that will
 11.2740 -    # break other packages using the cache if that directory is
 11.2741 -    # removed, or if the value is a relative name.
 11.2742 -    INSTALL=$ac_install_sh
 11.2743 -  fi
 11.2744 -fi
 11.2745 -echo "$as_me:$LINENO: result: $INSTALL" >&5
 11.2746 -echo "${ECHO_T}$INSTALL" >&6
 11.2747 -
 11.2748 -# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 11.2749 -# It thinks the first close brace ends the variable substitution.
 11.2750 -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 11.2751 -
 11.2752 -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 11.2753 -
 11.2754 -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 11.2755 -
 11.2756 -echo "$as_me:$LINENO: checking whether build environment is sane" >&5
 11.2757 -echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
 11.2758 -# Just in case
 11.2759 -sleep 1
 11.2760 -echo timestamp > conftest.file
 11.2761 -# Do `set' in a subshell so we don't clobber the current shell's
 11.2762 -# arguments.  Must try -L first in case configure is actually a
 11.2763 -# symlink; some systems play weird games with the mod time of symlinks
 11.2764 -# (eg FreeBSD returns the mod time of the symlink's containing
 11.2765 -# directory).
 11.2766 -if (
 11.2767 -   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
 11.2768 -   if test "$*" = "X"; then
 11.2769 -      # -L didn't work.
 11.2770 -      set X `ls -t $srcdir/configure conftest.file`
 11.2771 -   fi
 11.2772 -   rm -f conftest.file
 11.2773 -   if test "$*" != "X $srcdir/configure conftest.file" \
 11.2774 -      && test "$*" != "X conftest.file $srcdir/configure"; then
 11.2775 -
 11.2776 -      # If neither matched, then we have a broken ls.  This can happen
 11.2777 -      # if, for instance, CONFIG_SHELL is bash and it inherits a
 11.2778 -      # broken ls alias from the environment.  This has actually
 11.2779 -      # happened.  Such a system could not be considered "sane".
 11.2780 -      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
 11.2781 -alias in your environment" >&5
 11.2782 -echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
 11.2783 -alias in your environment" >&2;}
 11.2784 -   { (exit 1); exit 1; }; }
 11.2785 -   fi
 11.2786 -
 11.2787 -   test "$2" = conftest.file
 11.2788 -   )
 11.2789 -then
 11.2790 -   # Ok.
 11.2791 -   :
 11.2792 -else
 11.2793 -   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
 11.2794 -Check your system clock" >&5
 11.2795 -echo "$as_me: error: newly created file is older than distributed files!
 11.2796 -Check your system clock" >&2;}
 11.2797 -   { (exit 1); exit 1; }; }
 11.2798 -fi
 11.2799 -echo "$as_me:$LINENO: result: yes" >&5
 11.2800 -echo "${ECHO_T}yes" >&6
 11.2801 -test "$program_prefix" != NONE &&
 11.2802 -  program_transform_name="s,^,$program_prefix,;$program_transform_name"
 11.2803 -# Use a double $ so make ignores it.
 11.2804 -test "$program_suffix" != NONE &&
 11.2805 -  program_transform_name="s,\$,$program_suffix,;$program_transform_name"
 11.2806 -# Double any \ or $.  echo might interpret backslashes.
 11.2807 -# By default was `s,x,x', remove it if useless.
 11.2808 -cat <<\_ACEOF >conftest.sed
 11.2809 -s/[\\$]/&&/g;s/;s,x,x,$//
 11.2810 -_ACEOF
 11.2811 -program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
 11.2812 -rm conftest.sed
 11.2813 -
 11.2814 -# expand $ac_aux_dir to an absolute path
 11.2815 -am_aux_dir=`cd $ac_aux_dir && pwd`
 11.2816 -
 11.2817 -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
 11.2818 -# Use eval to expand $SHELL
 11.2819 -if eval "$MISSING --run true"; then
 11.2820 -  am_missing_run="$MISSING --run "
 11.2821 -else
 11.2822 -  am_missing_run=
 11.2823 -  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
 11.2824 -echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 11.2825 -fi
 11.2826 -
 11.2827 -if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
 11.2828 -  # We used to keeping the `.' as first argument, in order to
 11.2829 -  # allow $(mkdir_p) to be used without argument.  As in
 11.2830 -  #   $(mkdir_p) $(somedir)
 11.2831 -  # where $(somedir) is conditionally defined.  However this is wrong
 11.2832 -  # for two reasons:
 11.2833 -  #  1. if the package is installed by a user who cannot write `.'
 11.2834 -  #     make install will fail,
 11.2835 -  #  2. the above comment should most certainly read
 11.2836 -  #     $(mkdir_p) $(DESTDIR)$(somedir)
 11.2837 -  #     so it does not work when $(somedir) is undefined and
 11.2838 -  #     $(DESTDIR) is not.
 11.2839 -  #  To support the latter case, we have to write
 11.2840 -  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
 11.2841 -  #  so the `.' trick is pointless.
 11.2842 -  mkdir_p='mkdir -p --'
 11.2843 -else
 11.2844 -  # On NextStep and OpenStep, the `mkdir' command does not
 11.2845 -  # recognize any option.  It will interpret all options as
 11.2846 -  # directories to create, and then abort because `.' already
 11.2847 -  # exists.
 11.2848 -  for d in ./-p ./--version;
 11.2849 -  do
 11.2850 -    test -d $d && rmdir $d
 11.2851 -  done
 11.2852 -  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
 11.2853 -  if test -f "$ac_aux_dir/mkinstalldirs"; then
 11.2854 -    mkdir_p='$(mkinstalldirs)'
 11.2855 -  else
 11.2856 -    mkdir_p='$(install_sh) -d'
 11.2857 -  fi
 11.2858 -fi
 11.2859 -
 11.2860 -for ac_prog in gawk mawk nawk awk
 11.2861 -do
 11.2862 -  # Extract the first word of "$ac_prog", so it can be a program name with args.
 11.2863 -set dummy $ac_prog; ac_word=$2
 11.2864 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.2865 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.2866 -if test "${ac_cv_prog_AWK+set}" = set; then
 11.2867 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2868 -else
 11.2869 -  if test -n "$AWK"; then
 11.2870 -  ac_cv_prog_AWK="$AWK" # Let the user override the test.
 11.2871 -else
 11.2872 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.2873 -for as_dir in $PATH
 11.2874 -do
 11.2875 -  IFS=$as_save_IFS
 11.2876 -  test -z "$as_dir" && as_dir=.
 11.2877 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.2878 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.2879 -    ac_cv_prog_AWK="$ac_prog"
 11.2880 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.2881 -    break 2
 11.2882 -  fi
 11.2883 -done
 11.2884 -done
 11.2885 -
 11.2886 -fi
 11.2887 -fi
 11.2888 -AWK=$ac_cv_prog_AWK
 11.2889 -if test -n "$AWK"; then
 11.2890 -  echo "$as_me:$LINENO: result: $AWK" >&5
 11.2891 -echo "${ECHO_T}$AWK" >&6
 11.2892 -else
 11.2893 -  echo "$as_me:$LINENO: result: no" >&5
 11.2894 -echo "${ECHO_T}no" >&6
 11.2895 -fi
 11.2896 -
 11.2897 -  test -n "$AWK" && break
 11.2898 -done
 11.2899 -
 11.2900 -echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 11.2901 -echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
 11.2902 -set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
 11.2903 -if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
 11.2904 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.2905 -else
 11.2906 -  cat >conftest.make <<\_ACEOF
 11.2907 -all:
 11.2908 -	@echo 'ac_maketemp="$(MAKE)"'
 11.2909 -_ACEOF
 11.2910 -# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
 11.2911 -eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
 11.2912 -if test -n "$ac_maketemp"; then
 11.2913 -  eval ac_cv_prog_make_${ac_make}_set=yes
 11.2914 -else
 11.2915 -  eval ac_cv_prog_make_${ac_make}_set=no
 11.2916 -fi
 11.2917 -rm -f conftest.make
 11.2918 -fi
 11.2919 -if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
 11.2920 -  echo "$as_me:$LINENO: result: yes" >&5
 11.2921 -echo "${ECHO_T}yes" >&6
 11.2922 -  SET_MAKE=
 11.2923 -else
 11.2924 -  echo "$as_me:$LINENO: result: no" >&5
 11.2925 -echo "${ECHO_T}no" >&6
 11.2926 -  SET_MAKE="MAKE=${MAKE-make}"
 11.2927 -fi
 11.2928 -
 11.2929 -rm -rf .tst 2>/dev/null
 11.2930 -mkdir .tst 2>/dev/null
 11.2931 -if test -d .tst; then
 11.2932 -  am__leading_dot=.
 11.2933 -else
 11.2934 -  am__leading_dot=_
 11.2935 -fi
 11.2936 -rmdir .tst 2>/dev/null
 11.2937 -
 11.2938 -DEPDIR="${am__leading_dot}deps"
 11.2939 -
 11.2940 -          ac_config_commands="$ac_config_commands depfiles"
 11.2941 -
 11.2942 -
 11.2943 -am_make=${MAKE-make}
 11.2944 -cat > confinc << 'END'
 11.2945 -am__doit:
 11.2946 -	@echo done
 11.2947 -.PHONY: am__doit
 11.2948 -END
 11.2949 -# If we don't find an include directive, just comment out the code.
 11.2950 -echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
 11.2951 -echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
 11.2952 -am__include="#"
 11.2953 -am__quote=
 11.2954 -_am_result=none
 11.2955 -# First try GNU make style include.
 11.2956 -echo "include confinc" > confmf
 11.2957 -# We grep out `Entering directory' and `Leaving directory'
 11.2958 -# messages which can occur if `w' ends up in MAKEFLAGS.
 11.2959 -# In particular we don't look at `^make:' because GNU make might
 11.2960 -# be invoked under some other name (usually "gmake"), in which
 11.2961 -# case it prints its new name instead of `make'.
 11.2962 -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
 11.2963 -   am__include=include
 11.2964 -   am__quote=
 11.2965 -   _am_result=GNU
 11.2966 -fi
 11.2967 -# Now try BSD make style include.
 11.2968 -if test "$am__include" = "#"; then
 11.2969 -   echo '.include "confinc"' > confmf
 11.2970 -   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
 11.2971 -      am__include=.include
 11.2972 -      am__quote="\""
 11.2973 -      _am_result=BSD
 11.2974 -   fi
 11.2975 -fi
 11.2976 -
 11.2977 -
 11.2978 -echo "$as_me:$LINENO: result: $_am_result" >&5
 11.2979 -echo "${ECHO_T}$_am_result" >&6
 11.2980 -rm -f confinc confmf
 11.2981 -
 11.2982 -# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
 11.2983 -if test "${enable_dependency_tracking+set}" = set; then
 11.2984 -  enableval="$enable_dependency_tracking"
 11.2985 -
 11.2986 -fi;
 11.2987 -if test "x$enable_dependency_tracking" != xno; then
 11.2988 -  am_depcomp="$ac_aux_dir/depcomp"
 11.2989 -  AMDEPBACKSLASH='\'
 11.2990 -fi
 11.2991 -
 11.2992 -
 11.2993 -if test "x$enable_dependency_tracking" != xno; then
 11.2994 -  AMDEP_TRUE=
 11.2995 -  AMDEP_FALSE='#'
 11.2996 -else
 11.2997 -  AMDEP_TRUE='#'
 11.2998 -  AMDEP_FALSE=
 11.2999 -fi
 11.3000 -
 11.3001 -
 11.3002 -
 11.3003 -# test to see if srcdir already configured
 11.3004 -if test "`cd $srcdir && pwd`" != "`pwd`" &&
 11.3005 -   test -f $srcdir/config.status; then
 11.3006 -  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 11.3007 -echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
 11.3008 -   { (exit 1); exit 1; }; }
 11.3009 -fi
 11.3010 -
 11.3011 -# test whether we have cygpath
 11.3012 -if test -z "$CYGPATH_W"; then
 11.3013 -  if (cygpath --version) >/dev/null 2>/dev/null; then
 11.3014 -    CYGPATH_W='cygpath -w'
 11.3015 -  else
 11.3016 -    CYGPATH_W=echo
 11.3017 -  fi
 11.3018 -fi
 11.3019 -
 11.3020 -
 11.3021 -# Define the identity of the package.
 11.3022 - PACKAGE=binutils
 11.3023 - VERSION=${BFD_VERSION}
 11.3024 -
 11.3025 -
 11.3026 -cat >>confdefs.h <<_ACEOF
 11.3027 -#define PACKAGE "$PACKAGE"
 11.3028 -_ACEOF
 11.3029 -
 11.3030 -
 11.3031 -cat >>confdefs.h <<_ACEOF
 11.3032 -#define VERSION "$VERSION"
 11.3033 -_ACEOF
 11.3034 -
 11.3035 -# Some tools Automake needs.
 11.3036 -
 11.3037 -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
 11.3038 -
 11.3039 -
 11.3040 -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
 11.3041 -
 11.3042 -
 11.3043 -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
 11.3044 -
 11.3045 -
 11.3046 -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
 11.3047 -
 11.3048 -
 11.3049 -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
 11.3050 -
 11.3051 -install_sh=${install_sh-"$am_aux_dir/install-sh"}
 11.3052 -
 11.3053 -# Installed binaries are usually stripped using `strip' when the user
 11.3054 -# run `make install-strip'.  However `strip' might not be the right
 11.3055 -# tool to use in cross-compilation environments, therefore Automake
 11.3056 -# will honor the `STRIP' environment variable to overrule this program.
 11.3057 -if test "$cross_compiling" != no; then
 11.3058 -  if test -n "$ac_tool_prefix"; then
 11.3059 -  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 11.3060 -set dummy ${ac_tool_prefix}strip; ac_word=$2
 11.3061 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3062 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3063 -if test "${ac_cv_prog_STRIP+set}" = set; then
 11.3064 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3065 -else
 11.3066 -  if test -n "$STRIP"; then
 11.3067 -  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
 11.3068 -else
 11.3069 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3070 -for as_dir in $PATH
 11.3071 -do
 11.3072 -  IFS=$as_save_IFS
 11.3073 -  test -z "$as_dir" && as_dir=.
 11.3074 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3075 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3076 -    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 11.3077 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3078 -    break 2
 11.3079 -  fi
 11.3080 -done
 11.3081 -done
 11.3082 -
 11.3083 -fi
 11.3084 -fi
 11.3085 -STRIP=$ac_cv_prog_STRIP
 11.3086 -if test -n "$STRIP"; then
 11.3087 -  echo "$as_me:$LINENO: result: $STRIP" >&5
 11.3088 -echo "${ECHO_T}$STRIP" >&6
 11.3089 -else
 11.3090 -  echo "$as_me:$LINENO: result: no" >&5
 11.3091 -echo "${ECHO_T}no" >&6
 11.3092 -fi
 11.3093 -
 11.3094 -fi
 11.3095 -if test -z "$ac_cv_prog_STRIP"; then
 11.3096 -  ac_ct_STRIP=$STRIP
 11.3097 -  # Extract the first word of "strip", so it can be a program name with args.
 11.3098 -set dummy strip; ac_word=$2
 11.3099 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3100 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3101 -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
 11.3102 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3103 -else
 11.3104 -  if test -n "$ac_ct_STRIP"; then
 11.3105 -  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
 11.3106 -else
 11.3107 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3108 -for as_dir in $PATH
 11.3109 -do
 11.3110 -  IFS=$as_save_IFS
 11.3111 -  test -z "$as_dir" && as_dir=.
 11.3112 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3113 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3114 -    ac_cv_prog_ac_ct_STRIP="strip"
 11.3115 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3116 -    break 2
 11.3117 -  fi
 11.3118 -done
 11.3119 -done
 11.3120 -
 11.3121 -  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
 11.3122 -fi
 11.3123 -fi
 11.3124 -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
 11.3125 -if test -n "$ac_ct_STRIP"; then
 11.3126 -  echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 11.3127 -echo "${ECHO_T}$ac_ct_STRIP" >&6
 11.3128 -else
 11.3129 -  echo "$as_me:$LINENO: result: no" >&5
 11.3130 -echo "${ECHO_T}no" >&6
 11.3131 -fi
 11.3132 -
 11.3133 -  STRIP=$ac_ct_STRIP
 11.3134 -else
 11.3135 -  STRIP="$ac_cv_prog_STRIP"
 11.3136 -fi
 11.3137 -
 11.3138 -fi
 11.3139 -INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 11.3140 -
 11.3141 -# We need awk for the "check" target.  The system "awk" is bad on
 11.3142 -# some platforms.
 11.3143 -# Always define AMTAR for backward compatibility.
 11.3144 -
 11.3145 -AMTAR=${AMTAR-"${am_missing_run}tar"}
 11.3146 -
 11.3147 -am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
 11.3148 -
 11.3149 -
 11.3150 -
 11.3151 -
 11.3152 -depcc="$CC"   am_compiler_list=
 11.3153 -
 11.3154 -echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 11.3155 -echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
 11.3156 -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
 11.3157 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3158 -else
 11.3159 -  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 11.3160 -  # We make a subdir and do the tests there.  Otherwise we can end up
 11.3161 -  # making bogus files that we don't know about and never remove.  For
 11.3162 -  # instance it was reported that on HP-UX the gcc test will end up
 11.3163 -  # making a dummy file named `D' -- because `-MD' means `put the output
 11.3164 -  # in D'.
 11.3165 -  mkdir conftest.dir
 11.3166 -  # Copy depcomp to subdir because otherwise we won't find it if we're
 11.3167 -  # using a relative directory.
 11.3168 -  cp "$am_depcomp" conftest.dir
 11.3169 -  cd conftest.dir
 11.3170 -  # We will build objects and dependencies in a subdirectory because
 11.3171 -  # it helps to detect inapplicable dependency modes.  For instance
 11.3172 -  # both Tru64's cc and ICC support -MD to output dependencies as a
 11.3173 -  # side effect of compilation, but ICC will put the dependencies in
 11.3174 -  # the current directory while Tru64 will put them in the object
 11.3175 -  # directory.
 11.3176 -  mkdir sub
 11.3177 -
 11.3178 -  am_cv_CC_dependencies_compiler_type=none
 11.3179 -  if test "$am_compiler_list" = ""; then
 11.3180 -     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
 11.3181 -  fi
 11.3182 -  for depmode in $am_compiler_list; do
 11.3183 -    # Setup a source with many dependencies, because some compilers
 11.3184 -    # like to wrap large dependency lists on column 80 (with \), and
 11.3185 -    # we should not choose a depcomp mode which is confused by this.
 11.3186 -    #
 11.3187 -    # We need to recreate these files for each test, as the compiler may
 11.3188 -    # overwrite some of them when testing with obscure command lines.
 11.3189 -    # This happens at least with the AIX C compiler.
 11.3190 -    : > sub/conftest.c
 11.3191 -    for i in 1 2 3 4 5 6; do
 11.3192 -      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 11.3193 -      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 11.3194 -      # Solaris 8's {/usr,}/bin/sh.
 11.3195 -      touch sub/conftst$i.h
 11.3196 -    done
 11.3197 -    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 11.3198 -
 11.3199 -    case $depmode in
 11.3200 -    nosideeffect)
 11.3201 -      # after this tag, mechanisms are not by side-effect, so they'll
 11.3202 -      # only be used when explicitly requested
 11.3203 -      if test "x$enable_dependency_tracking" = xyes; then
 11.3204 -	continue
 11.3205 -      else
 11.3206 -	break
 11.3207 -      fi
 11.3208 -      ;;
 11.3209 -    none) break ;;
 11.3210 -    esac
 11.3211 -    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 11.3212 -    # mode.  It turns out that the SunPro C++ compiler does not properly
 11.3213 -    # handle `-M -o', and we need to detect this.
 11.3214 -    if depmode=$depmode \
 11.3215 -       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
 11.3216 -       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 11.3217 -       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
 11.3218 -         >/dev/null 2>conftest.err &&
 11.3219 -       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 11.3220 -       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
 11.3221 -       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 11.3222 -      # icc doesn't choke on unknown options, it will just issue warnings
 11.3223 -      # or remarks (even with -Werror).  So we grep stderr for any message
 11.3224 -      # that says an option was ignored or not supported.
 11.3225 -      # When given -MP, icc 7.0 and 7.1 complain thusly:
 11.3226 -      #   icc: Command line warning: ignoring option '-M'; no argument required
 11.3227 -      # The diagnosis changed in icc 8.0:
 11.3228 -      #   icc: Command line remark: option '-MP' not supported
 11.3229 -      if (grep 'ignoring option' conftest.err ||
 11.3230 -          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 11.3231 -        am_cv_CC_dependencies_compiler_type=$depmode
 11.3232 -        break
 11.3233 -      fi
 11.3234 -    fi
 11.3235 -  done
 11.3236 -
 11.3237 -  cd ..
 11.3238 -  rm -rf conftest.dir
 11.3239 -else
 11.3240 -  am_cv_CC_dependencies_compiler_type=none
 11.3241 -fi
 11.3242 -
 11.3243 -fi
 11.3244 -echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 11.3245 -echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
 11.3246 -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
 11.3247 -
 11.3248 -
 11.3249 -
 11.3250 -if
 11.3251 -  test "x$enable_dependency_tracking" != xno \
 11.3252 -  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
 11.3253 -  am__fastdepCC_TRUE=
 11.3254 -  am__fastdepCC_FALSE='#'
 11.3255 -else
 11.3256 -  am__fastdepCC_TRUE='#'
 11.3257 -  am__fastdepCC_FALSE=
 11.3258 -fi
 11.3259 -
 11.3260 -
 11.3261 -
 11.3262 -
 11.3263 -ac_ext=c
 11.3264 -ac_cpp='$CPP $CPPFLAGS'
 11.3265 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.3266 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.3267 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.3268 -if test -n "$ac_tool_prefix"; then
 11.3269 -  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 11.3270 -set dummy ${ac_tool_prefix}gcc; ac_word=$2
 11.3271 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3272 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3273 -if test "${ac_cv_prog_CC+set}" = set; then
 11.3274 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3275 -else
 11.3276 -  if test -n "$CC"; then
 11.3277 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.3278 -else
 11.3279 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3280 -for as_dir in $PATH
 11.3281 -do
 11.3282 -  IFS=$as_save_IFS
 11.3283 -  test -z "$as_dir" && as_dir=.
 11.3284 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3285 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3286 -    ac_cv_prog_CC="${ac_tool_prefix}gcc"
 11.3287 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3288 -    break 2
 11.3289 -  fi
 11.3290 -done
 11.3291 -done
 11.3292 -
 11.3293 -fi
 11.3294 -fi
 11.3295 -CC=$ac_cv_prog_CC
 11.3296 -if test -n "$CC"; then
 11.3297 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.3298 -echo "${ECHO_T}$CC" >&6
 11.3299 -else
 11.3300 -  echo "$as_me:$LINENO: result: no" >&5
 11.3301 -echo "${ECHO_T}no" >&6
 11.3302 -fi
 11.3303 -
 11.3304 -fi
 11.3305 -if test -z "$ac_cv_prog_CC"; then
 11.3306 -  ac_ct_CC=$CC
 11.3307 -  # Extract the first word of "gcc", so it can be a program name with args.
 11.3308 -set dummy gcc; ac_word=$2
 11.3309 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3310 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3311 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 11.3312 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3313 -else
 11.3314 -  if test -n "$ac_ct_CC"; then
 11.3315 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 11.3316 -else
 11.3317 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3318 -for as_dir in $PATH
 11.3319 -do
 11.3320 -  IFS=$as_save_IFS
 11.3321 -  test -z "$as_dir" && as_dir=.
 11.3322 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3323 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3324 -    ac_cv_prog_ac_ct_CC="gcc"
 11.3325 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3326 -    break 2
 11.3327 -  fi
 11.3328 -done
 11.3329 -done
 11.3330 -
 11.3331 -fi
 11.3332 -fi
 11.3333 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 11.3334 -if test -n "$ac_ct_CC"; then
 11.3335 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 11.3336 -echo "${ECHO_T}$ac_ct_CC" >&6
 11.3337 -else
 11.3338 -  echo "$as_me:$LINENO: result: no" >&5
 11.3339 -echo "${ECHO_T}no" >&6
 11.3340 -fi
 11.3341 -
 11.3342 -  CC=$ac_ct_CC
 11.3343 -else
 11.3344 -  CC="$ac_cv_prog_CC"
 11.3345 -fi
 11.3346 -
 11.3347 -if test -z "$CC"; then
 11.3348 -  if test -n "$ac_tool_prefix"; then
 11.3349 -  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 11.3350 -set dummy ${ac_tool_prefix}cc; ac_word=$2
 11.3351 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3352 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3353 -if test "${ac_cv_prog_CC+set}" = set; then
 11.3354 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3355 -else
 11.3356 -  if test -n "$CC"; then
 11.3357 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.3358 -else
 11.3359 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3360 -for as_dir in $PATH
 11.3361 -do
 11.3362 -  IFS=$as_save_IFS
 11.3363 -  test -z "$as_dir" && as_dir=.
 11.3364 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3365 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3366 -    ac_cv_prog_CC="${ac_tool_prefix}cc"
 11.3367 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3368 -    break 2
 11.3369 -  fi
 11.3370 -done
 11.3371 -done
 11.3372 -
 11.3373 -fi
 11.3374 -fi
 11.3375 -CC=$ac_cv_prog_CC
 11.3376 -if test -n "$CC"; then
 11.3377 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.3378 -echo "${ECHO_T}$CC" >&6
 11.3379 -else
 11.3380 -  echo "$as_me:$LINENO: result: no" >&5
 11.3381 -echo "${ECHO_T}no" >&6
 11.3382 -fi
 11.3383 -
 11.3384 -fi
 11.3385 -if test -z "$ac_cv_prog_CC"; then
 11.3386 -  ac_ct_CC=$CC
 11.3387 -  # Extract the first word of "cc", so it can be a program name with args.
 11.3388 -set dummy cc; ac_word=$2
 11.3389 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3390 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3391 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 11.3392 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3393 -else
 11.3394 -  if test -n "$ac_ct_CC"; then
 11.3395 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 11.3396 -else
 11.3397 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3398 -for as_dir in $PATH
 11.3399 -do
 11.3400 -  IFS=$as_save_IFS
 11.3401 -  test -z "$as_dir" && as_dir=.
 11.3402 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3403 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3404 -    ac_cv_prog_ac_ct_CC="cc"
 11.3405 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3406 -    break 2
 11.3407 -  fi
 11.3408 -done
 11.3409 -done
 11.3410 -
 11.3411 -fi
 11.3412 -fi
 11.3413 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 11.3414 -if test -n "$ac_ct_CC"; then
 11.3415 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 11.3416 -echo "${ECHO_T}$ac_ct_CC" >&6
 11.3417 -else
 11.3418 -  echo "$as_me:$LINENO: result: no" >&5
 11.3419 -echo "${ECHO_T}no" >&6
 11.3420 -fi
 11.3421 -
 11.3422 -  CC=$ac_ct_CC
 11.3423 -else
 11.3424 -  CC="$ac_cv_prog_CC"
 11.3425 -fi
 11.3426 -
 11.3427 -fi
 11.3428 -if test -z "$CC"; then
 11.3429 -  # Extract the first word of "cc", so it can be a program name with args.
 11.3430 -set dummy cc; ac_word=$2
 11.3431 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3432 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3433 -if test "${ac_cv_prog_CC+set}" = set; then
 11.3434 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3435 -else
 11.3436 -  if test -n "$CC"; then
 11.3437 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.3438 -else
 11.3439 -  ac_prog_rejected=no
 11.3440 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3441 -for as_dir in $PATH
 11.3442 -do
 11.3443 -  IFS=$as_save_IFS
 11.3444 -  test -z "$as_dir" && as_dir=.
 11.3445 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3446 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3447 -    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 11.3448 -       ac_prog_rejected=yes
 11.3449 -       continue
 11.3450 -     fi
 11.3451 -    ac_cv_prog_CC="cc"
 11.3452 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3453 -    break 2
 11.3454 -  fi
 11.3455 -done
 11.3456 -done
 11.3457 -
 11.3458 -if test $ac_prog_rejected = yes; then
 11.3459 -  # We found a bogon in the path, so make sure we never use it.
 11.3460 -  set dummy $ac_cv_prog_CC
 11.3461 -  shift
 11.3462 -  if test $# != 0; then
 11.3463 -    # We chose a different compiler from the bogus one.
 11.3464 -    # However, it has the same basename, so the bogon will be chosen
 11.3465 -    # first if we set CC to just the basename; use the full file name.
 11.3466 -    shift
 11.3467 -    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
 11.3468 -  fi
 11.3469 -fi
 11.3470 -fi
 11.3471 -fi
 11.3472 -CC=$ac_cv_prog_CC
 11.3473 -if test -n "$CC"; then
 11.3474 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.3475 -echo "${ECHO_T}$CC" >&6
 11.3476 -else
 11.3477 -  echo "$as_me:$LINENO: result: no" >&5
 11.3478 -echo "${ECHO_T}no" >&6
 11.3479 -fi
 11.3480 -
 11.3481 -fi
 11.3482 -if test -z "$CC"; then
 11.3483 -  if test -n "$ac_tool_prefix"; then
 11.3484 -  for ac_prog in cl
 11.3485 -  do
 11.3486 -    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 11.3487 -set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 11.3488 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3489 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3490 -if test "${ac_cv_prog_CC+set}" = set; then
 11.3491 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3492 -else
 11.3493 -  if test -n "$CC"; then
 11.3494 -  ac_cv_prog_CC="$CC" # Let the user override the test.
 11.3495 -else
 11.3496 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3497 -for as_dir in $PATH
 11.3498 -do
 11.3499 -  IFS=$as_save_IFS
 11.3500 -  test -z "$as_dir" && as_dir=.
 11.3501 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3502 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3503 -    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 11.3504 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3505 -    break 2
 11.3506 -  fi
 11.3507 -done
 11.3508 -done
 11.3509 -
 11.3510 -fi
 11.3511 -fi
 11.3512 -CC=$ac_cv_prog_CC
 11.3513 -if test -n "$CC"; then
 11.3514 -  echo "$as_me:$LINENO: result: $CC" >&5
 11.3515 -echo "${ECHO_T}$CC" >&6
 11.3516 -else
 11.3517 -  echo "$as_me:$LINENO: result: no" >&5
 11.3518 -echo "${ECHO_T}no" >&6
 11.3519 -fi
 11.3520 -
 11.3521 -    test -n "$CC" && break
 11.3522 -  done
 11.3523 -fi
 11.3524 -if test -z "$CC"; then
 11.3525 -  ac_ct_CC=$CC
 11.3526 -  for ac_prog in cl
 11.3527 -do
 11.3528 -  # Extract the first word of "$ac_prog", so it can be a program name with args.
 11.3529 -set dummy $ac_prog; ac_word=$2
 11.3530 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.3531 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.3532 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 11.3533 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3534 -else
 11.3535 -  if test -n "$ac_ct_CC"; then
 11.3536 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 11.3537 -else
 11.3538 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.3539 -for as_dir in $PATH
 11.3540 -do
 11.3541 -  IFS=$as_save_IFS
 11.3542 -  test -z "$as_dir" && as_dir=.
 11.3543 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.3544 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.3545 -    ac_cv_prog_ac_ct_CC="$ac_prog"
 11.3546 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.3547 -    break 2
 11.3548 -  fi
 11.3549 -done
 11.3550 -done
 11.3551 -
 11.3552 -fi
 11.3553 -fi
 11.3554 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 11.3555 -if test -n "$ac_ct_CC"; then
 11.3556 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 11.3557 -echo "${ECHO_T}$ac_ct_CC" >&6
 11.3558 -else
 11.3559 -  echo "$as_me:$LINENO: result: no" >&5
 11.3560 -echo "${ECHO_T}no" >&6
 11.3561 -fi
 11.3562 -
 11.3563 -  test -n "$ac_ct_CC" && break
 11.3564 -done
 11.3565 -
 11.3566 -  CC=$ac_ct_CC
 11.3567 -fi
 11.3568 -
 11.3569 -fi
 11.3570 -
 11.3571 -
 11.3572 -test -z "$CC" && { { echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 11.3573 -echo "$as_me: error: in \`$ac_pwd':" >&2;}
 11.3574 -{ { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
 11.3575 -See \`config.log' for more details." >&5
 11.3576 -echo "$as_me: error: no acceptable C compiler found in \$PATH
 11.3577 -See \`config.log' for more details." >&2;}
 11.3578 -   { (exit 1); exit 1; }; }; }
 11.3579 -
 11.3580 -# Provide some information about the compiler.
 11.3581 -echo "$as_me:$LINENO:" \
 11.3582 -     "checking for C compiler version" >&5
 11.3583 -ac_compiler=`set X $ac_compile; echo $2`
 11.3584 -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
 11.3585 -  (eval $ac_compiler --version </dev/null >&5) 2>&5
 11.3586 -  ac_status=$?
 11.3587 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3588 -  (exit $ac_status); }
 11.3589 -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
 11.3590 -  (eval $ac_compiler -v </dev/null >&5) 2>&5
 11.3591 -  ac_status=$?
 11.3592 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3593 -  (exit $ac_status); }
 11.3594 -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
 11.3595 -  (eval $ac_compiler -V </dev/null >&5) 2>&5
 11.3596 -  ac_status=$?
 11.3597 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3598 -  (exit $ac_status); }
 11.3599 -
 11.3600 -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 11.3601 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
 11.3602 -if test "${ac_cv_c_compiler_gnu+set}" = set; then
 11.3603 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3604 -else
 11.3605 -  cat >conftest.$ac_ext <<_ACEOF
 11.3606 -/* confdefs.h.  */
 11.3607 -_ACEOF
 11.3608 -cat confdefs.h >>conftest.$ac_ext
 11.3609 -cat >>conftest.$ac_ext <<_ACEOF
 11.3610 -/* end confdefs.h.  */
 11.3611 -
 11.3612 -int
 11.3613 -main ()
 11.3614 -{
 11.3615 -#ifndef __GNUC__
 11.3616 -       choke me
 11.3617 -#endif
 11.3618 -
 11.3619 -  ;
 11.3620 -  return 0;
 11.3621 -}
 11.3622 -_ACEOF
 11.3623 -rm -f conftest.$ac_objext
 11.3624 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.3625 -  (eval $ac_compile) 2>conftest.er1
 11.3626 -  ac_status=$?
 11.3627 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.3628 -  rm -f conftest.er1
 11.3629 -  cat conftest.err >&5
 11.3630 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3631 -  (exit $ac_status); } &&
 11.3632 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.3633 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3634 -  (eval $ac_try) 2>&5
 11.3635 -  ac_status=$?
 11.3636 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3637 -  (exit $ac_status); }; } &&
 11.3638 -	 { ac_try='test -s conftest.$ac_objext'
 11.3639 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3640 -  (eval $ac_try) 2>&5
 11.3641 -  ac_status=$?
 11.3642 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3643 -  (exit $ac_status); }; }; then
 11.3644 -  ac_compiler_gnu=yes
 11.3645 -else
 11.3646 -  echo "$as_me: failed program was:" >&5
 11.3647 -sed 's/^/| /' conftest.$ac_ext >&5
 11.3648 -
 11.3649 -ac_compiler_gnu=no
 11.3650 -fi
 11.3651 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.3652 -ac_cv_c_compiler_gnu=$ac_compiler_gnu
 11.3653 -
 11.3654 -fi
 11.3655 -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 11.3656 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
 11.3657 -GCC=`test $ac_compiler_gnu = yes && echo yes`
 11.3658 -ac_test_CFLAGS=${CFLAGS+set}
 11.3659 -ac_save_CFLAGS=$CFLAGS
 11.3660 -CFLAGS="-g"
 11.3661 -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 11.3662 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
 11.3663 -if test "${ac_cv_prog_cc_g+set}" = set; then
 11.3664 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3665 -else
 11.3666 -  cat >conftest.$ac_ext <<_ACEOF
 11.3667 -/* confdefs.h.  */
 11.3668 -_ACEOF
 11.3669 -cat confdefs.h >>conftest.$ac_ext
 11.3670 -cat >>conftest.$ac_ext <<_ACEOF
 11.3671 -/* end confdefs.h.  */
 11.3672 -
 11.3673 -int
 11.3674 -main ()
 11.3675 -{
 11.3676 -
 11.3677 -  ;
 11.3678 -  return 0;
 11.3679 -}
 11.3680 -_ACEOF
 11.3681 -rm -f conftest.$ac_objext
 11.3682 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.3683 -  (eval $ac_compile) 2>conftest.er1
 11.3684 -  ac_status=$?
 11.3685 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.3686 -  rm -f conftest.er1
 11.3687 -  cat conftest.err >&5
 11.3688 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3689 -  (exit $ac_status); } &&
 11.3690 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.3691 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3692 -  (eval $ac_try) 2>&5
 11.3693 -  ac_status=$?
 11.3694 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3695 -  (exit $ac_status); }; } &&
 11.3696 -	 { ac_try='test -s conftest.$ac_objext'
 11.3697 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3698 -  (eval $ac_try) 2>&5
 11.3699 -  ac_status=$?
 11.3700 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3701 -  (exit $ac_status); }; }; then
 11.3702 -  ac_cv_prog_cc_g=yes
 11.3703 -else
 11.3704 -  echo "$as_me: failed program was:" >&5
 11.3705 -sed 's/^/| /' conftest.$ac_ext >&5
 11.3706 -
 11.3707 -ac_cv_prog_cc_g=no
 11.3708 -fi
 11.3709 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.3710 -fi
 11.3711 -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 11.3712 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 11.3713 -if test "$ac_test_CFLAGS" = set; then
 11.3714 -  CFLAGS=$ac_save_CFLAGS
 11.3715 -elif test $ac_cv_prog_cc_g = yes; then
 11.3716 -  if test "$GCC" = yes; then
 11.3717 -    CFLAGS="-g -O2"
 11.3718 -  else
 11.3719 -    CFLAGS="-g"
 11.3720 -  fi
 11.3721 -else
 11.3722 -  if test "$GCC" = yes; then
 11.3723 -    CFLAGS="-O2"
 11.3724 -  else
 11.3725 -    CFLAGS=
 11.3726 -  fi
 11.3727 -fi
 11.3728 -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
 11.3729 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
 11.3730 -if test "${ac_cv_prog_cc_stdc+set}" = set; then
 11.3731 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.3732 -else
 11.3733 -  ac_cv_prog_cc_stdc=no
 11.3734 -ac_save_CC=$CC
 11.3735 -cat >conftest.$ac_ext <<_ACEOF
 11.3736 -/* confdefs.h.  */
 11.3737 -_ACEOF
 11.3738 -cat confdefs.h >>conftest.$ac_ext
 11.3739 -cat >>conftest.$ac_ext <<_ACEOF
 11.3740 -/* end confdefs.h.  */
 11.3741 -#include <stdarg.h>
 11.3742 -#include <stdio.h>
 11.3743 -#include <sys/types.h>
 11.3744 -#include <sys/stat.h>
 11.3745 -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 11.3746 -struct buf { int x; };
 11.3747 -FILE * (*rcsopen) (struct buf *, struct stat *, int);
 11.3748 -static char *e (p, i)
 11.3749 -     char **p;
 11.3750 -     int i;
 11.3751 -{
 11.3752 -  return p[i];
 11.3753 -}
 11.3754 -static char *f (char * (*g) (char **, int), char **p, ...)
 11.3755 -{
 11.3756 -  char *s;
 11.3757 -  va_list v;
 11.3758 -  va_start (v,p);
 11.3759 -  s = g (p, va_arg (v,int));
 11.3760 -  va_end (v);
 11.3761 -  return s;
 11.3762 -}
 11.3763 -
 11.3764 -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 11.3765 -   function prototypes and stuff, but not '\xHH' hex character constants.
 11.3766 -   These don't provoke an error unfortunately, instead are silently treated
 11.3767 -   as 'x'.  The following induces an error, until -std1 is added to get
 11.3768 -   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 11.3769 -   array size at least.  It's necessary to write '\x00'==0 to get something
 11.3770 -   that's true only with -std1.  */
 11.3771 -int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 11.3772 -
 11.3773 -int test (int i, double x);
 11.3774 -struct s1 {int (*f) (int a);};
 11.3775 -struct s2 {int (*f) (double a);};
 11.3776 -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 11.3777 -int argc;
 11.3778 -char **argv;
 11.3779 -int
 11.3780 -main ()
 11.3781 -{
 11.3782 -return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 11.3783 -  ;
 11.3784 -  return 0;
 11.3785 -}
 11.3786 -_ACEOF
 11.3787 -# Don't try gcc -ansi; that turns off useful extensions and
 11.3788 -# breaks some systems' header files.
 11.3789 -# AIX			-qlanglvl=ansi
 11.3790 -# Ultrix and OSF/1	-std1
 11.3791 -# HP-UX 10.20 and later	-Ae
 11.3792 -# HP-UX older versions	-Aa -D_HPUX_SOURCE
 11.3793 -# SVR4			-Xc -D__EXTENSIONS__
 11.3794 -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 11.3795 -do
 11.3796 -  CC="$ac_save_CC $ac_arg"
 11.3797 -  rm -f conftest.$ac_objext
 11.3798 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.3799 -  (eval $ac_compile) 2>conftest.er1
 11.3800 -  ac_status=$?
 11.3801 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.3802 -  rm -f conftest.er1
 11.3803 -  cat conftest.err >&5
 11.3804 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3805 -  (exit $ac_status); } &&
 11.3806 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.3807 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3808 -  (eval $ac_try) 2>&5
 11.3809 -  ac_status=$?
 11.3810 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3811 -  (exit $ac_status); }; } &&
 11.3812 -	 { ac_try='test -s conftest.$ac_objext'
 11.3813 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3814 -  (eval $ac_try) 2>&5
 11.3815 -  ac_status=$?
 11.3816 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3817 -  (exit $ac_status); }; }; then
 11.3818 -  ac_cv_prog_cc_stdc=$ac_arg
 11.3819 -break
 11.3820 -else
 11.3821 -  echo "$as_me: failed program was:" >&5
 11.3822 -sed 's/^/| /' conftest.$ac_ext >&5
 11.3823 -
 11.3824 -fi
 11.3825 -rm -f conftest.err conftest.$ac_objext
 11.3826 -done
 11.3827 -rm -f conftest.$ac_ext conftest.$ac_objext
 11.3828 -CC=$ac_save_CC
 11.3829 -
 11.3830 -fi
 11.3831 -
 11.3832 -case "x$ac_cv_prog_cc_stdc" in
 11.3833 -  x|xno)
 11.3834 -    echo "$as_me:$LINENO: result: none needed" >&5
 11.3835 -echo "${ECHO_T}none needed" >&6 ;;
 11.3836 -  *)
 11.3837 -    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
 11.3838 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
 11.3839 -    CC="$CC $ac_cv_prog_cc_stdc" ;;
 11.3840 -esac
 11.3841 -
 11.3842 -# Some people use a C++ compiler to compile C.  Since we use `exit',
 11.3843 -# in C++ we need to declare it.  In case someone uses the same compiler
 11.3844 -# for both compiling C and C++ we need to have the C++ compiler decide
 11.3845 -# the declaration of exit, since it's the most demanding environment.
 11.3846 -cat >conftest.$ac_ext <<_ACEOF
 11.3847 -#ifndef __cplusplus
 11.3848 -  choke me
 11.3849 -#endif
 11.3850 -_ACEOF
 11.3851 -rm -f conftest.$ac_objext
 11.3852 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.3853 -  (eval $ac_compile) 2>conftest.er1
 11.3854 -  ac_status=$?
 11.3855 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.3856 -  rm -f conftest.er1
 11.3857 -  cat conftest.err >&5
 11.3858 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3859 -  (exit $ac_status); } &&
 11.3860 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.3861 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3862 -  (eval $ac_try) 2>&5
 11.3863 -  ac_status=$?
 11.3864 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3865 -  (exit $ac_status); }; } &&
 11.3866 -	 { ac_try='test -s conftest.$ac_objext'
 11.3867 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3868 -  (eval $ac_try) 2>&5
 11.3869 -  ac_status=$?
 11.3870 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3871 -  (exit $ac_status); }; }; then
 11.3872 -  for ac_declaration in \
 11.3873 -   '' \
 11.3874 -   'extern "C" void std::exit (int) throw (); using std::exit;' \
 11.3875 -   'extern "C" void std::exit (int); using std::exit;' \
 11.3876 -   'extern "C" void exit (int) throw ();' \
 11.3877 -   'extern "C" void exit (int);' \
 11.3878 -   'void exit (int);'
 11.3879 -do
 11.3880 -  cat >conftest.$ac_ext <<_ACEOF
 11.3881 -/* confdefs.h.  */
 11.3882 -_ACEOF
 11.3883 -cat confdefs.h >>conftest.$ac_ext
 11.3884 -cat >>conftest.$ac_ext <<_ACEOF
 11.3885 -/* end confdefs.h.  */
 11.3886 -$ac_declaration
 11.3887 -#include <stdlib.h>
 11.3888 -int
 11.3889 -main ()
 11.3890 -{
 11.3891 -exit (42);
 11.3892 -  ;
 11.3893 -  return 0;
 11.3894 -}
 11.3895 -_ACEOF
 11.3896 -rm -f conftest.$ac_objext
 11.3897 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.3898 -  (eval $ac_compile) 2>conftest.er1
 11.3899 -  ac_status=$?
 11.3900 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.3901 -  rm -f conftest.er1
 11.3902 -  cat conftest.err >&5
 11.3903 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3904 -  (exit $ac_status); } &&
 11.3905 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.3906 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3907 -  (eval $ac_try) 2>&5
 11.3908 -  ac_status=$?
 11.3909 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3910 -  (exit $ac_status); }; } &&
 11.3911 -	 { ac_try='test -s conftest.$ac_objext'
 11.3912 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3913 -  (eval $ac_try) 2>&5
 11.3914 -  ac_status=$?
 11.3915 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3916 -  (exit $ac_status); }; }; then
 11.3917 -  :
 11.3918 -else
 11.3919 -  echo "$as_me: failed program was:" >&5
 11.3920 -sed 's/^/| /' conftest.$ac_ext >&5
 11.3921 -
 11.3922 -continue
 11.3923 -fi
 11.3924 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.3925 -  cat >conftest.$ac_ext <<_ACEOF
 11.3926 -/* confdefs.h.  */
 11.3927 -_ACEOF
 11.3928 -cat confdefs.h >>conftest.$ac_ext
 11.3929 -cat >>conftest.$ac_ext <<_ACEOF
 11.3930 -/* end confdefs.h.  */
 11.3931 -$ac_declaration
 11.3932 -int
 11.3933 -main ()
 11.3934 -{
 11.3935 -exit (42);
 11.3936 -  ;
 11.3937 -  return 0;
 11.3938 -}
 11.3939 -_ACEOF
 11.3940 -rm -f conftest.$ac_objext
 11.3941 -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.3942 -  (eval $ac_compile) 2>conftest.er1
 11.3943 -  ac_status=$?
 11.3944 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.3945 -  rm -f conftest.er1
 11.3946 -  cat conftest.err >&5
 11.3947 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3948 -  (exit $ac_status); } &&
 11.3949 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.3950 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3951 -  (eval $ac_try) 2>&5
 11.3952 -  ac_status=$?
 11.3953 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3954 -  (exit $ac_status); }; } &&
 11.3955 -	 { ac_try='test -s conftest.$ac_objext'
 11.3956 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.3957 -  (eval $ac_try) 2>&5
 11.3958 -  ac_status=$?
 11.3959 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.3960 -  (exit $ac_status); }; }; then
 11.3961 -  break
 11.3962 -else
 11.3963 -  echo "$as_me: failed program was:" >&5
 11.3964 -sed 's/^/| /' conftest.$ac_ext >&5
 11.3965 -
 11.3966 -fi
 11.3967 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.3968 -done
 11.3969 -rm -f conftest*
 11.3970 -if test -n "$ac_declaration"; then
 11.3971 -  echo '#ifdef __cplusplus' >>confdefs.h
 11.3972 -  echo $ac_declaration      >>confdefs.h
 11.3973 -  echo '#endif'             >>confdefs.h
 11.3974 -fi
 11.3975 -
 11.3976 -else
 11.3977 -  echo "$as_me: failed program was:" >&5
 11.3978 -sed 's/^/| /' conftest.$ac_ext >&5
 11.3979 -
 11.3980 -fi
 11.3981 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 11.3982 -ac_ext=c
 11.3983 -ac_cpp='$CPP $CPPFLAGS'
 11.3984 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.3985 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.3986 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.3987 -
 11.3988 -
 11.3989 -cat >>confdefs.h <<\_ACEOF
 11.3990 -#define _GNU_SOURCE 1
 11.3991 -_ACEOF
 11.3992 -
 11.3993 -
 11.3994 -
 11.3995 -
 11.3996 -macro_version='2.1a'
 11.3997 -macro_revision='1.2435'
 11.3998 -
 11.3999 -
 11.4000 -
 11.4001 -
 11.4002 -
 11.4003 -
 11.4004 -
 11.4005 -
 11.4006 -
 11.4007 -
 11.4008 -
 11.4009 -
 11.4010 -ltmain="$ac_aux_dir/ltmain.sh"
 11.4011 -
 11.4012 -# Set options
 11.4013 -
 11.4014 -enable_dlopen=no
 11.4015 -
 11.4016 -
 11.4017 -enable_win32_dll=no
 11.4018 -
 11.4019 -
 11.4020 -# Check whether --enable-shared or --disable-shared was given.
 11.4021 -if test "${enable_shared+set}" = set; then
 11.4022 -  enableval="$enable_shared"
 11.4023 -  p=${PACKAGE-default}
 11.4024 -    case $enableval in
 11.4025 -    yes) enable_shared=yes ;;
 11.4026 -    no) enable_shared=no ;;
 11.4027 -    *)
 11.4028 -      enable_shared=no
 11.4029 -      # Look at the argument we got.  We use all the common list separators.
 11.4030 -      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 11.4031 -      for pkg in $enableval; do
 11.4032 -	IFS="$lt_save_ifs"
 11.4033 -	if test "X$pkg" = "X$p"; then
 11.4034 -	  enable_shared=yes
 11.4035 -	fi
 11.4036 -      done
 11.4037 -      IFS="$lt_save_ifs"
 11.4038 -      ;;
 11.4039 -    esac
 11.4040 -else
 11.4041 -  enable_shared=yes
 11.4042 -fi;
 11.4043 -
 11.4044 -
 11.4045 -
 11.4046 -
 11.4047 -
 11.4048 -
 11.4049 -
 11.4050 -
 11.4051 -# Check whether --enable-static or --disable-static was given.
 11.4052 -if test "${enable_static+set}" = set; then
 11.4053 -  enableval="$enable_static"
 11.4054 -  p=${PACKAGE-default}
 11.4055 -    case $enableval in
 11.4056 -    yes) enable_static=yes ;;
 11.4057 -    no) enable_static=no ;;
 11.4058 -    *)
 11.4059 -     enable_static=no
 11.4060 -      # Look at the argument we got.  We use all the common list separators.
 11.4061 -      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 11.4062 -      for pkg in $enableval; do
 11.4063 -	IFS="$lt_save_ifs"
 11.4064 -	if test "X$pkg" = "X$p"; then
 11.4065 -	  enable_static=yes
 11.4066 -	fi
 11.4067 -      done
 11.4068 -      IFS="$lt_save_ifs"
 11.4069 -      ;;
 11.4070 -    esac
 11.4071 -else
 11.4072 -  enable_static=yes
 11.4073 -fi;
 11.4074 -
 11.4075 -
 11.4076 -
 11.4077 -
 11.4078 -
 11.4079 -
 11.4080 -
 11.4081 -
 11.4082 -
 11.4083 -# Check whether --with-pic or --without-pic was given.
 11.4084 -if test "${with_pic+set}" = set; then
 11.4085 -  withval="$with_pic"
 11.4086 -  pic_mode="$withval"
 11.4087 -else
 11.4088 -  pic_mode=default
 11.4089 -fi;
 11.4090 -
 11.4091 -test -z "$pic_mode" && pic_mode=default
 11.4092 -
 11.4093 -
 11.4094 -
 11.4095 -
 11.4096 -
 11.4097 -
 11.4098 -
 11.4099 -# Check whether --enable-fast-install or --disable-fast-install was given.
 11.4100 -if test "${enable_fast_install+set}" = set; then
 11.4101 -  enableval="$enable_fast_install"
 11.4102 -  p=${PACKAGE-default}
 11.4103 -    case $enableval in
 11.4104 -    yes) enable_fast_install=yes ;;
 11.4105 -    no) enable_fast_install=no ;;
 11.4106 -    *)
 11.4107 -      enable_fast_install=no
 11.4108 -      # Look at the argument we got.  We use all the common list separators.
 11.4109 -      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 11.4110 -      for pkg in $enableval; do
 11.4111 -	IFS="$lt_save_ifs"
 11.4112 -	if test "X$pkg" = "X$p"; then
 11.4113 -	  enable_fast_install=yes
 11.4114 -	fi
 11.4115 -      done
 11.4116 -      IFS="$lt_save_ifs"
 11.4117 -      ;;
 11.4118 -    esac
 11.4119 -else
 11.4120 -  enable_fast_install=yes
 11.4121 -fi;
 11.4122 -
 11.4123 -
 11.4124 -
 11.4125 -
 11.4126 -
 11.4127 -
 11.4128 -
 11.4129 -
 11.4130 -echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5
 11.4131 -echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6
 11.4132 -if test "${lt_cv_path_SED+set}" = set; then
 11.4133 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4134 -else
 11.4135 -  # Loop through the user's path and test for sed and gsed.
 11.4136 -# Then use that list of sed's as ones to test for truncation.
 11.4137 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.4138 -for as_dir in $PATH
 11.4139 -do
 11.4140 -  IFS=$as_save_IFS
 11.4141 -  test -z "$as_dir" && as_dir=.
 11.4142 -  for lt_ac_prog in sed gsed; do
 11.4143 -    for ac_exec_ext in '' $ac_executable_extensions; do
 11.4144 -      if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
 11.4145 -        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
 11.4146 -      fi
 11.4147 -    done
 11.4148 -  done
 11.4149 -done
 11.4150 -IFS=$as_save_IFS
 11.4151 -lt_ac_max=0
 11.4152 -lt_ac_count=0
 11.4153 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris
 11.4154 -# along with /bin/sed that truncates output.
 11.4155 -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
 11.4156 -  test ! -f $lt_ac_sed && continue
 11.4157 -  cat /dev/null > conftest.in
 11.4158 -  lt_ac_count=0
 11.4159 -  echo $ECHO_N "0123456789$ECHO_C" >conftest.in
 11.4160 -  # Check for GNU sed and select it if it is found.
 11.4161 -  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
 11.4162 -    lt_cv_path_SED=$lt_ac_sed
 11.4163 -    break
 11.4164 -  fi
 11.4165 -  while true; do
 11.4166 -    cat conftest.in conftest.in >conftest.tmp
 11.4167 -    mv conftest.tmp conftest.in
 11.4168 -    cp conftest.in conftest.nl
 11.4169 -    echo >>conftest.nl
 11.4170 -    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
 11.4171 -    cmp -s conftest.out conftest.nl || break
 11.4172 -    # 10000 chars as input seems more than enough
 11.4173 -    test $lt_ac_count -gt 10 && break
 11.4174 -    lt_ac_count=`expr $lt_ac_count + 1`
 11.4175 -    if test $lt_ac_count -gt $lt_ac_max; then
 11.4176 -      lt_ac_max=$lt_ac_count
 11.4177 -      lt_cv_path_SED=$lt_ac_sed
 11.4178 -    fi
 11.4179 -  done
 11.4180 -done
 11.4181 -
 11.4182 -fi
 11.4183 -
 11.4184 -SED=$lt_cv_path_SED
 11.4185 -
 11.4186 -echo "$as_me:$LINENO: result: $SED" >&5
 11.4187 -echo "${ECHO_T}$SED" >&6
 11.4188 -
 11.4189 -test -z "$SED" && SED=sed
 11.4190 -Xsed="$SED -e 1s/^X//"
 11.4191 -
 11.4192 -
 11.4193 -
 11.4194 -
 11.4195 -
 11.4196 -
 11.4197 -
 11.4198 -
 11.4199 -
 11.4200 -
 11.4201 -
 11.4202 -echo "$as_me:$LINENO: checking for egrep" >&5
 11.4203 -echo $ECHO_N "checking for egrep... $ECHO_C" >&6
 11.4204 -if test "${ac_cv_prog_egrep+set}" = set; then
 11.4205 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4206 -else
 11.4207 -  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
 11.4208 -    then ac_cv_prog_egrep='grep -E'
 11.4209 -    else ac_cv_prog_egrep='egrep'
 11.4210 -    fi
 11.4211 -fi
 11.4212 -echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
 11.4213 -echo "${ECHO_T}$ac_cv_prog_egrep" >&6
 11.4214 - EGREP=$ac_cv_prog_egrep
 11.4215 -
 11.4216 -
 11.4217 -echo "$as_me:$LINENO: checking for fgrep" >&5
 11.4218 -echo $ECHO_N "checking for fgrep... $ECHO_C" >&6
 11.4219 -if test "${ac_cv_prog_fgrep+set}" = set; then
 11.4220 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4221 -else
 11.4222 -  if echo 'ab*c' | (grep -F 'ab*c') >/dev/null 2>&1
 11.4223 -    then ac_cv_prog_fgrep='grep -F'
 11.4224 -    else ac_cv_prog_fgrep='fgrep'
 11.4225 -    fi
 11.4226 -fi
 11.4227 -echo "$as_me:$LINENO: result: $ac_cv_prog_fgrep" >&5
 11.4228 -echo "${ECHO_T}$ac_cv_prog_fgrep" >&6
 11.4229 - FGREP=$ac_cv_prog_fgrep
 11.4230 -
 11.4231 -
 11.4232 -test -z "$GREP" && GREP=grep
 11.4233 -
 11.4234 -
 11.4235 -
 11.4236 -
 11.4237 -
 11.4238 -
 11.4239 -
 11.4240 -
 11.4241 -
 11.4242 -
 11.4243 -
 11.4244 -
 11.4245 -
 11.4246 -
 11.4247 -
 11.4248 -
 11.4249 -
 11.4250 -
 11.4251 -
 11.4252 -# Check whether --with-gnu-ld or --without-gnu-ld was given.
 11.4253 -if test "${with_gnu_ld+set}" = set; then
 11.4254 -  withval="$with_gnu_ld"
 11.4255 -  test "$withval" = no || with_gnu_ld=yes
 11.4256 -else
 11.4257 -  with_gnu_ld=no
 11.4258 -fi;
 11.4259 -ac_prog=ld
 11.4260 -if test "$GCC" = yes; then
 11.4261 -  # Check if gcc -print-prog-name=ld gives a path.
 11.4262 -  echo "$as_me:$LINENO: checking for ld used by $CC" >&5
 11.4263 -echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6
 11.4264 -  case $host in
 11.4265 -  *-*-mingw*)
 11.4266 -    # gcc leaves a trailing carriage return which upsets mingw
 11.4267 -    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
 11.4268 -  *)
 11.4269 -    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
 11.4270 -  esac
 11.4271 -  case $ac_prog in
 11.4272 -    # Accept absolute paths.
 11.4273 -    [\\/]* | ?:[\\/]*)
 11.4274 -      re_direlt='/[^/][^/]*/\.\./'
 11.4275 -      # Canonicalize the pathname of ld
 11.4276 -      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
 11.4277 -      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
 11.4278 -	ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
 11.4279 -      done
 11.4280 -      test -z "$LD" && LD="$ac_prog"
 11.4281 -      ;;
 11.4282 -  "")
 11.4283 -    # If it fails, then pretend we aren't using GCC.
 11.4284 -    ac_prog=ld
 11.4285 -    ;;
 11.4286 -  *)
 11.4287 -    # If it is relative, then search for the first ld in PATH.
 11.4288 -    with_gnu_ld=unknown
 11.4289 -    ;;
 11.4290 -  esac
 11.4291 -elif test "$with_gnu_ld" = yes; then
 11.4292 -  echo "$as_me:$LINENO: checking for GNU ld" >&5
 11.4293 -echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
 11.4294 -else
 11.4295 -  echo "$as_me:$LINENO: checking for non-GNU ld" >&5
 11.4296 -echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
 11.4297 -fi
 11.4298 -if test "${lt_cv_path_LD+set}" = set; then
 11.4299 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4300 -else
 11.4301 -  if test -z "$LD"; then
 11.4302 -  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 11.4303 -  for ac_dir in $PATH; do
 11.4304 -    IFS="$lt_save_ifs"
 11.4305 -    test -z "$ac_dir" && ac_dir=.
 11.4306 -    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
 11.4307 -      lt_cv_path_LD="$ac_dir/$ac_prog"
 11.4308 -      # Check to see if the program is GNU ld.  I'd rather use --version,
 11.4309 -      # but apparently some variants of GNU ld only accept -v.
 11.4310 -      # Break only if it was the GNU/non-GNU ld that we prefer.
 11.4311 -      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
 11.4312 -      *GNU* | *'with BFD'*)
 11.4313 -	test "$with_gnu_ld" != no && break
 11.4314 -	;;
 11.4315 -      *)
 11.4316 -	test "$with_gnu_ld" != yes && break
 11.4317 -	;;
 11.4318 -      esac
 11.4319 -    fi
 11.4320 -  done
 11.4321 -  IFS="$lt_save_ifs"
 11.4322 -else
 11.4323 -  lt_cv_path_LD="$LD" # Let the user override the test with a path.
 11.4324 -fi
 11.4325 -fi
 11.4326 -
 11.4327 -LD="$lt_cv_path_LD"
 11.4328 -if test -n "$LD"; then
 11.4329 -  echo "$as_me:$LINENO: result: $LD" >&5
 11.4330 -echo "${ECHO_T}$LD" >&6
 11.4331 -else
 11.4332 -  echo "$as_me:$LINENO: result: no" >&5
 11.4333 -echo "${ECHO_T}no" >&6
 11.4334 -fi
 11.4335 -test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
 11.4336 -echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
 11.4337 -   { (exit 1); exit 1; }; }
 11.4338 -echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
 11.4339 -echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
 11.4340 -if test "${lt_cv_prog_gnu_ld+set}" = set; then
 11.4341 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4342 -else
 11.4343 -  # I'd rather use --version here, but apparently some GNU lds only accept -v.
 11.4344 -case `$LD -v 2>&1 </dev/null` in
 11.4345 -*GNU* | *'with BFD'*)
 11.4346 -  lt_cv_prog_gnu_ld=yes
 11.4347 -  ;;
 11.4348 -*)
 11.4349 -  lt_cv_prog_gnu_ld=no
 11.4350 -  ;;
 11.4351 -esac
 11.4352 -fi
 11.4353 -echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
 11.4354 -echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6
 11.4355 -with_gnu_ld=$lt_cv_prog_gnu_ld
 11.4356 -
 11.4357 -
 11.4358 -
 11.4359 -
 11.4360 -
 11.4361 -
 11.4362 -
 11.4363 -
 11.4364 -
 11.4365 -
 11.4366 -echo "$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)" >&5
 11.4367 -echo $ECHO_N "checking for BSD- or MS-compatible name lister (nm)... $ECHO_C" >&6
 11.4368 -if test "${lt_cv_path_NM+set}" = set; then
 11.4369 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4370 -else
 11.4371 -  if test -n "$NM"; then
 11.4372 -  # Let the user override the test.
 11.4373 -  lt_cv_path_NM="$NM"
 11.4374 -else
 11.4375 -  lt_nm_to_check="${ac_tool_prefix}nm"
 11.4376 -  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
 11.4377 -    lt_nm_to_check="$lt_nm_to_check nm"
 11.4378 -  fi
 11.4379 -  for lt_tmp_nm in $lt_nm_to_check; do
 11.4380 -    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 11.4381 -    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
 11.4382 -      IFS="$lt_save_ifs"
 11.4383 -      test -z "$ac_dir" && ac_dir=.
 11.4384 -      tmp_nm="$ac_dir/$lt_tmp_nm"
 11.4385 -      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
 11.4386 -	# Check to see if the nm accepts a BSD-compat flag.
 11.4387 -	# Adding the `sed 1q' prevents false positives on HP-UX, which says:
 11.4388 -	#   nm: unknown option "B" ignored
 11.4389 -	# Tru64's nm complains that /dev/null is an invalid object file
 11.4390 -	case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
 11.4391 -	*/dev/null* | *'Invalid file or object type'*)
 11.4392 -	  lt_cv_path_NM="$tmp_nm -B"
 11.4393 -	  break
 11.4394 -	  ;;
 11.4395 -	*)
 11.4396 -	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
 11.4397 -	  */dev/null*)
 11.4398 -	    lt_cv_path_NM="$tmp_nm -p"
 11.4399 -	    break
 11.4400 -	    ;;
 11.4401 -	  *)
 11.4402 -	    lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
 11.4403 -	    continue # so that we can try to find one that supports BSD flags
 11.4404 -	    ;;
 11.4405 -	  esac
 11.4406 -	  ;;
 11.4407 -	esac
 11.4408 -      fi
 11.4409 -    done
 11.4410 -    IFS="$lt_save_ifs"
 11.4411 -  done
 11.4412 -  : ${lt_cv_path_NM=no}
 11.4413 -fi
 11.4414 -fi
 11.4415 -echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5
 11.4416 -echo "${ECHO_T}$lt_cv_path_NM" >&6
 11.4417 -if test "$lt_cv_path_NM" != "no"; then
 11.4418 -  NM="$lt_cv_path_NM"
 11.4419 -else
 11.4420 -  # Didn't find any BSD compatible name lister, look for dumpbin.
 11.4421 -  if test -n "$ac_tool_prefix"; then
 11.4422 -  for ac_prog in "dumpbin -symbols" "link -dump -symbols"
 11.4423 -  do
 11.4424 -    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 11.4425 -set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 11.4426 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.4427 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.4428 -if test "${ac_cv_prog_DUMPBIN+set}" = set; then
 11.4429 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4430 -else
 11.4431 -  if test -n "$DUMPBIN"; then
 11.4432 -  ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test.
 11.4433 -else
 11.4434 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.4435 -for as_dir in $PATH
 11.4436 -do
 11.4437 -  IFS=$as_save_IFS
 11.4438 -  test -z "$as_dir" && as_dir=.
 11.4439 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.4440 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.4441 -    ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
 11.4442 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.4443 -    break 2
 11.4444 -  fi
 11.4445 -done
 11.4446 -done
 11.4447 -
 11.4448 -fi
 11.4449 -fi
 11.4450 -DUMPBIN=$ac_cv_prog_DUMPBIN
 11.4451 -if test -n "$DUMPBIN"; then
 11.4452 -  echo "$as_me:$LINENO: result: $DUMPBIN" >&5
 11.4453 -echo "${ECHO_T}$DUMPBIN" >&6
 11.4454 -else
 11.4455 -  echo "$as_me:$LINENO: result: no" >&5
 11.4456 -echo "${ECHO_T}no" >&6
 11.4457 -fi
 11.4458 -
 11.4459 -    test -n "$DUMPBIN" && break
 11.4460 -  done
 11.4461 -fi
 11.4462 -if test -z "$DUMPBIN"; then
 11.4463 -  ac_ct_DUMPBIN=$DUMPBIN
 11.4464 -  for ac_prog in "dumpbin -symbols" "link -dump -symbols"
 11.4465 -do
 11.4466 -  # Extract the first word of "$ac_prog", so it can be a program name with args.
 11.4467 -set dummy $ac_prog; ac_word=$2
 11.4468 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.4469 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.4470 -if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then
 11.4471 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4472 -else
 11.4473 -  if test -n "$ac_ct_DUMPBIN"; then
 11.4474 -  ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test.
 11.4475 -else
 11.4476 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.4477 -for as_dir in $PATH
 11.4478 -do
 11.4479 -  IFS=$as_save_IFS
 11.4480 -  test -z "$as_dir" && as_dir=.
 11.4481 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.4482 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.4483 -    ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
 11.4484 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.4485 -    break 2
 11.4486 -  fi
 11.4487 -done
 11.4488 -done
 11.4489 -
 11.4490 -fi
 11.4491 -fi
 11.4492 -ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN
 11.4493 -if test -n "$ac_ct_DUMPBIN"; then
 11.4494 -  echo "$as_me:$LINENO: result: $ac_ct_DUMPBIN" >&5
 11.4495 -echo "${ECHO_T}$ac_ct_DUMPBIN" >&6
 11.4496 -else
 11.4497 -  echo "$as_me:$LINENO: result: no" >&5
 11.4498 -echo "${ECHO_T}no" >&6
 11.4499 -fi
 11.4500 -
 11.4501 -  test -n "$ac_ct_DUMPBIN" && break
 11.4502 -done
 11.4503 -test -n "$ac_ct_DUMPBIN" || ac_ct_DUMPBIN=":"
 11.4504 -
 11.4505 -  DUMPBIN=$ac_ct_DUMPBIN
 11.4506 -fi
 11.4507 -
 11.4508 -
 11.4509 -  if test "$DUMPBIN" != ":"; then
 11.4510 -    NM="$DUMPBIN"
 11.4511 -  fi
 11.4512 -fi
 11.4513 -test -z "$NM" && NM=nm
 11.4514 -
 11.4515 -
 11.4516 -
 11.4517 -
 11.4518 -
 11.4519 -
 11.4520 -echo "$as_me:$LINENO: checking the name lister ($NM) interface" >&5
 11.4521 -echo $ECHO_N "checking the name lister ($NM) interface... $ECHO_C" >&6
 11.4522 -if test "${lt_cv_nm_interface+set}" = set; then
 11.4523 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4524 -else
 11.4525 -  lt_cv_nm_interface="BSD nm"
 11.4526 -  echo "int some_variable = 0;" > conftest.$ac_ext
 11.4527 -  (eval echo "\"\$as_me:4524: $ac_compile\"" >&5)
 11.4528 -  (eval "$ac_compile" 2>conftest.err)
 11.4529 -  cat conftest.err >&5
 11.4530 -  (eval echo "\"\$as_me:4527: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
 11.4531 -  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
 11.4532 -  cat conftest.err >&5
 11.4533 -  (eval echo "\"\$as_me:4530: output\"" >&5)
 11.4534 -  cat conftest.out >&5
 11.4535 -  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
 11.4536 -    lt_cv_nm_interface="MS dumpbin"
 11.4537 -  fi
 11.4538 -  rm -f conftest*
 11.4539 -fi
 11.4540 -echo "$as_me:$LINENO: result: $lt_cv_nm_interface" >&5
 11.4541 -echo "${ECHO_T}$lt_cv_nm_interface" >&6
 11.4542 -
 11.4543 -echo "$as_me:$LINENO: checking whether ln -s works" >&5
 11.4544 -echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
 11.4545 -LN_S=$as_ln_s
 11.4546 -if test "$LN_S" = "ln -s"; then
 11.4547 -  echo "$as_me:$LINENO: result: yes" >&5
 11.4548 -echo "${ECHO_T}yes" >&6
 11.4549 -else
 11.4550 -  echo "$as_me:$LINENO: result: no, using $LN_S" >&5
 11.4551 -echo "${ECHO_T}no, using $LN_S" >&6
 11.4552 -fi
 11.4553 -
 11.4554 -# find the maximum length of command line arguments
 11.4555 -echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
 11.4556 -echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6
 11.4557 -if test "${lt_cv_sys_max_cmd_len+set}" = set; then
 11.4558 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4559 -else
 11.4560 -    i=0
 11.4561 -  teststring="ABCD"
 11.4562 -
 11.4563 -  case $build_os in
 11.4564 -  msdosdjgpp*)
 11.4565 -    # On DJGPP, this test can blow up pretty badly due to problems in libc
 11.4566 -    # (any single argument exceeding 2000 bytes causes a buffer overrun
 11.4567 -    # during glob expansion).  Even if it were fixed, the result of this
 11.4568 -    # check would be larger than it should be.
 11.4569 -    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
 11.4570 -    ;;
 11.4571 -
 11.4572 -  gnu*)
 11.4573 -    # Under GNU Hurd, this test is not required because there is
 11.4574 -    # no limit to the length of command line arguments.
 11.4575 -    # Libtool will interpret -1 as no limit whatsoever
 11.4576 -    lt_cv_sys_max_cmd_len=-1;
 11.4577 -    ;;
 11.4578 -
 11.4579 -  cygwin* | mingw*)
 11.4580 -    # On Win9x/ME, this test blows up -- it succeeds, but takes
 11.4581 -    # about 5 minutes as the teststring grows exponentially.
 11.4582 -    # Worse, since 9x/ME are not pre-emptively multitasking,
 11.4583 -    # you end up with a "frozen" computer, even though with patience
 11.4584 -    # the test eventually succeeds (with a max line length of 256k).
 11.4585 -    # Instead, let's just punt: use the minimum linelength reported by
 11.4586 -    # all of the supported platforms: 8192 (on NT/2K/XP).
 11.4587 -    lt_cv_sys_max_cmd_len=8192;
 11.4588 -    ;;
 11.4589 -
 11.4590 -  amigaos*)
 11.4591 -    # On AmigaOS with pdksh, this test takes hours, literally.
 11.4592 -    # So we just punt and use a minimum line length of 8192.
 11.4593 -    lt_cv_sys_max_cmd_len=8192;
 11.4594 -    ;;
 11.4595 -
 11.4596 -  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
 11.4597 -    # This has been around since 386BSD, at least.  Likely further.
 11.4598 -    if test -x /sbin/sysctl; then
 11.4599 -      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
 11.4600 -    elif test -x /usr/sbin/sysctl; then
 11.4601 -      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
 11.4602 -    else
 11.4603 -      lt_cv_sys_max_cmd_len=65536	# usable default for all BSDs
 11.4604 -    fi
 11.4605 -    # And add a safety zone
 11.4606 -    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
 11.4607 -    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
 11.4608 -    ;;
 11.4609 -
 11.4610 -  interix*)
 11.4611 -    # We know the value 262144 and hardcode it with a safety zone (like BSD)
 11.4612 -    lt_cv_sys_max_cmd_len=196608
 11.4613 -    ;;
 11.4614 -
 11.4615 -  osf*)
 11.4616 -    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
 11.4617 -    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
 11.4618 -    # nice to cause kernel panics so lets avoid the loop below.
 11.4619 -    # First set a reasonable default.
 11.4620 -    lt_cv_sys_max_cmd_len=16384
 11.4621 -    #
 11.4622 -    if test -x /sbin/sysconfig; then
 11.4623 -      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
 11.4624 -        *1*) lt_cv_sys_max_cmd_len=-1 ;;
 11.4625 -      esac
 11.4626 -    fi
 11.4627 -    ;;
 11.4628 -  sco3.2v5*)
 11.4629 -    lt_cv_sys_max_cmd_len=102400
 11.4630 -    ;;
 11.4631 -  sysv5* | sco5v6* | sysv4.2uw2*)
 11.4632 -    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
 11.4633 -    if test -n "$kargmax"; then
 11.4634 -      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[	 ]//'`
 11.4635 -    else
 11.4636 -      lt_cv_sys_max_cmd_len=32768
 11.4637 -    fi
 11.4638 -    ;;
 11.4639 -  *)
 11.4640 -    lt_cv_sys_max_cmd_len=`getconf ARG_MAX 2> /dev/null`
 11.4641 -    if test -n $lt_cv_sys_max_cmd_len; then
 11.4642 -      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
 11.4643 -      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
 11.4644 -    else
 11.4645 -      # Make teststring a little bigger before we do anything with it.
 11.4646 -      # a 1K string should be a reasonable start.
 11.4647 -      for i in 1 2 3 4 5 6 7 8 ; do
 11.4648 -        teststring=$teststring$teststring
 11.4649 -      done
 11.4650 -      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
 11.4651 -      # If test is not a shell built-in, we'll probably end up computing a
 11.4652 -      # maximum length that is only half of the actual maximum length, but
 11.4653 -      # we can't tell.
 11.4654 -      while { test "X"`$SHELL $0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \
 11.4655 -	         = "XX$teststring$teststring"; } >/dev/null 2>&1 &&
 11.4656 -	      test $i != 17 # 1/2 MB should be enough
 11.4657 -      do
 11.4658 -        i=`expr $i + 1`
 11.4659 -        teststring=$teststring$teststring
 11.4660 -      done
 11.4661 -      # Only check the string length outside the loop.
 11.4662 -      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
 11.4663 -      teststring=
 11.4664 -      # Add a significant safety factor because C++ compilers can tack on
 11.4665 -      # massive amounts of additional arguments before passing them to the
 11.4666 -      # linker.  It appears as though 1/2 is a usable value.
 11.4667 -      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
 11.4668 -    fi
 11.4669 -    ;;
 11.4670 -  esac
 11.4671 -
 11.4672 -fi
 11.4673 -
 11.4674 -if test -n $lt_cv_sys_max_cmd_len ; then
 11.4675 -  echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
 11.4676 -echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6
 11.4677 -else
 11.4678 -  echo "$as_me:$LINENO: result: none" >&5
 11.4679 -echo "${ECHO_T}none" >&6
 11.4680 -fi
 11.4681 -max_cmd_len=$lt_cv_sys_max_cmd_len
 11.4682 -
 11.4683 -
 11.4684 -
 11.4685 -
 11.4686 -
 11.4687 -
 11.4688 -
 11.4689 -: ${CP="cp -f"}
 11.4690 -: ${MV="mv -f"}
 11.4691 -: ${RM="rm -f"}
 11.4692 -
 11.4693 -echo "$as_me:$LINENO: checking whether the shell understands some XSI constructs" >&5
 11.4694 -echo $ECHO_N "checking whether the shell understands some XSI constructs... $ECHO_C" >&6
 11.4695 -# Try some XSI features
 11.4696 -xsi_shell=no
 11.4697 -( _lt_dummy="a/b/c"
 11.4698 -  test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \
 11.4699 -      = c,a/b,, ) >/dev/null 2>&1 \
 11.4700 -  && xsi_shell=yes
 11.4701 -echo "$as_me:$LINENO: result: $xsi_shell" >&5
 11.4702 -echo "${ECHO_T}$xsi_shell" >&6
 11.4703 -
 11.4704 -
 11.4705 -echo "$as_me:$LINENO: checking whether the shell understands \"+=\"" >&5
 11.4706 -echo $ECHO_N "checking whether the shell understands \"+=\"... $ECHO_C" >&6
 11.4707 -lt_shell_append=no
 11.4708 -( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \
 11.4709 -    >/dev/null 2>&1 \
 11.4710 -  && lt_shell_append=yes
 11.4711 -echo "$as_me:$LINENO: result: $lt_shell_append" >&5
 11.4712 -echo "${ECHO_T}$lt_shell_append" >&6
 11.4713 -
 11.4714 -
 11.4715 -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 11.4716 -  lt_unset=unset
 11.4717 -else
 11.4718 -  lt_unset=false
 11.4719 -fi
 11.4720 -
 11.4721 -
 11.4722 -
 11.4723 -
 11.4724 -
 11.4725 -# test EBCDIC or ASCII
 11.4726 -case `echo X|tr X '\101'` in
 11.4727 - A) # ASCII based system
 11.4728 -    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
 11.4729 -  lt_SP2NL='tr \040 \012'
 11.4730 -  lt_NL2SP='tr \015\012 \040\040'
 11.4731 -  ;;
 11.4732 - *) # EBCDIC based system
 11.4733 -  lt_SP2NL='tr \100 \n'
 11.4734 -  lt_NL2SP='tr \r\n \100\100'
 11.4735 -  ;;
 11.4736 -esac
 11.4737 -
 11.4738 -
 11.4739 -
 11.4740 -
 11.4741 -
 11.4742 -
 11.4743 -
 11.4744 -
 11.4745 -
 11.4746 -echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
 11.4747 -echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6
 11.4748 -if test "${lt_cv_ld_reload_flag+set}" = set; then
 11.4749 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4750 -else
 11.4751 -  lt_cv_ld_reload_flag='-r'
 11.4752 -fi
 11.4753 -echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
 11.4754 -echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6
 11.4755 -reload_flag=$lt_cv_ld_reload_flag
 11.4756 -case $reload_flag in
 11.4757 -"" | " "*) ;;
 11.4758 -*) reload_flag=" $reload_flag" ;;
 11.4759 -esac
 11.4760 -reload_cmds='$LD$reload_flag -o $output$reload_objs'
 11.4761 -case $host_os in
 11.4762 -  darwin*)
 11.4763 -    if test "$GCC" = yes; then
 11.4764 -      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
 11.4765 -    else
 11.4766 -      reload_cmds='$LD$reload_flag -o $output$reload_objs'
 11.4767 -    fi
 11.4768 -    ;;
 11.4769 -esac
 11.4770 -
 11.4771 -
 11.4772 -
 11.4773 -
 11.4774 -
 11.4775 -
 11.4776 -
 11.4777 -
 11.4778 -
 11.4779 -
 11.4780 -echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5
 11.4781 -echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6
 11.4782 -if test "${lt_cv_deplibs_check_method+set}" = set; then
 11.4783 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4784 -else
 11.4785 -  lt_cv_file_magic_cmd='$MAGIC_CMD'
 11.4786 -lt_cv_file_magic_test_file=
 11.4787 -lt_cv_deplibs_check_method='unknown'
 11.4788 -# Need to set the preceding variable on all platforms that support
 11.4789 -# interlibrary dependencies.
 11.4790 -# 'none' -- dependencies not supported.
 11.4791 -# `unknown' -- same as none, but documents that we really don't know.
 11.4792 -# 'pass_all' -- all dependencies passed with no checks.
 11.4793 -# 'test_compile' -- check by making test program.
 11.4794 -# 'file_magic [[regex]]' -- check by looking for files in library path
 11.4795 -# which responds to the $file_magic_cmd with a given extended regex.
 11.4796 -# If you have `file' or equivalent on your system and you're not sure
 11.4797 -# whether `pass_all' will *always* work, you probably want this one.
 11.4798 -
 11.4799 -case $host_os in
 11.4800 -aix[4-9]*)
 11.4801 -  lt_cv_deplibs_check_method=pass_all
 11.4802 -  ;;
 11.4803 -
 11.4804 -beos*)
 11.4805 -  lt_cv_deplibs_check_method=pass_all
 11.4806 -  ;;
 11.4807 -
 11.4808 -bsdi[45]*)
 11.4809 -  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
 11.4810 -  lt_cv_file_magic_cmd='/usr/bin/file -L'
 11.4811 -  lt_cv_file_magic_test_file=/shlib/libc.so
 11.4812 -  ;;
 11.4813 -
 11.4814 -cygwin*)
 11.4815 -  # func_win32_libid is a shell function defined in ltmain.sh
 11.4816 -  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 11.4817 -  lt_cv_file_magic_cmd='func_win32_libid'
 11.4818 -  ;;
 11.4819 -
 11.4820 -mingw* | pw32*)
 11.4821 -  # Base MSYS/MinGW do not provide the 'file' command needed by
 11.4822 -  # func_win32_libid shell function, so use a weaker test based on 'objdump',
 11.4823 -  # unless we find 'file', for example because we are cross-compiling.
 11.4824 -  if ( file / ) >/dev/null 2>&1; then
 11.4825 -    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 11.4826 -    lt_cv_file_magic_cmd='func_win32_libid'
 11.4827 -  else
 11.4828 -    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
 11.4829 -    lt_cv_file_magic_cmd='$OBJDUMP -f'
 11.4830 -  fi
 11.4831 -  ;;
 11.4832 -
 11.4833 -darwin* | rhapsody*)
 11.4834 -  lt_cv_deplibs_check_method=pass_all
 11.4835 -  ;;
 11.4836 -
 11.4837 -freebsd* | dragonfly*)
 11.4838 -  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
 11.4839 -    case $host_cpu in
 11.4840 -    i*86 )
 11.4841 -      # Not sure whether the presence of OpenBSD here was a mistake.
 11.4842 -      # Let's accept both of them until this is cleared up.
 11.4843 -      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'
 11.4844 -      lt_cv_file_magic_cmd=/usr/bin/file
 11.4845 -      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
 11.4846 -      ;;
 11.4847 -    esac
 11.4848 -  else
 11.4849 -    lt_cv_deplibs_check_method=pass_all
 11.4850 -  fi
 11.4851 -  ;;
 11.4852 -
 11.4853 -gnu*)
 11.4854 -  lt_cv_deplibs_check_method=pass_all
 11.4855 -  ;;
 11.4856 -
 11.4857 -hpux10.20* | hpux11*)
 11.4858 -  lt_cv_file_magic_cmd=/usr/bin/file
 11.4859 -  case $host_cpu in
 11.4860 -  ia64*)
 11.4861 -    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
 11.4862 -    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
 11.4863 -    ;;
 11.4864 -  hppa*64*)
 11.4865 -    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'
 11.4866 -    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
 11.4867 -    ;;
 11.4868 -  *)
 11.4869 -    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
 11.4870 -    lt_cv_file_magic_test_file=/usr/lib/libc.sl
 11.4871 -    ;;
 11.4872 -  esac
 11.4873 -  ;;
 11.4874 -
 11.4875 -interix[3-9]*)
 11.4876 -  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
 11.4877 -  lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$'
 11.4878 -  ;;
 11.4879 -
 11.4880 -irix5* | irix6* | nonstopux*)
 11.4881 -  case $LD in
 11.4882 -  *-32|*"-32 ") libmagic=32-bit;;
 11.4883 -  *-n32|*"-n32 ") libmagic=N32;;
 11.4884 -  *-64|*"-64 ") libmagic=64-bit;;
 11.4885 -  *) libmagic=never-match;;
 11.4886 -  esac
 11.4887 -  lt_cv_deplibs_check_method=pass_all
 11.4888 -  ;;
 11.4889 -
 11.4890 -# This must be Linux ELF.
 11.4891 -linux* | k*bsd*-gnu)
 11.4892 -  lt_cv_deplibs_check_method=pass_all
 11.4893 -  ;;
 11.4894 -
 11.4895 -netbsd*)
 11.4896 -  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
 11.4897 -    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
 11.4898 -  else
 11.4899 -    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$'
 11.4900 -  fi
 11.4901 -  ;;
 11.4902 -
 11.4903 -newos6*)
 11.4904 -  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
 11.4905 -  lt_cv_file_magic_cmd=/usr/bin/file
 11.4906 -  lt_cv_file_magic_test_file=/usr/lib/libnls.so
 11.4907 -  ;;
 11.4908 -
 11.4909 -*nto* | *qnx*)
 11.4910 -  lt_cv_deplibs_check_method=pass_all
 11.4911 -  ;;
 11.4912 -
 11.4913 -openbsd*)
 11.4914 -  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 11.4915 -    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
 11.4916 -  else
 11.4917 -    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
 11.4918 -  fi
 11.4919 -  ;;
 11.4920 -
 11.4921 -osf3* | osf4* | osf5*)
 11.4922 -  lt_cv_deplibs_check_method=pass_all
 11.4923 -  ;;
 11.4924 -
 11.4925 -rdos*)
 11.4926 -  lt_cv_deplibs_check_method=pass_all
 11.4927 -  ;;
 11.4928 -
 11.4929 -solaris*)
 11.4930 -  lt_cv_deplibs_check_method=pass_all
 11.4931 -  ;;
 11.4932 -
 11.4933 -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 11.4934 -  lt_cv_deplibs_check_method=pass_all
 11.4935 -  ;;
 11.4936 -
 11.4937 -sysv4 | sysv4.3*)
 11.4938 -  case $host_vendor in
 11.4939 -  motorola)
 11.4940 -    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'
 11.4941 -    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
 11.4942 -    ;;
 11.4943 -  ncr)
 11.4944 -    lt_cv_deplibs_check_method=pass_all
 11.4945 -    ;;
 11.4946 -  sequent)
 11.4947 -    lt_cv_file_magic_cmd='/bin/file'
 11.4948 -    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'
 11.4949 -    ;;
 11.4950 -  sni)
 11.4951 -    lt_cv_file_magic_cmd='/bin/file'
 11.4952 -    lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib"
 11.4953 -    lt_cv_file_magic_test_file=/lib/libc.so
 11.4954 -    ;;
 11.4955 -  siemens)
 11.4956 -    lt_cv_deplibs_check_method=pass_all
 11.4957 -    ;;
 11.4958 -  pc)
 11.4959 -    lt_cv_deplibs_check_method=pass_all
 11.4960 -    ;;
 11.4961 -  esac
 11.4962 -  ;;
 11.4963 -
 11.4964 -tpf*)
 11.4965 -  lt_cv_deplibs_check_method=pass_all
 11.4966 -  ;;
 11.4967 -esac
 11.4968 -
 11.4969 -fi
 11.4970 -echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
 11.4971 -echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6
 11.4972 -file_magic_cmd=$lt_cv_file_magic_cmd
 11.4973 -deplibs_check_method=$lt_cv_deplibs_check_method
 11.4974 -test -z "$deplibs_check_method" && deplibs_check_method=unknown
 11.4975 -
 11.4976 -
 11.4977 -
 11.4978 -
 11.4979 -
 11.4980 -
 11.4981 -
 11.4982 -
 11.4983 -
 11.4984 -
 11.4985 -
 11.4986 -
 11.4987 -if test -n "$ac_tool_prefix"; then
 11.4988 -  # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
 11.4989 -set dummy ${ac_tool_prefix}ar; ac_word=$2
 11.4990 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.4991 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.4992 -if test "${ac_cv_prog_AR+set}" = set; then
 11.4993 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.4994 -else
 11.4995 -  if test -n "$AR"; then
 11.4996 -  ac_cv_prog_AR="$AR" # Let the user override the test.
 11.4997 -else
 11.4998 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.4999 -for as_dir in $PATH
 11.5000 -do
 11.5001 -  IFS=$as_save_IFS
 11.5002 -  test -z "$as_dir" && as_dir=.
 11.5003 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.5004 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.5005 -    ac_cv_prog_AR="${ac_tool_prefix}ar"
 11.5006 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.5007 -    break 2
 11.5008 -  fi
 11.5009 -done
 11.5010 -done
 11.5011 -
 11.5012 -fi
 11.5013 -fi
 11.5014 -AR=$ac_cv_prog_AR
 11.5015 -if test -n "$AR"; then
 11.5016 -  echo "$as_me:$LINENO: result: $AR" >&5
 11.5017 -echo "${ECHO_T}$AR" >&6
 11.5018 -else
 11.5019 -  echo "$as_me:$LINENO: result: no" >&5
 11.5020 -echo "${ECHO_T}no" >&6
 11.5021 -fi
 11.5022 -
 11.5023 -fi
 11.5024 -if test -z "$ac_cv_prog_AR"; then
 11.5025 -  ac_ct_AR=$AR
 11.5026 -  # Extract the first word of "ar", so it can be a program name with args.
 11.5027 -set dummy ar; ac_word=$2
 11.5028 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.5029 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.5030 -if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
 11.5031 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5032 -else
 11.5033 -  if test -n "$ac_ct_AR"; then
 11.5034 -  ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
 11.5035 -else
 11.5036 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.5037 -for as_dir in $PATH
 11.5038 -do
 11.5039 -  IFS=$as_save_IFS
 11.5040 -  test -z "$as_dir" && as_dir=.
 11.5041 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.5042 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.5043 -    ac_cv_prog_ac_ct_AR="ar"
 11.5044 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.5045 -    break 2
 11.5046 -  fi
 11.5047 -done
 11.5048 -done
 11.5049 -
 11.5050 -  test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="false"
 11.5051 -fi
 11.5052 -fi
 11.5053 -ac_ct_AR=$ac_cv_prog_ac_ct_AR
 11.5054 -if test -n "$ac_ct_AR"; then
 11.5055 -  echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
 11.5056 -echo "${ECHO_T}$ac_ct_AR" >&6
 11.5057 -else
 11.5058 -  echo "$as_me:$LINENO: result: no" >&5
 11.5059 -echo "${ECHO_T}no" >&6
 11.5060 -fi
 11.5061 -
 11.5062 -  AR=$ac_ct_AR
 11.5063 -else
 11.5064 -  AR="$ac_cv_prog_AR"
 11.5065 -fi
 11.5066 -
 11.5067 -test -z "$AR" && AR=ar
 11.5068 -test -z "$AR_FLAGS" && AR_FLAGS=cru
 11.5069 -
 11.5070 -
 11.5071 -
 11.5072 -
 11.5073 -
 11.5074 -
 11.5075 -
 11.5076 -
 11.5077 -
 11.5078 -
 11.5079 -
 11.5080 -if test -n "$ac_tool_prefix"; then
 11.5081 -  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 11.5082 -set dummy ${ac_tool_prefix}strip; ac_word=$2
 11.5083 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.5084 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.5085 -if test "${ac_cv_prog_STRIP+set}" = set; then
 11.5086 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5087 -else
 11.5088 -  if test -n "$STRIP"; then
 11.5089 -  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
 11.5090 -else
 11.5091 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.5092 -for as_dir in $PATH
 11.5093 -do
 11.5094 -  IFS=$as_save_IFS
 11.5095 -  test -z "$as_dir" && as_dir=.
 11.5096 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.5097 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.5098 -    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 11.5099 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.5100 -    break 2
 11.5101 -  fi
 11.5102 -done
 11.5103 -done
 11.5104 -
 11.5105 -fi
 11.5106 -fi
 11.5107 -STRIP=$ac_cv_prog_STRIP
 11.5108 -if test -n "$STRIP"; then
 11.5109 -  echo "$as_me:$LINENO: result: $STRIP" >&5
 11.5110 -echo "${ECHO_T}$STRIP" >&6
 11.5111 -else
 11.5112 -  echo "$as_me:$LINENO: result: no" >&5
 11.5113 -echo "${ECHO_T}no" >&6
 11.5114 -fi
 11.5115 -
 11.5116 -fi
 11.5117 -if test -z "$ac_cv_prog_STRIP"; then
 11.5118 -  ac_ct_STRIP=$STRIP
 11.5119 -  # Extract the first word of "strip", so it can be a program name with args.
 11.5120 -set dummy strip; ac_word=$2
 11.5121 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.5122 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.5123 -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
 11.5124 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5125 -else
 11.5126 -  if test -n "$ac_ct_STRIP"; then
 11.5127 -  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
 11.5128 -else
 11.5129 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.5130 -for as_dir in $PATH
 11.5131 -do
 11.5132 -  IFS=$as_save_IFS
 11.5133 -  test -z "$as_dir" && as_dir=.
 11.5134 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.5135 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.5136 -    ac_cv_prog_ac_ct_STRIP="strip"
 11.5137 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.5138 -    break 2
 11.5139 -  fi
 11.5140 -done
 11.5141 -done
 11.5142 -
 11.5143 -  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
 11.5144 -fi
 11.5145 -fi
 11.5146 -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
 11.5147 -if test -n "$ac_ct_STRIP"; then
 11.5148 -  echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 11.5149 -echo "${ECHO_T}$ac_ct_STRIP" >&6
 11.5150 -else
 11.5151 -  echo "$as_me:$LINENO: result: no" >&5
 11.5152 -echo "${ECHO_T}no" >&6
 11.5153 -fi
 11.5154 -
 11.5155 -  STRIP=$ac_ct_STRIP
 11.5156 -else
 11.5157 -  STRIP="$ac_cv_prog_STRIP"
 11.5158 -fi
 11.5159 -
 11.5160 -test -z "$STRIP" && STRIP=:
 11.5161 -
 11.5162 -
 11.5163 -
 11.5164 -
 11.5165 -
 11.5166 -
 11.5167 -if test -n "$ac_tool_prefix"; then
 11.5168 -  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 11.5169 -set dummy ${ac_tool_prefix}ranlib; ac_word=$2
 11.5170 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.5171 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.5172 -if test "${ac_cv_prog_RANLIB+set}" = set; then
 11.5173 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5174 -else
 11.5175 -  if test -n "$RANLIB"; then
 11.5176 -  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
 11.5177 -else
 11.5178 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.5179 -for as_dir in $PATH
 11.5180 -do
 11.5181 -  IFS=$as_save_IFS
 11.5182 -  test -z "$as_dir" && as_dir=.
 11.5183 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.5184 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.5185 -    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
 11.5186 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.5187 -    break 2
 11.5188 -  fi
 11.5189 -done
 11.5190 -done
 11.5191 -
 11.5192 -fi
 11.5193 -fi
 11.5194 -RANLIB=$ac_cv_prog_RANLIB
 11.5195 -if test -n "$RANLIB"; then
 11.5196 -  echo "$as_me:$LINENO: result: $RANLIB" >&5
 11.5197 -echo "${ECHO_T}$RANLIB" >&6
 11.5198 -else
 11.5199 -  echo "$as_me:$LINENO: result: no" >&5
 11.5200 -echo "${ECHO_T}no" >&6
 11.5201 -fi
 11.5202 -
 11.5203 -fi
 11.5204 -if test -z "$ac_cv_prog_RANLIB"; then
 11.5205 -  ac_ct_RANLIB=$RANLIB
 11.5206 -  # Extract the first word of "ranlib", so it can be a program name with args.
 11.5207 -set dummy ranlib; ac_word=$2
 11.5208 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 11.5209 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 11.5210 -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
 11.5211 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5212 -else
 11.5213 -  if test -n "$ac_ct_RANLIB"; then
 11.5214 -  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
 11.5215 -else
 11.5216 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 11.5217 -for as_dir in $PATH
 11.5218 -do
 11.5219 -  IFS=$as_save_IFS
 11.5220 -  test -z "$as_dir" && as_dir=.
 11.5221 -  for ac_exec_ext in '' $ac_executable_extensions; do
 11.5222 -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 11.5223 -    ac_cv_prog_ac_ct_RANLIB="ranlib"
 11.5224 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 11.5225 -    break 2
 11.5226 -  fi
 11.5227 -done
 11.5228 -done
 11.5229 -
 11.5230 -  test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
 11.5231 -fi
 11.5232 -fi
 11.5233 -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 11.5234 -if test -n "$ac_ct_RANLIB"; then
 11.5235 -  echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
 11.5236 -echo "${ECHO_T}$ac_ct_RANLIB" >&6
 11.5237 -else
 11.5238 -  echo "$as_me:$LINENO: result: no" >&5
 11.5239 -echo "${ECHO_T}no" >&6
 11.5240 -fi
 11.5241 -
 11.5242 -  RANLIB=$ac_ct_RANLIB
 11.5243 -else
 11.5244 -  RANLIB="$ac_cv_prog_RANLIB"
 11.5245 -fi
 11.5246 -
 11.5247 -test -z "$RANLIB" && RANLIB=:
 11.5248 -
 11.5249 -
 11.5250 -
 11.5251 -
 11.5252 -
 11.5253 -
 11.5254 -# Determine commands to create old-style static archives.
 11.5255 -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
 11.5256 -old_postinstall_cmds='chmod 644 $oldlib'
 11.5257 -old_postuninstall_cmds=
 11.5258 -
 11.5259 -if test -n "$RANLIB"; then
 11.5260 -  case $host_os in
 11.5261 -  openbsd*)
 11.5262 -    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
 11.5263 -    ;;
 11.5264 -  *)
 11.5265 -    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
 11.5266 -    ;;
 11.5267 -  esac
 11.5268 -  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
 11.5269 -fi
 11.5270 -
 11.5271 -
 11.5272 -
 11.5273 -
 11.5274 -
 11.5275 -
 11.5276 -
 11.5277 -
 11.5278 -
 11.5279 -
 11.5280 -
 11.5281 -
 11.5282 -
 11.5283 -
 11.5284 -
 11.5285 -
 11.5286 -
 11.5287 -
 11.5288 -
 11.5289 -
 11.5290 -
 11.5291 -
 11.5292 -
 11.5293 -
 11.5294 -
 11.5295 -
 11.5296 -
 11.5297 -
 11.5298 -
 11.5299 -
 11.5300 -
 11.5301 -
 11.5302 -
 11.5303 -
 11.5304 -# If no C compiler was specified, use CC.
 11.5305 -LTCC=${LTCC-"$CC"}
 11.5306 -
 11.5307 -# If no C compiler flags were specified, use CFLAGS.
 11.5308 -LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 11.5309 -
 11.5310 -# Allow CC to be a program name with arguments.
 11.5311 -compiler=$CC
 11.5312 -
 11.5313 -
 11.5314 -# Check for command to grab the raw symbol name followed by C symbol from nm.
 11.5315 -echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
 11.5316 -echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6
 11.5317 -if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
 11.5318 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5319 -else
 11.5320 -
 11.5321 -# These are sane defaults that work on at least a few old systems.
 11.5322 -# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
 11.5323 -
 11.5324 -# Character class describing NM global symbol codes.
 11.5325 -symcode='[BCDEGRST]'
 11.5326 -
 11.5327 -# Regexp to match symbols that can be accessed directly from C.
 11.5328 -sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
 11.5329 -
 11.5330 -# Define system-specific variables.
 11.5331 -case $host_os in
 11.5332 -aix*)
 11.5333 -  symcode='[BCDT]'
 11.5334 -  ;;
 11.5335 -cygwin* | mingw* | pw32*)
 11.5336 -  symcode='[ABCDGISTW]'
 11.5337 -  ;;
 11.5338 -hpux*)
 11.5339 -  if test "$host_cpu" = ia64; then
 11.5340 -    symcode='[ABCDEGRST]'
 11.5341 -  fi
 11.5342 -  ;;
 11.5343 -irix* | nonstopux*)
 11.5344 -  symcode='[BCDEGRST]'
 11.5345 -  ;;
 11.5346 -osf*)
 11.5347 -  symcode='[BCDEGQRST]'
 11.5348 -  ;;
 11.5349 -solaris*)
 11.5350 -  symcode='[BDRT]'
 11.5351 -  ;;
 11.5352 -sco3.2v5*)
 11.5353 -  symcode='[DT]'
 11.5354 -  ;;
 11.5355 -sysv4.2uw2*)
 11.5356 -  symcode='[DT]'
 11.5357 -  ;;
 11.5358 -sysv5* | sco5v6* | unixware* | OpenUNIX*)
 11.5359 -  symcode='[ABDT]'
 11.5360 -  ;;
 11.5361 -sysv4)
 11.5362 -  symcode='[DFNSTU]'
 11.5363 -  ;;
 11.5364 -esac
 11.5365 -
 11.5366 -# If we're using GNU nm, then use its standard symbol codes.
 11.5367 -case `$NM -V 2>&1` in
 11.5368 -*GNU* | *'with BFD'*)
 11.5369 -  symcode='[ABCDGIRSTW]' ;;
 11.5370 -esac
 11.5371 -
 11.5372 -# Transform an extracted symbol line into a proper C declaration.
 11.5373 -# Some systems (esp. on ia64) link data and code symbols differently,
 11.5374 -# so use this general approach.
 11.5375 -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 11.5376 -
 11.5377 -# Transform an extracted symbol line into symbol name and symbol address
 11.5378 -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/  {\"\2\", (void *) \&\2},/p'"
 11.5379 -
 11.5380 -# Handle CRLF in mingw tool chain
 11.5381 -opt_cr=
 11.5382 -case $build_os in
 11.5383 -mingw*)
 11.5384 -  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
 11.5385 -  ;;
 11.5386 -esac
 11.5387 -
 11.5388 -# Try without a prefix underscore, then with it.
 11.5389 -for ac_symprfx in "" "_"; do
 11.5390 -
 11.5391 -  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
 11.5392 -  symxfrm="\\1 $ac_symprfx\\2 \\2"
 11.5393 -
 11.5394 -  # Write the raw and C identifiers.
 11.5395 -  if test "$lt_cv_nm_interface" = "MS dumpbin"; then
 11.5396 -    # Fake it for dumpbin and say T for any non-static function
 11.5397 -    # and D for any global variable.
 11.5398 -    # Also find C++ and __fastcall symbols from MSVC++,
 11.5399 -    # which start with @ or ?.
 11.5400 -    lt_cv_sys_global_symbol_pipe="$AWK '"\
 11.5401 -"     {last_section=section; section=\$ 3};"\
 11.5402 -"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
 11.5403 -"     \$ 0!~/External *\|/{next};"\
 11.5404 -"     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
 11.5405 -"     {if(hide[section]) next};"\
 11.5406 -"     {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
 11.5407 -"     {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
 11.5408 -"     s[1]~/^[@?]/{print s[1], s[1]; next};"\
 11.5409 -"     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
 11.5410 -"     ' prfx=^$ac_symprfx"
 11.5411 -  else
 11.5412 -    lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[	 ]\($symcode$symcode*\)[	 ][	 ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
 11.5413 -  fi
 11.5414 -
 11.5415 -  # Check to see that the pipe works correctly.
 11.5416 -  pipe_works=no
 11.5417 -
 11.5418 -  rm -f conftest*
 11.5419 -  cat > conftest.$ac_ext <<_LT_EOF
 11.5420 -#ifdef __cplusplus
 11.5421 -extern "C" {
 11.5422 -#endif
 11.5423 -char nm_test_var;
 11.5424 -void nm_test_func(void);
 11.5425 -void nm_test_func(void){}
 11.5426 -#ifdef __cplusplus
 11.5427 -}
 11.5428 -#endif
 11.5429 -int main(){nm_test_var='a';nm_test_func();return(0);}
 11.5430 -_LT_EOF
 11.5431 -
 11.5432 -  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.5433 -  (eval $ac_compile) 2>&5
 11.5434 -  ac_status=$?
 11.5435 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5436 -  (exit $ac_status); }; then
 11.5437 -    # Now try to grab the symbols.
 11.5438 -    nlist=conftest.nm
 11.5439 -    if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5
 11.5440 -  (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5
 11.5441 -  ac_status=$?
 11.5442 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5443 -  (exit $ac_status); } && test -s "$nlist"; then
 11.5444 -      # Try sorting and uniquifying the output.
 11.5445 -      if sort "$nlist" | uniq > "$nlist"T; then
 11.5446 -	mv -f "$nlist"T "$nlist"
 11.5447 -      else
 11.5448 -	rm -f "$nlist"T
 11.5449 -      fi
 11.5450 -
 11.5451 -      # Make sure that we snagged all the symbols we need.
 11.5452 -      if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
 11.5453 -	if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
 11.5454 -	  cat <<_LT_EOF > conftest.$ac_ext
 11.5455 -#ifdef __cplusplus
 11.5456 -extern "C" {
 11.5457 -#endif
 11.5458 -
 11.5459 -_LT_EOF
 11.5460 -	  # Now generate the symbol file.
 11.5461 -	  eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
 11.5462 -
 11.5463 -	  cat <<_LT_EOF >> conftest.$ac_ext
 11.5464 -
 11.5465 -/* The mapping between symbol names and symbols.  */
 11.5466 -const struct {
 11.5467 -  const char *name;
 11.5468 -  void       *address;
 11.5469 -}
 11.5470 -lt__PROGRAM__LTX_preloaded_symbols[] =
 11.5471 -{
 11.5472 -  { "@PROGRAM@", (void *) 0 },
 11.5473 -_LT_EOF
 11.5474 -	  $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
 11.5475 -	  cat <<\_LT_EOF >> conftest.$ac_ext
 11.5476 -  {0, (void *) 0}
 11.5477 -};
 11.5478 -
 11.5479 -/* This works around a problem in FreeBSD linker */
 11.5480 -#ifdef FREEBSD_WORKAROUND
 11.5481 -static const void *lt_preloaded_setup() {
 11.5482 -  return lt__PROGRAM__LTX_preloaded_symbols;
 11.5483 -}
 11.5484 -#endif
 11.5485 -
 11.5486 -#ifdef __cplusplus
 11.5487 -}
 11.5488 -#endif
 11.5489 -_LT_EOF
 11.5490 -	  # Now try linking the two files.
 11.5491 -	  mv conftest.$ac_objext conftstm.$ac_objext
 11.5492 -	  lt_save_LIBS="$LIBS"
 11.5493 -	  lt_save_CFLAGS="$CFLAGS"
 11.5494 -	  LIBS="conftstm.$ac_objext"
 11.5495 -	  CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag"
 11.5496 -	  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 11.5497 -  (eval $ac_link) 2>&5
 11.5498 -  ac_status=$?
 11.5499 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5500 -  (exit $ac_status); } && test -s conftest${ac_exeext}; then
 11.5501 -	    pipe_works=yes
 11.5502 -	  fi
 11.5503 -	  LIBS="$lt_save_LIBS"
 11.5504 -	  CFLAGS="$lt_save_CFLAGS"
 11.5505 -	else
 11.5506 -	  echo "cannot find nm_test_func in $nlist" >&5
 11.5507 -	fi
 11.5508 -      else
 11.5509 -	echo "cannot find nm_test_var in $nlist" >&5
 11.5510 -      fi
 11.5511 -    else
 11.5512 -      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5
 11.5513 -    fi
 11.5514 -  else
 11.5515 -    echo "$progname: failed program was:" >&5
 11.5516 -    cat conftest.$ac_ext >&5
 11.5517 -  fi
 11.5518 -  rm -f conftest* conftst*
 11.5519 -
 11.5520 -  # Do not use the global_symbol_pipe unless it works.
 11.5521 -  if test "$pipe_works" = yes; then
 11.5522 -    break
 11.5523 -  else
 11.5524 -    lt_cv_sys_global_symbol_pipe=
 11.5525 -  fi
 11.5526 -done
 11.5527 -
 11.5528 -fi
 11.5529 -
 11.5530 -if test -z "$lt_cv_sys_global_symbol_pipe"; then
 11.5531 -  lt_cv_sys_global_symbol_to_cdecl=
 11.5532 -fi
 11.5533 -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
 11.5534 -  echo "$as_me:$LINENO: result: failed" >&5
 11.5535 -echo "${ECHO_T}failed" >&6
 11.5536 -else
 11.5537 -  echo "$as_me:$LINENO: result: ok" >&5
 11.5538 -echo "${ECHO_T}ok" >&6
 11.5539 -fi
 11.5540 -
 11.5541 -
 11.5542 -
 11.5543 -
 11.5544 -
 11.5545 -
 11.5546 -
 11.5547 -
 11.5548 -
 11.5549 -
 11.5550 -
 11.5551 -
 11.5552 -
 11.5553 -
 11.5554 -
 11.5555 -
 11.5556 -
 11.5557 -# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
 11.5558 -if test "${enable_libtool_lock+set}" = set; then
 11.5559 -  enableval="$enable_libtool_lock"
 11.5560 -
 11.5561 -fi;
 11.5562 -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
 11.5563 -
 11.5564 -# Some flags need to be propagated to the compiler or linker for good
 11.5565 -# libtool support.
 11.5566 -case $host in
 11.5567 -ia64-*-hpux*)
 11.5568 -  # Find out which ABI we are using.
 11.5569 -  echo 'int i;' > conftest.$ac_ext
 11.5570 -  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.5571 -  (eval $ac_compile) 2>&5
 11.5572 -  ac_status=$?
 11.5573 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5574 -  (exit $ac_status); }; then
 11.5575 -    case `/usr/bin/file conftest.$ac_objext` in
 11.5576 -      *ELF-32*)
 11.5577 -	HPUX_IA64_MODE="32"
 11.5578 -	;;
 11.5579 -      *ELF-64*)
 11.5580 -	HPUX_IA64_MODE="64"
 11.5581 -	;;
 11.5582 -    esac
 11.5583 -  fi
 11.5584 -  rm -rf conftest*
 11.5585 -  ;;
 11.5586 -*-*-irix6*)
 11.5587 -  # Find out which ABI we are using.
 11.5588 -  echo '#line 5585 "configure"' > conftest.$ac_ext
 11.5589 -  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.5590 -  (eval $ac_compile) 2>&5
 11.5591 -  ac_status=$?
 11.5592 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5593 -  (exit $ac_status); }; then
 11.5594 -    if test "$lt_cv_prog_gnu_ld" = yes; then
 11.5595 -      case `/usr/bin/file conftest.$ac_objext` in
 11.5596 -	*32-bit*)
 11.5597 -	  LD="${LD-ld} -melf32bsmip"
 11.5598 -	  ;;
 11.5599 -	*N32*)
 11.5600 -	  LD="${LD-ld} -melf32bmipn32"
 11.5601 -	  ;;
 11.5602 -	*64-bit*)
 11.5603 -	  LD="${LD-ld} -melf64bmip"
 11.5604 -	;;
 11.5605 -      esac
 11.5606 -    else
 11.5607 -      case `/usr/bin/file conftest.$ac_objext` in
 11.5608 -	*32-bit*)
 11.5609 -	  LD="${LD-ld} -32"
 11.5610 -	  ;;
 11.5611 -	*N32*)
 11.5612 -	  LD="${LD-ld} -n32"
 11.5613 -	  ;;
 11.5614 -	*64-bit*)
 11.5615 -	  LD="${LD-ld} -64"
 11.5616 -	  ;;
 11.5617 -      esac
 11.5618 -    fi
 11.5619 -  fi
 11.5620 -  rm -rf conftest*
 11.5621 -  ;;
 11.5622 -
 11.5623 -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
 11.5624 -s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
 11.5625 -  # Find out which ABI we are using.
 11.5626 -  echo 'int i;' > conftest.$ac_ext
 11.5627 -  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.5628 -  (eval $ac_compile) 2>&5
 11.5629 -  ac_status=$?
 11.5630 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5631 -  (exit $ac_status); }; then
 11.5632 -    case `/usr/bin/file conftest.o` in
 11.5633 -      *32-bit*)
 11.5634 -	case $host in
 11.5635 -	  x86_64-*kfreebsd*-gnu)
 11.5636 -	    LD="${LD-ld} -m elf_i386_fbsd"
 11.5637 -	    ;;
 11.5638 -	  x86_64-*linux*)
 11.5639 -	    LD="${LD-ld} -m elf_i386"
 11.5640 -	    ;;
 11.5641 -	  ppc64-*linux*|powerpc64-*linux*)
 11.5642 -	    LD="${LD-ld} -m elf32ppclinux"
 11.5643 -	    ;;
 11.5644 -	  s390x-*linux*)
 11.5645 -	    LD="${LD-ld} -m elf_s390"
 11.5646 -	    ;;
 11.5647 -	  sparc64-*linux*)
 11.5648 -	    LD="${LD-ld} -m elf32_sparc"
 11.5649 -	    ;;
 11.5650 -	esac
 11.5651 -	;;
 11.5652 -      *64-bit*)
 11.5653 -	case $host in
 11.5654 -	  x86_64-*kfreebsd*-gnu)
 11.5655 -	    LD="${LD-ld} -m elf_x86_64_fbsd"
 11.5656 -	    ;;
 11.5657 -	  x86_64-*linux*)
 11.5658 -	    LD="${LD-ld} -m elf_x86_64"
 11.5659 -	    ;;
 11.5660 -	  ppc*-*linux*|powerpc*-*linux*)
 11.5661 -	    LD="${LD-ld} -m elf64ppc"
 11.5662 -	    ;;
 11.5663 -	  s390*-*linux*|s390*-*tpf*)
 11.5664 -	    LD="${LD-ld} -m elf64_s390"
 11.5665 -	    ;;
 11.5666 -	  sparc*-*linux*)
 11.5667 -	    LD="${LD-ld} -m elf64_sparc"
 11.5668 -	    ;;
 11.5669 -	esac
 11.5670 -	;;
 11.5671 -    esac
 11.5672 -  fi
 11.5673 -  rm -rf conftest*
 11.5674 -  ;;
 11.5675 -
 11.5676 -*-*-sco3.2v5*)
 11.5677 -  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
 11.5678 -  SAVE_CFLAGS="$CFLAGS"
 11.5679 -  CFLAGS="$CFLAGS -belf"
 11.5680 -  echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
 11.5681 -echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6
 11.5682 -if test "${lt_cv_cc_needs_belf+set}" = set; then
 11.5683 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5684 -else
 11.5685 -  ac_ext=c
 11.5686 -ac_cpp='$CPP $CPPFLAGS'
 11.5687 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.5688 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.5689 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.5690 -
 11.5691 -     cat >conftest.$ac_ext <<_ACEOF
 11.5692 -/* confdefs.h.  */
 11.5693 -_ACEOF
 11.5694 -cat confdefs.h >>conftest.$ac_ext
 11.5695 -cat >>conftest.$ac_ext <<_ACEOF
 11.5696 -/* end confdefs.h.  */
 11.5697 -
 11.5698 -int
 11.5699 -main ()
 11.5700 -{
 11.5701 -
 11.5702 -  ;
 11.5703 -  return 0;
 11.5704 -}
 11.5705 -_ACEOF
 11.5706 -rm -f conftest.$ac_objext conftest$ac_exeext
 11.5707 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 11.5708 -  (eval $ac_link) 2>conftest.er1
 11.5709 -  ac_status=$?
 11.5710 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.5711 -  rm -f conftest.er1
 11.5712 -  cat conftest.err >&5
 11.5713 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5714 -  (exit $ac_status); } &&
 11.5715 -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err'
 11.5716 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.5717 -  (eval $ac_try) 2>&5
 11.5718 -  ac_status=$?
 11.5719 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5720 -  (exit $ac_status); }; } &&
 11.5721 -	 { ac_try='test -s conftest$ac_exeext'
 11.5722 -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 11.5723 -  (eval $ac_try) 2>&5
 11.5724 -  ac_status=$?
 11.5725 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5726 -  (exit $ac_status); }; }; then
 11.5727 -  lt_cv_cc_needs_belf=yes
 11.5728 -else
 11.5729 -  echo "$as_me: failed program was:" >&5
 11.5730 -sed 's/^/| /' conftest.$ac_ext >&5
 11.5731 -
 11.5732 -lt_cv_cc_needs_belf=no
 11.5733 -fi
 11.5734 -rm -f conftest.err conftest.$ac_objext \
 11.5735 -      conftest$ac_exeext conftest.$ac_ext
 11.5736 -     ac_ext=c
 11.5737 -ac_cpp='$CPP $CPPFLAGS'
 11.5738 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.5739 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.5740 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.5741 -
 11.5742 -fi
 11.5743 -echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
 11.5744 -echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6
 11.5745 -  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
 11.5746 -    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
 11.5747 -    CFLAGS="$SAVE_CFLAGS"
 11.5748 -  fi
 11.5749 -  ;;
 11.5750 -sparc*-*solaris*)
 11.5751 -  # Find out which ABI we are using.
 11.5752 -  echo 'int i;' > conftest.$ac_ext
 11.5753 -  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 11.5754 -  (eval $ac_compile) 2>&5
 11.5755 -  ac_status=$?
 11.5756 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5757 -  (exit $ac_status); }; then
 11.5758 -    case `/usr/bin/file conftest.o` in
 11.5759 -    *64-bit*)
 11.5760 -      case $lt_cv_prog_gnu_ld in
 11.5761 -      yes*) LD="${LD-ld} -m elf64_sparc" ;;
 11.5762 -      *)    LD="${LD-ld} -64" ;;
 11.5763 -      esac
 11.5764 -      ;;
 11.5765 -    esac
 11.5766 -  fi
 11.5767 -  rm -rf conftest*
 11.5768 -  ;;
 11.5769 -esac
 11.5770 -
 11.5771 -need_locks="$enable_libtool_lock"
 11.5772 -
 11.5773 -ac_ext=c
 11.5774 -ac_cpp='$CPP $CPPFLAGS'
 11.5775 -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 11.5776 -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 11.5777 -ac_compiler_gnu=$ac_cv_c_compiler_gnu
 11.5778 -echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
 11.5779 -echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
 11.5780 -# On Suns, sometimes $CPP names a directory.
 11.5781 -if test -n "$CPP" && test -d "$CPP"; then
 11.5782 -  CPP=
 11.5783 -fi
 11.5784 -if test -z "$CPP"; then
 11.5785 -  if test "${ac_cv_prog_CPP+set}" = set; then
 11.5786 -  echo $ECHO_N "(cached) $ECHO_C" >&6
 11.5787 -else
 11.5788 -      # Double quotes because CPP needs to be expanded
 11.5789 -    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
 11.5790 -    do
 11.5791 -      ac_preproc_ok=false
 11.5792 -for ac_c_preproc_warn_flag in '' yes
 11.5793 -do
 11.5794 -  # Use a header file that comes with gcc, so configuring glibc
 11.5795 -  # with a fresh cross-compiler works.
 11.5796 -  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 11.5797 -  # <limits.h> exists even on freestanding compilers.
 11.5798 -  # On the NeXT, cc -E runs the code through the compiler's parser,
 11.5799 -  # not just through cpp. "Syntax error" is here to catch this case.
 11.5800 -  cat >conftest.$ac_ext <<_ACEOF
 11.5801 -/* confdefs.h.  */
 11.5802 -_ACEOF
 11.5803 -cat confdefs.h >>conftest.$ac_ext
 11.5804 -cat >>conftest.$ac_ext <<_ACEOF
 11.5805 -/* end confdefs.h.  */
 11.5806 -#ifdef __STDC__
 11.5807 -# include <limits.h>
 11.5808 -#else
 11.5809 -# include <assert.h>
 11.5810 -#endif
 11.5811 -		     Syntax error
 11.5812 -_ACEOF
 11.5813 -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 11.5814 -  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 11.5815 -  ac_status=$?
 11.5816 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.5817 -  rm -f conftest.er1
 11.5818 -  cat conftest.err >&5
 11.5819 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5820 -  (exit $ac_status); } >/dev/null; then
 11.5821 -  if test -s conftest.err; then
 11.5822 -    ac_cpp_err=$ac_c_preproc_warn_flag
 11.5823 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 11.5824 -  else
 11.5825 -    ac_cpp_err=
 11.5826 -  fi
 11.5827 -else
 11.5828 -  ac_cpp_err=yes
 11.5829 -fi
 11.5830 -if test -z "$ac_cpp_err"; then
 11.5831 -  :
 11.5832 -else
 11.5833 -  echo "$as_me: failed program was:" >&5
 11.5834 -sed 's/^/| /' conftest.$ac_ext >&5
 11.5835 -
 11.5836 -  # Broken: fails on valid input.
 11.5837 -continue
 11.5838 -fi
 11.5839 -rm -f conftest.err conftest.$ac_ext
 11.5840 -
 11.5841 -  # OK, works on sane cases.  Now check whether non-existent headers
 11.5842 -  # can be detected and how.
 11.5843 -  cat >conftest.$ac_ext <<_ACEOF
 11.5844 -/* confdefs.h.  */
 11.5845 -_ACEOF
 11.5846 -cat confdefs.h >>conftest.$ac_ext
 11.5847 -cat >>conftest.$ac_ext <<_ACEOF
 11.5848 -/* end confdefs.h.  */
 11.5849 -#include <ac_nonexistent.h>
 11.5850 -_ACEOF
 11.5851 -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 11.5852 -  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 11.5853 -  ac_status=$?
 11.5854 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.5855 -  rm -f conftest.er1
 11.5856 -  cat conftest.err >&5
 11.5857 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5858 -  (exit $ac_status); } >/dev/null; then
 11.5859 -  if test -s conftest.err; then
 11.5860 -    ac_cpp_err=$ac_c_preproc_warn_flag
 11.5861 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 11.5862 -  else
 11.5863 -    ac_cpp_err=
 11.5864 -  fi
 11.5865 -else
 11.5866 -  ac_cpp_err=yes
 11.5867 -fi
 11.5868 -if test -z "$ac_cpp_err"; then
 11.5869 -  # Broken: success on invalid input.
 11.5870 -continue
 11.5871 -else
 11.5872 -  echo "$as_me: failed program was:" >&5
 11.5873 -sed 's/^/| /' conftest.$ac_ext >&5
 11.5874 -
 11.5875 -  # Passes both tests.
 11.5876 -ac_preproc_ok=:
 11.5877 -break
 11.5878 -fi
 11.5879 -rm -f conftest.err conftest.$ac_ext
 11.5880 -
 11.5881 -done
 11.5882 -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 11.5883 -rm -f conftest.err conftest.$ac_ext
 11.5884 -if $ac_preproc_ok; then
 11.5885 -  break
 11.5886 -fi
 11.5887 -
 11.5888 -    done
 11.5889 -    ac_cv_prog_CPP=$CPP
 11.5890 -
 11.5891 -fi
 11.5892 -  CPP=$ac_cv_prog_CPP
 11.5893 -else
 11.5894 -  ac_cv_prog_CPP=$CPP
 11.5895 -fi
 11.5896 -echo "$as_me:$LINENO: result: $CPP" >&5
 11.5897 -echo "${ECHO_T}$CPP" >&6
 11.5898 -ac_preproc_ok=false
 11.5899 -for ac_c_preproc_warn_flag in '' yes
 11.5900 -do
 11.5901 -  # Use a header file that comes with gcc, so configuring glibc
 11.5902 -  # with a fresh cross-compiler works.
 11.5903 -  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 11.5904 -  # <limits.h> exists even on freestanding compilers.
 11.5905 -  # On the NeXT, cc -E runs the code through the compiler's parser,
 11.5906 -  # not just through cpp. "Syntax error" is here to catch this case.
 11.5907 -  cat >conftest.$ac_ext <<_ACEOF
 11.5908 -/* confdefs.h.  */
 11.5909 -_ACEOF
 11.5910 -cat confdefs.h >>conftest.$ac_ext
 11.5911 -cat >>conftest.$ac_ext <<_ACEOF
 11.5912 -/* end confdefs.h.  */
 11.5913 -#ifdef __STDC__
 11.5914 -# include <limits.h>
 11.5915 -#else
 11.5916 -# include <assert.h>
 11.5917 -#endif
 11.5918 -		     Syntax error
 11.5919 -_ACEOF
 11.5920 -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 11.5921 -  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 11.5922 -  ac_status=$?
 11.5923 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.5924 -  rm -f conftest.er1
 11.5925 -  cat conftest.err >&5
 11.5926 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5927 -  (exit $ac_status); } >/dev/null; then
 11.5928 -  if test -s conftest.err; then
 11.5929 -    ac_cpp_err=$ac_c_preproc_warn_flag
 11.5930 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 11.5931 -  else
 11.5932 -    ac_cpp_err=
 11.5933 -  fi
 11.5934 -else
 11.5935 -  ac_cpp_err=yes
 11.5936 -fi
 11.5937 -if test -z "$ac_cpp_err"; then
 11.5938 -  :
 11.5939 -else
 11.5940 -  echo "$as_me: failed program was:" >&5
 11.5941 -sed 's/^/| /' conftest.$ac_ext >&5
 11.5942 -
 11.5943 -  # Broken: fails on valid input.
 11.5944 -continue
 11.5945 -fi
 11.5946 -rm -f conftest.err conftest.$ac_ext
 11.5947 -
 11.5948 -  # OK, works on sane cases.  Now check whether non-existent headers
 11.5949 -  # can be detected and how.
 11.5950 -  cat >conftest.$ac_ext <<_ACEOF
 11.5951 -/* confdefs.h.  */
 11.5952 -_ACEOF
 11.5953 -cat confdefs.h >>conftest.$ac_ext
 11.5954 -cat >>conftest.$ac_ext <<_ACEOF
 11.5955 -/* end confdefs.h.  */
 11.5956 -#include <ac_nonexistent.h>
 11.5957 -_ACEOF
 11.5958 -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 11.5959 -  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 11.5960 -  ac_status=$?
 11.5961 -  grep -v '^ *+' conftest.er1 >conftest.err
 11.5962 -  rm -f conftest.er1
 11.5963 -  cat conftest.err >&5
 11.5964 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 11.5965 -  (exit $ac_status); } >/dev/null; then
 11.5966 -  if test -s conftest.err; then
 11.5967 -    ac_cpp_err=$ac_c_preproc_warn_flag
 11.5968 -    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 11.5969 -  else
 11.5970 -    ac_cpp_err=
 11.5971 -  fi
 11.5972 -else
 11.5973 -  ac_cpp_err=yes
 11.5974 -fi
 11.5975 -if test -z "$ac_cpp_err"; then