diff options
-rwxr-xr-x | configure | 2395 |
1 files changed, 1217 insertions, 1178 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.363 . +# From configure.in Revision: 1.365 . # Guess values for system-dependent variables and create Makefiles. # Generated by Autoconf 2.52. # @@ -2156,6 +2156,15 @@ echo "include_mpn(\`mips3/mips.m4')" >> $gmp_tmpconfigm4i # preprocessing is done separately, and this is only a speedup, the normal # preprocessor gets run if there's any problems. # + # gcc 2.7.2 knows -mcpu 403, 603, 604. + # + # gcc 2.95 adds 401, 505, 602, 603e, ec603e, 604e, 620, 740, 750, + # 801, 821, 823, 860. + # + # gcc 3.0 adds 630, rs64a. + # + # gcc 3.1 adds 405, 7400, 7450. + # powerpc*-*-*) cat >>confdefs.h <<\EOF #define HAVE_HOST_CPU_FAMILY_powerpc 1 @@ -2165,7 +2174,7 @@ EOF cclist="gcc cc" cc_cflags="-g -O2" gcc_cflags="-g -O2 -mpowerpc" - gcc_cflags_optlist="asm precomp" + gcc_cflags_optlist="asm precomp cpu" gcc_cflags_asm="-Wa,-mppc" gcc_cflags_precomp="-no-cpp-precomp" path="powerpc32" @@ -2175,8 +2184,34 @@ EOF xlc_cflags="-g -O2 -qarch=ppc -qmaxmem=20000" ;; esac + # FIXME: The way 603e falls back to 603 for gcc 2.7.2 should be + # done for all the others too. But what would be the correct + # arrangements? + case $host_cpu in + powerpc401) gcc_cflags_cpu="-mcpu=401" ;; + powerpc403) gcc_cflags_cpu="-mcpu=403" ;; + powerpc405) gcc_cflags_cpu="-mcpu=405" ;; + powerpc505) gcc_cflags_cpu="-mcpu=505" ;; + powerpc602) gcc_cflags_cpu="-mcpu=602" ;; + powerpc603) gcc_cflags_cpu="-mcpu=603" ;; + powerpc603e) gcc_cflags_cpu="-mcpu=603e -mcpu=603" ;; + powerpc604) gcc_cflags_cpu="-mcpu=604" ;; + powerpc604e | powerpc640ev5) + gcc_cflags_cpu="-mcpu=604e -mcpu=604" ;; + powerpc620) gcc_cflags_cpu="-mcpu=620" ;; + powerpc630) gcc_cflags_cpu="-mcpu=630" ;; + powerpc740) gcc_cflags_cpu="-mcpu=740" ;; + powerpc7400) gcc_cflags_cpu="-mcpu=7400" ;; + powerpc7450) gcc_cflags_cpu="-mcpu=7450" ;; + powerpc750) gcc_cflags_cpu="-mcpu=750" ;; + powerpc801) gcc_cflags_cpu="-mcpu=801" ;; + powerpc821) gcc_cflags_cpu="-mcpu=821" ;; + powerpc823) gcc_cflags_cpu="-mcpu=823" ;; + powerpc860) gcc_cflags_cpu="-mcpu=860" ;; + esac + case $host in - powerpc64*-*-*) + powerpc64-*-* | powerpc630-*-*) # CPU type powerpc64 forces to a 64-bit limb case $host in powerpc64-*-*) abilist="32L" ;; @@ -2184,6 +2219,7 @@ EOF esac cclist_32L="gcc" gcc_32L_cflags="-g -O2 -mpowerpc64" + gcc_32L_cflags_optlist="cpu" limb_32L=longlong path_32L="powerpc64" @@ -2194,6 +2230,7 @@ EOF abilist="aix64 $abilist" cclist_aix64="gcc xlc" gcc_aix64_cflags="-g -O2 -maix64 -mpowerpc64" + gcc_aix64_cflags_optlist="cpu" gcc_aix64_ldflags="-Wc,-maix64" xlc_aix64_cflags="-g -O2 -q64 -qtune=pwr3 -qmaxmem=20000" xlc_aix64_ldflags="-Wc,-q64" @@ -2448,13 +2485,13 @@ CFLAGS_or_unset=${CFLAGS-'(unset)'} CPPFLAGS_or_unset=${CPPFLAGS-'(unset)'} cat >&5 <<EOF -configure:854: User: +configure:891: User: ABI=$ABI CC=$CC CFLAGS=$CFLAGS_or_unset CPPFLAGS=$CPPFLAGS_or_unset MPN_PATH=$MPN_PATH -configure:860: GMP: +configure:897: GMP: abilist=$abilist cclist=$cclist EOF @@ -2475,7 +2512,7 @@ if test -n "$ABI"; then if test $abi = "$ABI"; then found=yes; break; fi done if test $found = no; then - { { echo "$as_me:2478: error: ABI=$ABI is not among the following valid choices: $abilist" >&5 + { { echo "$as_me:2515: error: ABI=$ABI is not among the following valid choices: $abilist" >&5 echo "$as_me: error: ABI=$ABI is not among the following valid choices: $abilist" >&2;} { (exit 1); exit 1; }; } fi @@ -2565,15 +2602,15 @@ for abi in $abilist; do #endif EOF gmp_compile="$cc -c conftest.c >&5" -if { (eval echo "$as_me:2568: \"$gmp_compile\"") >&5 +if { (eval echo "$as_me:2605: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:2571: \$? = $ac_status" >&5 + echo "$as_me:2608: \$? = $ac_status" >&5 (exit $ac_status); }; then rm -f conftest* - echo "$as_me:2574: checking whether $cc is gcc" >&5 + echo "$as_me:2611: checking whether $cc is gcc" >&5 echo $ECHO_N "checking whether $cc is gcc... $ECHO_C" >&6 - echo "$as_me:2576: result: yes" >&5 + echo "$as_me:2613: result: yes" >&5 echo "${ECHO_T}yes" >&6 ccbase=gcc else @@ -2587,14 +2624,14 @@ fi # then change $ccbase and make the default xlc flags available. if test $ccbase != xlc; then gmp_command="$cc 2>&1 | grep xlc >/dev/null" -if { (eval echo "$as_me:2590: \"$gmp_command\"") >&5 +if { (eval echo "$as_me:2627: \"$gmp_command\"") >&5 (eval $gmp_command) 2>&5 ac_status=$? - echo "$as_me:2593: \$? = $ac_status" >&5 + echo "$as_me:2630: \$? = $ac_status" >&5 (exit $ac_status); }; then - echo "$as_me:2595: checking whether $cc is xlc" >&5 + echo "$as_me:2632: checking whether $cc is xlc" >&5 echo $ECHO_N "checking whether $cc is xlc... $ECHO_C" >&6 - echo "$as_me:2597: result: yes" >&5 + echo "$as_me:2634: result: yes" >&5 echo "${ECHO_T}yes" >&6 ccbase=xlc else @@ -2621,7 +2658,7 @@ fi gprof) cflags="$cflags -pg" ;; esac - echo "$as_me:2624: checking compiler $cc $cflags $cppflags" >&5 + echo "$as_me:2661: checking compiler $cc $cflags $cppflags" >&5 echo $ECHO_N "checking compiler $cc $cflags $cppflags... $ECHO_C" >&6 cat >conftest.c <<EOF @@ -2641,17 +2678,17 @@ int main () { return 0; } EOF gmp_prog_cc_works=no gmp_compile="$cc $cflags $cppflags conftest.c >&5" -if { (eval echo "$as_me:2644: \"$gmp_compile\"") >&5 +if { (eval echo "$as_me:2681: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:2647: \$? = $ac_status" >&5 + echo "$as_me:2684: \$? = $ac_status" >&5 (exit $ac_status); }; then if test "$cross_compiling" = no; then if { ac_try='./a.out || ./a.exe || ./conftest' - { (eval echo "$as_me:2651: \"$ac_try\"") >&5 + { (eval echo "$as_me:2688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2654: \$? = $ac_status" >&5 + echo "$as_me:2691: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_prog_cc_works=yes fi @@ -2660,7 +2697,7 @@ if { (eval echo "$as_me:2644: \"$gmp_compile\"") >&5 fi fi rm -f conftest* a.out a.exe -echo "$as_me:2663: result: $gmp_prog_cc_works" >&5 +echo "$as_me:2700: result: $gmp_prog_cc_works" >&5 echo "${ECHO_T}$gmp_prog_cc_works" >&6 if test $gmp_prog_cc_works = yes; then : @@ -2675,7 +2712,7 @@ fi testlist_pass=yes for tst in $testlist; do case $tst in - hpc-hppa-2-0) echo "$as_me:2678: checking whether HP compiler $cc is good for 64-bits" >&5 + hpc-hppa-2-0) echo "$as_me:2715: checking whether HP compiler $cc is good for 64-bits" >&5 echo $ECHO_N "checking whether HP compiler $cc is good for 64-bits... $ECHO_C" >&6 # Bad compiler output: # ccom: HP92453-01 G.10.32.05 HP C Compiler @@ -2718,7 +2755,7 @@ fi gmp_hpc_64bit=$gmp_compare_ge fi -echo "$as_me:2721: result: $gmp_hpc_64bit" >&5 +echo "$as_me:2758: result: $gmp_hpc_64bit" >&5 echo "${ECHO_T}$gmp_hpc_64bit" >&6 if test $gmp_hpc_64bit = yes; then : @@ -2726,7 +2763,7 @@ else testlist_pass=no fi ;; - gcc-arm-umodsi) echo "$as_me:2729: checking whether gcc unsigned division works" >&5 + gcc-arm-umodsi) echo "$as_me:2766: checking whether gcc unsigned division works" >&5 echo $ECHO_N "checking whether gcc unsigned division works... $ECHO_C" >&6 tmp_version=`($cc --version) 2>&5` echo "$cc --version '$tmp_version'" >&5 @@ -2741,7 +2778,7 @@ subminor=`(echo "$tmp_version" | sed -n 's/^[a-z-]*[0-9][0-9]*\.[0-9][0-9]*\.\([ echo " subminor '$subminor'" >&5 if test -z "$major"; then - { echo "$as_me:2744: WARNING: unrecognised gcc version string: $tmp_version" >&5 + { echo "$as_me:2781: WARNING: unrecognised gcc version string: $tmp_version" >&5 echo "$as_me: WARNING: unrecognised gcc version string: $tmp_version" >&2;} gmp_compare_ge=error else @@ -2778,7 +2815,7 @@ yes) testlist_pass=no gmp_gcc_arm_umodsi_result="no, gcc <= 2.95.3" ;; esac -echo "$as_me:2781: result: $gmp_gcc_arm_umodsi_result" >&5 +echo "$as_me:2818: result: $gmp_gcc_arm_umodsi_result" >&5 echo "${ECHO_T}$gmp_gcc_arm_umodsi_result" >&6 ;; esac @@ -2811,7 +2848,7 @@ done # C on MS-DOS systems). # if test $found_compiler = no && test -n "$path"; then - { { echo "$as_me:2814: error: could not find a working compiler" >&5 + { { echo "$as_me:2851: error: could not find a working compiler" >&5 echo "$as_me: error: could not find a working compiler" >&2;} { (exit 1); exit 1; }; } fi @@ -2828,13 +2865,14 @@ if test $found_compiler = yes; then for opt in $optlist; do eval optflags=\"\$${ccbase}${abi1}_cflags_${opt}\" test -n "$optflags" || eval optflags=\"\$${ccbase}${abi2}_cflags_${opt}\" + test -n "$optflags" || eval optflags=\"\$${ccbase}_cflags_${opt}\" for flag in $optflags; do case $flag in -march=pentiumpro) # tickles stack slot bugs on some gcc, exclude as necessary - echo "$as_me:2837: checking whether gcc -march=pentiumpro is good" >&5 + echo "$as_me:2875: checking whether gcc -march=pentiumpro is good" >&5 echo $ECHO_N "checking whether gcc -march=pentiumpro is good... $ECHO_C" >&6 if test "${gmp_cv_gcc_march_pentiumpro+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2852,7 +2890,7 @@ subminor=`(echo "$tmp_version" | sed -n 's/^[a-z-]*[0-9][0-9]*\.[0-9][0-9]*\.\([ echo " subminor '$subminor'" >&5 if test -z "$major"; then - { echo "$as_me:2855: WARNING: unrecognised gcc version string: $tmp_version" >&5 + { echo "$as_me:2893: WARNING: unrecognised gcc version string: $tmp_version" >&5 echo "$as_me: WARNING: unrecognised gcc version string: $tmp_version" >&2;} gmp_compare_ge=error else @@ -2886,7 +2924,7 @@ yes|no) gmp_cv_gcc_march_pentiumpro=$gmp_compare_ge ;; error|*) gmp_cv_gcc_march_pentiumpro=no ;; esac fi -echo "$as_me:2889: result: $gmp_cv_gcc_march_pentiumpro" >&5 +echo "$as_me:2927: result: $gmp_cv_gcc_march_pentiumpro" >&5 echo "${ECHO_T}$gmp_cv_gcc_march_pentiumpro" >&6 if test $gmp_cv_gcc_march_pentiumpro = yes; then : @@ -2911,17 +2949,17 @@ esac -no-cpp-precomp) # special check, avoiding a warning if test "$ccbase" = gcc; then - echo "$as_me:2914: checking compiler $cc $cflags -no-cpp-precomp" >&5 + echo "$as_me:2952: checking compiler $cc $cflags -no-cpp-precomp" >&5 echo $ECHO_N "checking compiler $cc $cflags -no-cpp-precomp... $ECHO_C" >&6 result=no cat >conftest.c <<EOF int main () { return 0; } EOF gmp_compile="$cc $cflags -no-cpp-precomp conftest.c >conftest.out 2>&1" - if { (eval echo "$as_me:2921: \"$gmp_compile\"") >&5 + if { (eval echo "$as_me:2959: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:2924: \$? = $ac_status" >&5 + echo "$as_me:2962: \$? = $ac_status" >&5 (exit $ac_status); }; then if grep "unrecognized option.*-no-cpp-precomp" conftest.out >/dev/null; then : ; else @@ -2930,7 +2968,7 @@ EOF fi cat conftest.out >&5 rm -f conftest* a.out - echo "$as_me:2933: result: $result" >&5 + echo "$as_me:2971: result: $result" >&5 echo "${ECHO_T}$result" >&6 if test "$result" = yes; then cflags="$cflags $flag" @@ -2943,7 +2981,7 @@ fi ;; esac - echo "$as_me:2946: checking compiler $cc $cflags $cppflags $flag" >&5 + echo "$as_me:2984: checking compiler $cc $cflags $cppflags $flag" >&5 echo $ECHO_N "checking compiler $cc $cflags $cppflags $flag... $ECHO_C" >&6 cat >conftest.c <<EOF @@ -2963,17 +3001,17 @@ int main () { return 0; } EOF gmp_prog_cc_works=no gmp_compile="$cc $cflags $cppflags $flag conftest.c >&5" -if { (eval echo "$as_me:2966: \"$gmp_compile\"") >&5 +if { (eval echo "$as_me:3004: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:2969: \$? = $ac_status" >&5 + echo "$as_me:3007: \$? = $ac_status" >&5 (exit $ac_status); }; then if test "$cross_compiling" = no; then if { ac_try='./a.out || ./a.exe || ./conftest' - { (eval echo "$as_me:2973: \"$ac_try\"") >&5 + { (eval echo "$as_me:3011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2976: \$? = $ac_status" >&5 + echo "$as_me:3014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_prog_cc_works=yes fi @@ -2982,7 +3020,7 @@ if { (eval echo "$as_me:2966: \"$gmp_compile\"") >&5 fi fi rm -f conftest* a.out a.exe -echo "$as_me:2985: result: $gmp_prog_cc_works" >&5 +echo "$as_me:3023: result: $gmp_prog_cc_works" >&5 echo "${ECHO_T}$gmp_prog_cc_works" >&6 if test $gmp_prog_cc_works = yes; then cflags="$cflags $flag" @@ -3082,7 +3120,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:3085: checking for $ac_word" >&5 +echo "$as_me:3123: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3097,7 +3135,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}gcc" -echo "$as_me:3100: found $ac_dir/$ac_word" >&5 +echo "$as_me:3138: found $ac_dir/$ac_word" >&5 break done @@ -3105,10 +3143,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:3108: result: $CC" >&5 + echo "$as_me:3146: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:3111: result: no" >&5 + echo "$as_me:3149: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3117,7 +3155,7 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -echo "$as_me:3120: checking for $ac_word" >&5 +echo "$as_me:3158: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3132,7 +3170,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" -echo "$as_me:3135: found $ac_dir/$ac_word" >&5 +echo "$as_me:3173: found $ac_dir/$ac_word" >&5 break done @@ -3140,10 +3178,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:3143: result: $ac_ct_CC" >&5 + echo "$as_me:3181: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:3146: result: no" >&5 + echo "$as_me:3184: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3156,7 +3194,7 @@ if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:3159: checking for $ac_word" >&5 +echo "$as_me:3197: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3171,7 +3209,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}cc" -echo "$as_me:3174: found $ac_dir/$ac_word" >&5 +echo "$as_me:3212: found $ac_dir/$ac_word" >&5 break done @@ -3179,10 +3217,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:3182: result: $CC" >&5 + echo "$as_me:3220: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:3185: result: no" >&5 + echo "$as_me:3223: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3191,7 +3229,7 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:3194: checking for $ac_word" >&5 +echo "$as_me:3232: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3206,7 +3244,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" -echo "$as_me:3209: found $ac_dir/$ac_word" >&5 +echo "$as_me:3247: found $ac_dir/$ac_word" >&5 break done @@ -3214,10 +3252,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:3217: result: $ac_ct_CC" >&5 + echo "$as_me:3255: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:3220: result: no" >&5 + echo "$as_me:3258: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3230,7 +3268,7 @@ fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:3233: checking for $ac_word" >&5 +echo "$as_me:3271: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3250,7 +3288,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then continue fi ac_cv_prog_CC="cc" -echo "$as_me:3253: found $ac_dir/$ac_word" >&5 +echo "$as_me:3291: found $ac_dir/$ac_word" >&5 break done @@ -3272,10 +3310,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:3275: result: $CC" >&5 + echo "$as_me:3313: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:3278: result: no" >&5 + echo "$as_me:3316: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3286,7 +3324,7 @@ if test -z "$CC"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:3289: checking for $ac_word" >&5 +echo "$as_me:3327: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3301,7 +3339,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -echo "$as_me:3304: found $ac_dir/$ac_word" >&5 +echo "$as_me:3342: found $ac_dir/$ac_word" >&5 break done @@ -3309,10 +3347,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:3312: result: $CC" >&5 + echo "$as_me:3350: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:3315: result: no" >&5 + echo "$as_me:3353: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3325,7 +3363,7 @@ if test -z "$CC"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:3328: checking for $ac_word" >&5 +echo "$as_me:3366: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3340,7 +3378,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="$ac_prog" -echo "$as_me:3343: found $ac_dir/$ac_word" >&5 +echo "$as_me:3381: found $ac_dir/$ac_word" >&5 break done @@ -3348,10 +3386,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:3351: result: $ac_ct_CC" >&5 + echo "$as_me:3389: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:3354: result: no" >&5 + echo "$as_me:3392: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3363,32 +3401,32 @@ fi fi -test -z "$CC" && { { echo "$as_me:3366: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:3404: error: no acceptable cc found in \$PATH" >&5 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. -echo "$as_me:3371:" \ +echo "$as_me:3409:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:3374: \"$ac_compiler --version </dev/null >&5\"") >&5 +{ (eval echo "$as_me:3412: \"$ac_compiler --version </dev/null >&5\"") >&5 (eval $ac_compiler --version </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:3377: \$? = $ac_status" >&5 + echo "$as_me:3415: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:3379: \"$ac_compiler -v </dev/null >&5\"") >&5 +{ (eval echo "$as_me:3417: \"$ac_compiler -v </dev/null >&5\"") >&5 (eval $ac_compiler -v </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:3382: \$? = $ac_status" >&5 + echo "$as_me:3420: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:3384: \"$ac_compiler -V </dev/null >&5\"") >&5 +{ (eval echo "$as_me:3422: \"$ac_compiler -V </dev/null >&5\"") >&5 (eval $ac_compiler -V </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:3387: \$? = $ac_status" >&5 + echo "$as_me:3425: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 3391 "configure" +#line 3429 "configure" #include "confdefs.h" int @@ -3404,13 +3442,13 @@ ac_clean_files="$ac_clean_files a.out a.exe" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -echo "$as_me:3407: checking for C compiler default output" >&5 +echo "$as_me:3445: checking for C compiler default output" >&5 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:3410: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:3448: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:3413: \$? = $ac_status" >&5 + echo "$as_me:3451: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last @@ -3433,34 +3471,34 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:3436: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:3474: error: C compiler cannot create executables" >&5 echo "$as_me: error: C compiler cannot create executables" >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext -echo "$as_me:3442: result: $ac_file" >&5 +echo "$as_me:3480: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:3447: checking whether the C compiler works" >&5 +echo "$as_me:3485: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' - { (eval echo "$as_me:3453: \"$ac_try\"") >&5 + { (eval echo "$as_me:3491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3456: \$? = $ac_status" >&5 + echo "$as_me:3494: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:3463: error: cannot run C compiled programs. + { { echo "$as_me:3501: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&2;} @@ -3468,24 +3506,24 @@ If you meant to cross compile, use \`--host'." >&2;} fi fi fi -echo "$as_me:3471: result: yes" >&5 +echo "$as_me:3509: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:3478: checking whether we are cross compiling" >&5 +echo "$as_me:3516: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:3480: result: $cross_compiling" >&5 +echo "$as_me:3518: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:3483: checking for executable suffix" >&5 +echo "$as_me:3521: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:3485: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3488: \$? = $ac_status" >&5 + echo "$as_me:3526: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will @@ -3501,25 +3539,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do esac done else - { { echo "$as_me:3504: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:3542: error: cannot compute EXEEXT: cannot compile and link" >&5 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext -echo "$as_me:3510: result: $ac_cv_exeext" >&5 +echo "$as_me:3548: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -echo "$as_me:3516: checking for object suffix" >&5 +echo "$as_me:3554: checking for object suffix" >&5 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3522 "configure" +#line 3560 "configure" #include "confdefs.h" int @@ -3531,10 +3569,10 @@ main () } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:3534: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3572: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3537: \$? = $ac_status" >&5 + echo "$as_me:3575: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in @@ -3546,24 +3584,24 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:3549: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:3587: error: cannot compute OBJEXT: cannot compile" >&5 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -echo "$as_me:3556: result: $ac_cv_objext" >&5 +echo "$as_me:3594: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:3560: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:3598: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3566 "configure" +#line 3604 "configure" #include "confdefs.h" int @@ -3578,16 +3616,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3581: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3619: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3584: \$? = $ac_status" >&5 + echo "$as_me:3622: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3587: \"$ac_try\"") >&5 + { (eval echo "$as_me:3625: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3590: \$? = $ac_status" >&5 + echo "$as_me:3628: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -3599,19 +3637,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:3602: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:3640: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" -echo "$as_me:3608: checking whether $CC accepts -g" >&5 +echo "$as_me:3646: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3614 "configure" +#line 3652 "configure" #include "confdefs.h" int @@ -3623,16 +3661,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3626: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3664: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3629: \$? = $ac_status" >&5 + echo "$as_me:3667: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3632: \"$ac_try\"") >&5 + { (eval echo "$as_me:3670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3635: \$? = $ac_status" >&5 + echo "$as_me:3673: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else @@ -3642,7 +3680,7 @@ ac_cv_prog_cc_g=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3645: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:3683: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -3669,16 +3707,16 @@ cat >conftest.$ac_ext <<_ACEOF #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3672: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3710: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3675: \$? = $ac_status" >&5 + echo "$as_me:3713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3678: \"$ac_try\"") >&5 + { (eval echo "$as_me:3716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3681: \$? = $ac_status" >&5 + echo "$as_me:3719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ @@ -3690,7 +3728,7 @@ if { (eval echo "$as_me:3672: \"$ac_compile\"") >&5 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 3693 "configure" +#line 3731 "configure" #include "confdefs.h" #include <stdlib.h> $ac_declaration @@ -3703,16 +3741,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3706: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3744: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3709: \$? = $ac_status" >&5 + echo "$as_me:3747: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3712: \"$ac_try\"") >&5 + { (eval echo "$as_me:3750: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3715: \$? = $ac_status" >&5 + echo "$as_me:3753: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -3722,7 +3760,7 @@ continue fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 3725 "configure" +#line 3763 "configure" #include "confdefs.h" $ac_declaration int @@ -3734,16 +3772,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3737: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3775: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3740: \$? = $ac_status" >&5 + echo "$as_me:3778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3743: \"$ac_try\"") >&5 + { (eval echo "$as_me:3781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3746: \$? = $ac_status" >&5 + echo "$as_me:3784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -3778,7 +3816,7 @@ doit: @echo done END # If we don't find an include directive, just comment out the code. -echo "$as_me:3781: checking for style of include used by $am_make" >&5 +echo "$as_me:3819: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 am__include='#' am__quote= @@ -3805,13 +3843,13 @@ if test "$am__include" = "#"; then fi fi -echo "$as_me:3808: result: $_am_result" >&5 +echo "$as_me:3846: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6 rm -f confinc confmf depcc="$CC" am_compiler_list= -echo "$as_me:3814: checking dependency style of $depcc" >&5 +echo "$as_me:3852: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3873,11 +3911,11 @@ else fi fi -echo "$as_me:3876: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "$as_me:3914: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE="depmode=$am_cv_CC_dependencies_compiler_type" -echo "$as_me:3880: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:3918: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3885,7 +3923,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3888 "configure" +#line 3926 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -3934,16 +3972,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3937: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3975: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3940: \$? = $ac_status" >&5 + echo "$as_me:3978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3943: \"$ac_try\"") >&5 + { (eval echo "$as_me:3981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3946: \$? = $ac_status" >&5 + echo "$as_me:3984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3960,10 +3998,10 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3963: result: none needed" >&5 + echo "$as_me:4001: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3966: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:4004: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac @@ -3973,7 +4011,7 @@ ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:3976: checking how to run the C preprocessor" >&5 +echo "$as_me:4014: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then @@ -3994,18 +4032,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 3997 "configure" +#line 4035 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:4002: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4040: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4008: \$? = $ac_status" >&5 + echo "$as_me:4046: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4028,17 +4066,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 4031 "configure" +#line 4069 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:4035: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4073: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4041: \$? = $ac_status" >&5 + echo "$as_me:4079: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4075,7 +4113,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:4078: result: $CPP" >&5 +echo "$as_me:4116: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -4085,18 +4123,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 4088 "configure" +#line 4126 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:4093: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4131: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4099: \$? = $ac_status" >&5 + echo "$as_me:4137: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4119,17 +4157,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 4122 "configure" +#line 4160 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:4126: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4164: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4132: \$? = $ac_status" >&5 + echo "$as_me:4170: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4157,7 +4195,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:4160: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:4198: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -4173,7 +4211,7 @@ case $ac_cv_prog_cc_stdc in ;; *) cat >conftest.$ac_ext <<_ACEOF -#line 4176 "configure" +#line 4214 "configure" #include "confdefs.h" #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ #define __GMP_BITS_PER_MP_LIMB 123 /* dummy for mpf_get_prec etc inlines */ @@ -4193,22 +4231,22 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4196: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4234: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4199: \$? = $ac_status" >&5 + echo "$as_me:4237: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4202: \"$ac_try\"") >&5 + { (eval echo "$as_me:4240: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4205: \$? = $ac_status" >&5 + echo "$as_me:4243: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ echo "$as_me:4211: WARNING: gmp.h doesnt recognise compiler as ANSI, prototypes and \"const\" will be unavailable" >&5 +{ echo "$as_me:4249: WARNING: gmp.h doesnt recognise compiler as ANSI, prototypes and \"const\" will be unavailable" >&5 echo "$as_me: WARNING: gmp.h doesnt recognise compiler as ANSI, prototypes and \"const\" will be unavailable" >&2;} fi rm -f conftest.$ac_objext conftest.$ac_ext @@ -4229,7 +4267,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:4232: checking for $ac_word" >&5 +echo "$as_me:4270: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4244,7 +4282,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" -echo "$as_me:4247: found $ac_dir/$ac_word" >&5 +echo "$as_me:4285: found $ac_dir/$ac_word" >&5 break done @@ -4252,10 +4290,10 @@ fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then - echo "$as_me:4255: result: $CXX" >&5 + echo "$as_me:4293: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else - echo "$as_me:4258: result: no" >&5 + echo "$as_me:4296: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4268,7 +4306,7 @@ if test -z "$CXX"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:4271: checking for $ac_word" >&5 +echo "$as_me:4309: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4283,7 +4321,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CXX="$ac_prog" -echo "$as_me:4286: found $ac_dir/$ac_word" >&5 +echo "$as_me:4324: found $ac_dir/$ac_word" >&5 break done @@ -4291,10 +4329,10 @@ fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then - echo "$as_me:4294: result: $ac_ct_CXX" >&5 + echo "$as_me:4332: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else - echo "$as_me:4297: result: no" >&5 + echo "$as_me:4335: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4306,32 +4344,32 @@ test -n "$ac_ct_CXX" || ac_ct_CXX="g++" fi # Provide some information about the compiler. -echo "$as_me:4309:" \ +echo "$as_me:4347:" \ "checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:4312: \"$ac_compiler --version </dev/null >&5\"") >&5 +{ (eval echo "$as_me:4350: \"$ac_compiler --version </dev/null >&5\"") >&5 (eval $ac_compiler --version </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:4315: \$? = $ac_status" >&5 + echo "$as_me:4353: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:4317: \"$ac_compiler -v </dev/null >&5\"") >&5 +{ (eval echo "$as_me:4355: \"$ac_compiler -v </dev/null >&5\"") >&5 (eval $ac_compiler -v </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:4320: \$? = $ac_status" >&5 + echo "$as_me:4358: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:4322: \"$ac_compiler -V </dev/null >&5\"") >&5 +{ (eval echo "$as_me:4360: \"$ac_compiler -V </dev/null >&5\"") >&5 (eval $ac_compiler -V </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:4325: \$? = $ac_status" >&5 + echo "$as_me:4363: \$? = $ac_status" >&5 (exit $ac_status); } -echo "$as_me:4328: checking whether we are using the GNU C++ compiler" >&5 +echo "$as_me:4366: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4334 "configure" +#line 4372 "configure" #include "confdefs.h" int @@ -4346,16 +4384,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4349: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4387: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4352: \$? = $ac_status" >&5 + echo "$as_me:4390: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4355: \"$ac_try\"") >&5 + { (eval echo "$as_me:4393: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4358: \$? = $ac_status" >&5 + echo "$as_me:4396: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -4367,19 +4405,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:4370: result: $ac_cv_cxx_compiler_gnu" >&5 +echo "$as_me:4408: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" -echo "$as_me:4376: checking whether $CXX accepts -g" >&5 +echo "$as_me:4414: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4382 "configure" +#line 4420 "configure" #include "confdefs.h" int @@ -4391,16 +4429,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4397: \$? = $ac_status" >&5 + echo "$as_me:4435: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4400: \"$ac_try\"") >&5 + { (eval echo "$as_me:4438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4403: \$? = $ac_status" >&5 + echo "$as_me:4441: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cxx_g=yes else @@ -4410,7 +4448,7 @@ ac_cv_prog_cxx_g=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4413: result: $ac_cv_prog_cxx_g" >&5 +echo "$as_me:4451: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS @@ -4437,7 +4475,7 @@ for ac_declaration in \ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 4440 "configure" +#line 4478 "configure" #include "confdefs.h" #include <stdlib.h> $ac_declaration @@ -4450,16 +4488,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4453: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4491: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4456: \$? = $ac_status" >&5 + echo "$as_me:4494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4459: \"$ac_try\"") >&5 + { (eval echo "$as_me:4497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4462: \$? = $ac_status" >&5 + echo "$as_me:4500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -4469,7 +4507,7 @@ continue fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4472 "configure" +#line 4510 "configure" #include "confdefs.h" $ac_declaration int @@ -4481,16 +4519,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4484: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4522: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4487: \$? = $ac_status" >&5 + echo "$as_me:4525: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4490: \"$ac_try\"") >&5 + { (eval echo "$as_me:4528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4493: \$? = $ac_status" >&5 + echo "$as_me:4531: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4514,7 +4552,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= -echo "$as_me:4517: checking dependency style of $depcc" >&5 +echo "$as_me:4555: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4576,7 +4614,7 @@ else fi fi -echo "$as_me:4579: result: $am_cv_CXX_dependencies_compiler_type" >&5 +echo "$as_me:4617: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6 CXXDEPMODE="depmode=$am_cv_CXX_dependencies_compiler_type" @@ -4604,7 +4642,7 @@ CXXDEPMODE="depmode=$am_cv_CXX_dependencies_compiler_type" # for cxxflags_choice in $cxxflags_list; do eval CXXFLAGS=\"\$cxxflags_$cxxflags_choice\" - echo "$as_me:4607: checking C++ compiler $CXX $CXXFLAGS" >&5 + echo "$as_me:4645: checking C++ compiler $CXX $CXXFLAGS" >&5 echo $ECHO_N "checking C++ compiler $CXX $CXXFLAGS... $ECHO_C" >&6 cat >conftest.cc <<EOF #include <iostream> @@ -4619,19 +4657,19 @@ main (void) EOF gmp_cxxcompile="$CXX $CXXFLAGS conftest.cc -o conftest >&5" -if { (eval echo "$as_me:4622: \"$gmp_cxxcompile\"") >&5 +if { (eval echo "$as_me:4660: \"$gmp_cxxcompile\"") >&5 (eval $gmp_cxxcompile) 2>&5 ac_status=$? - echo "$as_me:4625: \$? = $ac_status" >&5 + echo "$as_me:4663: \$? = $ac_status" >&5 (exit $ac_status); }; then rm -f conftest* - echo "$as_me:4628: result: yes" >&5 + echo "$as_me:4666: result: yes" >&5 echo "${ECHO_T}yes" >&6 want_cxx=yes break else rm -f conftest* - echo "$as_me:4634: result: no" >&5 + echo "$as_me:4672: result: no" >&5 echo "${ECHO_T}no" >&6 : fi @@ -4640,7 +4678,7 @@ fi # If --enable-cxx=yes but a C++ compiler can't be found, then abort. if test $want_cxx = no && test $enable_cxx = yes; then - { { echo "$as_me:4643: error: C++ compiler not available" >&5 + { { echo "$as_me:4681: error: C++ compiler not available" >&5 echo "$as_me: error: C++ compiler not available" >&2;} { (exit 1); exit 1; }; } fi @@ -4665,7 +4703,7 @@ ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -echo "$as_me:4668: checking how to run the C++ preprocessor" >&5 +echo "$as_me:4706: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then @@ -4682,18 +4720,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 4685 "configure" +#line 4723 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:4690: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4728: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4696: \$? = $ac_status" >&5 + echo "$as_me:4734: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -4716,17 +4754,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 4719 "configure" +#line 4757 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:4723: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4761: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4729: \$? = $ac_status" >&5 + echo "$as_me:4767: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -4763,7 +4801,7 @@ fi else ac_cv_prog_CXXCPP=$CXXCPP fi -echo "$as_me:4766: result: $CXXCPP" >&5 +echo "$as_me:4804: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes @@ -4773,18 +4811,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 4776 "configure" +#line 4814 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:4781: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4819: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4787: \$? = $ac_status" >&5 + echo "$as_me:4825: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -4807,17 +4845,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 4810 "configure" +#line 4848 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:4814: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4852: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4820: \$? = $ac_status" >&5 + echo "$as_me:4858: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -4845,7 +4883,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:4848: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 + { { echo "$as_me:4886: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -4859,7 +4897,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu fi cat >&5 <<EOF -configure:1219: Decided: +configure:1257: Decided: ABI=$ABI CC=$CC CFLAGS=$CFLAGS @@ -4882,7 +4920,7 @@ case $host_cpu in c90 | t90) cat >conftest.$ac_ext <<_ACEOF -#line 4885 "configure" +#line 4923 "configure" #include "confdefs.h" #ifdef _CRAYIEEE yes @@ -4907,7 +4945,7 @@ fi # Automake ansi2knr support. -echo "$as_me:4910: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "$as_me:4948: checking for ${CC-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${am_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4925,7 +4963,7 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" cat >conftest.$ac_ext <<_ACEOF -#line 4928 "configure" +#line 4966 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -4967,16 +5005,16 @@ return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4970: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5008: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4973: \$? = $ac_status" >&5 + echo "$as_me:5011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4976: \"$ac_try\"") >&5 + { (eval echo "$as_me:5014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4979: \$? = $ac_status" >&5 + echo "$as_me:5017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_prog_cc_stdc="$ac_arg"; break else @@ -4990,10 +5028,10 @@ CC="$ac_save_CC" fi if test -z "$am_cv_prog_cc_stdc"; then - echo "$as_me:4993: result: none needed" >&5 + echo "$as_me:5031: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 else - echo "$as_me:4996: result: $am_cv_prog_cc_stdc" >&5 + echo "$as_me:5034: result: $am_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$am_cv_prog_cc_stdc" >&6 fi case "x$am_cv_prog_cc_stdc" in @@ -5001,10 +5039,10 @@ case "x$am_cv_prog_cc_stdc" in *) CC="$CC $am_cv_prog_cc_stdc" ;; esac -echo "$as_me:5004: checking for function prototypes" >&5 +echo "$as_me:5042: checking for function prototypes" >&5 echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6 if test "$am_cv_prog_cc_stdc" != no; then - echo "$as_me:5007: result: yes" >&5 + echo "$as_me:5045: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -5013,18 +5051,18 @@ EOF U= ANSI2KNR= else - echo "$as_me:5016: result: no" >&5 + echo "$as_me:5054: result: no" >&5 echo "${ECHO_T}no" >&6 U=_ ANSI2KNR=./ansi2knr fi # Ensure some checks needed by ansi2knr itself. -echo "$as_me:5021: checking for ANSI C header files" >&5 +echo "$as_me:5059: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5027 "configure" +#line 5065 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -5032,13 +5070,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:5035: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5073: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5041: \$? = $ac_status" >&5 + echo "$as_me:5079: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5060,7 +5098,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 5063 "configure" +#line 5101 "configure" #include "confdefs.h" #include <string.h> @@ -5078,7 +5116,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 5081 "configure" +#line 5119 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5099,7 +5137,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 5102 "configure" +#line 5140 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -5125,15 +5163,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5128: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5166: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5131: \$? = $ac_status" >&5 + echo "$as_me:5169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5133: \"$ac_try\"") >&5 + { (eval echo "$as_me:5171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5136: \$? = $ac_status" >&5 + echo "$as_me:5174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5146,7 +5184,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5149: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5187: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5159,23 +5197,23 @@ fi for ac_header in string.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5162: checking for $ac_header" >&5 +echo "$as_me:5200: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5168 "configure" +#line 5206 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5172: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5210: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5178: \$? = $ac_status" >&5 + echo "$as_me:5216: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5194,7 +5232,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5197: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5235: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -5208,7 +5246,7 @@ gmp_user_AR=$AR if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 -echo "$as_me:5211: checking for $ac_word" >&5 +echo "$as_me:5249: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5223,7 +5261,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_AR="${ac_tool_prefix}ar" -echo "$as_me:5226: found $ac_dir/$ac_word" >&5 +echo "$as_me:5264: found $ac_dir/$ac_word" >&5 break done @@ -5231,10 +5269,10 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - echo "$as_me:5234: result: $AR" >&5 + echo "$as_me:5272: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:5237: result: no" >&5 + echo "$as_me:5275: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5243,7 +5281,7 @@ if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 -echo "$as_me:5246: checking for $ac_word" >&5 +echo "$as_me:5284: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5258,7 +5296,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_AR="ar" -echo "$as_me:5261: found $ac_dir/$ac_word" >&5 +echo "$as_me:5299: found $ac_dir/$ac_word" >&5 break done @@ -5267,10 +5305,10 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - echo "$as_me:5270: result: $ac_ct_AR" >&5 + echo "$as_me:5308: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else - echo "$as_me:5273: result: no" >&5 + echo "$as_me:5311: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5283,10 +5321,10 @@ if test -z "$gmp_user_AR"; then eval arflags=\"\$ar${abi1}_flags\" test -n "$arflags" || eval arflags=\"\$ar${abi2}_flags\" if test -n "$arflags"; then - echo "$as_me:5286: checking for extra ar flags" >&5 + echo "$as_me:5324: checking for extra ar flags" >&5 echo $ECHO_N "checking for extra ar flags... $ECHO_C" >&6 AR="$AR $arflags" - echo "$as_me:5289: result: $arflags" >&5 + echo "$as_me:5327: result: $arflags" >&5 echo "${ECHO_T}$arflags" >&6 fi fi @@ -5295,7 +5333,7 @@ if test -z "$AR_FLAGS"; then fi gmp_user_NM=$NM -echo "$as_me:5298: checking for BSD-compatible nm" >&5 +echo "$as_me:5336: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5330,7 +5368,7 @@ else test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi -echo "$as_me:5333: result: $lt_cv_path_NM" >&5 +echo "$as_me:5371: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" @@ -5346,7 +5384,7 @@ if test -z "$gmp_user_NM" && test -n "$ac_tool_prefix" && test "$NM" = nm; then gmp_save_ac_tool_prefix=$ac_tool_prefix ac_tool_prefix= NM= - echo "$as_me:5349: checking for BSD-compatible nm" >&5 + echo "$as_me:5387: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5381,7 +5419,7 @@ else test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi -echo "$as_me:5384: result: $lt_cv_path_NM" >&5 +echo "$as_me:5422: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" @@ -5392,10 +5430,10 @@ if test -z "$gmp_user_NM"; then eval nmflags=\"\$nm${abi1}_flags\" test -n "$nmflags" || eval nmflags=\"\$nm${abi2}_flags\" if test -n "$nmflags"; then - echo "$as_me:5395: checking for extra nm flags" >&5 + echo "$as_me:5433: checking for extra nm flags" >&5 echo $ECHO_N "checking for extra nm flags... $ECHO_C" >&6 NM="$NM $nmflags" - echo "$as_me:5398: result: $nmflags" >&5 + echo "$as_me:5436: result: $nmflags" >&5 echo "${ECHO_T}$nmflags" >&6 fi fi @@ -5424,7 +5462,7 @@ case $host in enable_shared=no fi if test "$enable_shared" != no && test "$enable_static" != no; then - { { echo "$as_me:5427: error: cannot build both static and DLL, since gmp.h is different for each. + { { echo "$as_me:5465: error: cannot build both static and DLL, since gmp.h is different for each. Use \"--disable-static --enable-shared\" to build just a DLL." >&5 echo "$as_me: error: cannot build both static and DLL, since gmp.h is different for each. Use \"--disable-static --enable-shared\" to build just a DLL." >&2;} @@ -5473,7 +5511,7 @@ if test "$cross_compiling" != no && test "$enable_shared" != no; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32*) -echo "$as_me:5476: checking for HOST_CC build system compiler" >&5 +echo "$as_me:5514: checking for HOST_CC build system compiler" >&5 echo $ECHO_N "checking for HOST_CC build system compiler... $ECHO_C" >&6 if test "${gmp_cv_prog_host_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5498,7 +5536,7 @@ EOF done rm -f conftest* if test -z "$gmp_cv_prog_host_cc"; then - { { echo "$as_me:5501: error: cannot find a build system compiler" >&5 + { { echo "$as_me:5539: error: cannot find a build system compiler" >&5 echo "$as_me: error: cannot find a build system compiler" >&2;} { (exit 1); exit 1; }; } fi @@ -5506,7 +5544,7 @@ echo "$as_me: error: cannot find a build system compiler" >&2;} fi fi -echo "$as_me:5509: result: $gmp_cv_prog_host_cc" >&5 +echo "$as_me:5547: result: $gmp_cv_prog_host_cc" >&5 echo "${ECHO_T}$gmp_cv_prog_host_cc" >&6 HOST_CC=$gmp_cv_prog_host_cc @@ -5612,7 +5650,7 @@ fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. - echo "$as_me:5615: checking for ld used by GCC" >&5 + echo "$as_me:5653: checking for ld used by GCC" >&5 echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6 case $host in *-*-mingw*) @@ -5642,10 +5680,10 @@ echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6 ;; esac elif test "$with_gnu_ld" = yes; then - echo "$as_me:5645: checking for GNU ld" >&5 + echo "$as_me:5683: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else - echo "$as_me:5648: checking for non-GNU ld" >&5 + echo "$as_me:5686: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then @@ -5676,16 +5714,16 @@ fi LD="$lt_cv_path_LD" if test -n "$LD"; then - echo "$as_me:5679: result: $LD" >&5 + echo "$as_me:5717: result: $LD" >&5 echo "${ECHO_T}$LD" >&6 else - echo "$as_me:5682: result: no" >&5 + echo "$as_me:5720: result: no" >&5 echo "${ECHO_T}no" >&6 fi -test -z "$LD" && { { echo "$as_me:5685: error: no acceptable ld found in \$PATH" >&5 +test -z "$LD" && { { echo "$as_me:5723: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:5688: checking if the linker ($LD) is GNU ld" >&5 +echo "$as_me:5726: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5697,18 +5735,18 @@ else lt_cv_prog_gnu_ld=no fi fi -echo "$as_me:5700: result: $lt_cv_prog_gnu_ld" >&5 +echo "$as_me:5738: result: $lt_cv_prog_gnu_ld" >&5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld -echo "$as_me:5704: checking for $LD option to reload object files" >&5 +echo "$as_me:5742: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6 if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi -echo "$as_me:5711: result: $lt_cv_ld_reload_flag" >&5 +echo "$as_me:5749: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6 reload_flag=$lt_cv_ld_reload_flag case $reload_flag in @@ -5717,18 +5755,18 @@ case $reload_flag in esac reload_cmds='$LD$reload_flag -o $output$reload_objs' -echo "$as_me:5720: checking whether ln -s works" >&5 +echo "$as_me:5758: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then - echo "$as_me:5724: result: yes" >&5 + echo "$as_me:5762: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:5727: result: no, using $LN_S" >&5 + echo "$as_me:5765: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi -echo "$as_me:5731: checking how to recognise dependant libraries" >&5 +echo "$as_me:5769: checking how to recognise dependant libraries" >&5 echo $ECHO_N "checking how to recognise dependant libraries... $ECHO_C" >&6 if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5915,7 +5953,7 @@ sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7* | sysv4*uw2*) esac fi -echo "$as_me:5918: result: $lt_cv_deplibs_check_method" >&5 +echo "$as_me:5956: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6 file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method @@ -5941,10 +5979,10 @@ case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext - if { (eval echo "$as_me:5944: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:5982: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5947: \$? = $ac_status" >&5 + echo "$as_me:5985: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) @@ -5959,11 +5997,11 @@ ia64-*-hpux*) ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 5962 "configure"' > conftest.$ac_ext - if { (eval echo "$as_me:5963: \"$ac_compile\"") >&5 + echo '#line 6000 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:6001: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5966: \$? = $ac_status" >&5 + echo "$as_me:6004: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) @@ -5984,7 +6022,7 @@ ia64-*-hpux*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" - echo "$as_me:5987: checking whether the C compiler needs -belf" >&5 + echo "$as_me:6025: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6 if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5996,7 +6034,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu cat >conftest.$ac_ext <<_ACEOF -#line 5999 "configure" +#line 6037 "configure" #include "confdefs.h" int @@ -6008,16 +6046,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6011: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6049: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6014: \$? = $ac_status" >&5 + echo "$as_me:6052: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6017: \"$ac_try\"") >&5 + { (eval echo "$as_me:6055: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6020: \$? = $ac_status" >&5 + echo "$as_me:6058: \$? = $ac_status" >&5 (exit $ac_status); }; }; then lt_cv_cc_needs_belf=yes else @@ -6033,7 +6071,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu fi -echo "$as_me:6036: result: $lt_cv_cc_needs_belf" >&5 +echo "$as_me:6074: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf @@ -6044,7 +6082,7 @@ echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 -echo "$as_me:6047: checking for $ac_word" >&5 +echo "$as_me:6085: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_DLLTOOL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6059,7 +6097,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" -echo "$as_me:6062: found $ac_dir/$ac_word" >&5 +echo "$as_me:6100: found $ac_dir/$ac_word" >&5 break done @@ -6067,10 +6105,10 @@ fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then - echo "$as_me:6070: result: $DLLTOOL" >&5 + echo "$as_me:6108: result: $DLLTOOL" >&5 echo "${ECHO_T}$DLLTOOL" >&6 else - echo "$as_me:6073: result: no" >&5 + echo "$as_me:6111: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6079,7 +6117,7 @@ if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 -echo "$as_me:6082: checking for $ac_word" >&5 +echo "$as_me:6120: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6094,7 +6132,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_DLLTOOL="dlltool" -echo "$as_me:6097: found $ac_dir/$ac_word" >&5 +echo "$as_me:6135: found $ac_dir/$ac_word" >&5 break done @@ -6103,10 +6141,10 @@ fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then - echo "$as_me:6106: result: $ac_ct_DLLTOOL" >&5 + echo "$as_me:6144: result: $ac_ct_DLLTOOL" >&5 echo "${ECHO_T}$ac_ct_DLLTOOL" >&6 else - echo "$as_me:6109: result: no" >&5 + echo "$as_me:6147: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6118,7 +6156,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. set dummy ${ac_tool_prefix}as; ac_word=$2 -echo "$as_me:6121: checking for $ac_word" >&5 +echo "$as_me:6159: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6133,7 +6171,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_AS="${ac_tool_prefix}as" -echo "$as_me:6136: found $ac_dir/$ac_word" >&5 +echo "$as_me:6174: found $ac_dir/$ac_word" >&5 break done @@ -6141,10 +6179,10 @@ fi fi AS=$ac_cv_prog_AS if test -n "$AS"; then - echo "$as_me:6144: result: $AS" >&5 + echo "$as_me:6182: result: $AS" >&5 echo "${ECHO_T}$AS" >&6 else - echo "$as_me:6147: result: no" >&5 + echo "$as_me:6185: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6153,7 +6191,7 @@ if test -z "$ac_cv_prog_AS"; then ac_ct_AS=$AS # Extract the first word of "as", so it can be a program name with args. set dummy as; ac_word=$2 -echo "$as_me:6156: checking for $ac_word" >&5 +echo "$as_me:6194: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6168,7 +6206,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_AS="as" -echo "$as_me:6171: found $ac_dir/$ac_word" >&5 +echo "$as_me:6209: found $ac_dir/$ac_word" >&5 break done @@ -6177,10 +6215,10 @@ fi fi ac_ct_AS=$ac_cv_prog_ac_ct_AS if test -n "$ac_ct_AS"; then - echo "$as_me:6180: result: $ac_ct_AS" >&5 + echo "$as_me:6218: result: $ac_ct_AS" >&5 echo "${ECHO_T}$ac_ct_AS" >&6 else - echo "$as_me:6183: result: no" >&5 + echo "$as_me:6221: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6192,7 +6230,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 -echo "$as_me:6195: checking for $ac_word" >&5 +echo "$as_me:6233: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_OBJDUMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6207,7 +6245,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" -echo "$as_me:6210: found $ac_dir/$ac_word" >&5 +echo "$as_me:6248: found $ac_dir/$ac_word" >&5 break done @@ -6215,10 +6253,10 @@ fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then - echo "$as_me:6218: result: $OBJDUMP" >&5 + echo "$as_me:6256: result: $OBJDUMP" >&5 echo "${ECHO_T}$OBJDUMP" >&6 else - echo "$as_me:6221: result: no" >&5 + echo "$as_me:6259: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6227,7 +6265,7 @@ if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 -echo "$as_me:6230: checking for $ac_word" >&5 +echo "$as_me:6268: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6242,7 +6280,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_OBJDUMP="objdump" -echo "$as_me:6245: found $ac_dir/$ac_word" >&5 +echo "$as_me:6283: found $ac_dir/$ac_word" >&5 break done @@ -6251,10 +6289,10 @@ fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then - echo "$as_me:6254: result: $ac_ct_OBJDUMP" >&5 + echo "$as_me:6292: result: $ac_ct_OBJDUMP" >&5 echo "${ECHO_T}$ac_ct_OBJDUMP" >&6 else - echo "$as_me:6257: result: no" >&5 + echo "$as_me:6295: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6265,13 +6303,13 @@ fi # recent cygwin and mingw systems supply a stub DllMain which the user # can override, but on older systems we have to supply one - echo "$as_me:6268: checking if libtool should supply DllMain function" >&5 + echo "$as_me:6306: checking if libtool should supply DllMain function" >&5 echo $ECHO_N "checking if libtool should supply DllMain function... $ECHO_C" >&6 if test "${lt_cv_need_dllmain+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6274 "configure" +#line 6312 "configure" #include "confdefs.h" int @@ -6284,16 +6322,16 @@ extern int __attribute__((__stdcall__)) DllMain(void*, int, void*); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6287: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6325: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6290: \$? = $ac_status" >&5 + echo "$as_me:6328: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6293: \"$ac_try\"") >&5 + { (eval echo "$as_me:6331: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6296: \$? = $ac_status" >&5 + echo "$as_me:6334: \$? = $ac_status" >&5 (exit $ac_status); }; }; then lt_cv_need_dllmain=no else @@ -6303,7 +6341,7 @@ lt_cv_need_dllmain=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6306: result: $lt_cv_need_dllmain" >&5 +echo "$as_me:6344: result: $lt_cv_need_dllmain" >&5 echo "${ECHO_T}$lt_cv_need_dllmain" >&6 case $host/$CC in @@ -6312,13 +6350,13 @@ echo "${ECHO_T}$lt_cv_need_dllmain" >&6 # require "-mdll" SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -mdll" - echo "$as_me:6315: checking how to link DLLs" >&5 + echo "$as_me:6353: checking how to link DLLs" >&5 echo $ECHO_N "checking how to link DLLs... $ECHO_C" >&6 if test "${lt_cv_cc_dll_switch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6321 "configure" +#line 6359 "configure" #include "confdefs.h" int @@ -6330,16 +6368,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6333: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6371: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6336: \$? = $ac_status" >&5 + echo "$as_me:6374: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6339: \"$ac_try\"") >&5 + { (eval echo "$as_me:6377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6342: \$? = $ac_status" >&5 + echo "$as_me:6380: \$? = $ac_status" >&5 (exit $ac_status); }; }; then lt_cv_cc_dll_switch=-mdll else @@ -6349,7 +6387,7 @@ lt_cv_cc_dll_switch=-dll fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6352: result: $lt_cv_cc_dll_switch" >&5 +echo "$as_me:6390: result: $lt_cv_cc_dll_switch" >&5 echo "${ECHO_T}$lt_cv_cc_dll_switch" >&6 CFLAGS="$SAVE_CFLAGS" ;; *-*-cygwin* | *-*-pw32*) @@ -6366,23 +6404,23 @@ need_locks="$enable_libtool_lock" for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6369: checking for $ac_header" >&5 +echo "$as_me:6407: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6375 "configure" +#line 6413 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6379: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6417: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:6385: \$? = $ac_status" >&5 + echo "$as_me:6423: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6401,7 +6439,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6404: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6442: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -6414,7 +6452,7 @@ done # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments -echo "$as_me:6417: checking the maximum length of command line arguments" >&5 +echo "$as_me:6455: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6 if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6463,15 +6501,15 @@ else fi if test -n $lt_cv_sys_max_cmd_len ; then - echo "$as_me:6466: result: $lt_cv_sys_max_cmd_len" >&5 + echo "$as_me:6504: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6 else - echo "$as_me:6469: result: none" >&5 + echo "$as_me:6507: result: none" >&5 echo "${ECHO_T}none" >&6 fi # Check for command to grab the raw symbol name followed by C symbol from nm. -echo "$as_me:6474: checking command to parse $NM output from $compiler object" >&5 +echo "$as_me:6512: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6556,17 +6594,17 @@ void nm_test_func(){} int main(){nm_test_var='a';nm_test_func();return(0);} EOF - if { (eval echo "$as_me:6559: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:6597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6562: \$? = $ac_status" >&5 + echo "$as_me:6600: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm - if { (eval echo "$as_me:6566: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 + if { (eval echo "$as_me:6604: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? - echo "$as_me:6569: \$? = $ac_status" >&5 + echo "$as_me:6607: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then @@ -6618,10 +6656,10 @@ EOF lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" - if { (eval echo "$as_me:6621: \"$ac_link\"") >&5 + if { (eval echo "$as_me:6659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6624: \$? = $ac_status" >&5 + echo "$as_me:6662: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext}; then pipe_works=yes fi @@ -6656,14 +6694,14 @@ if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - echo "$as_me:6659: result: failed" >&5 + echo "$as_me:6697: result: failed" >&5 echo "${ECHO_T}failed" >&6 else - echo "$as_me:6662: result: ok" >&5 + echo "$as_me:6700: result: ok" >&5 echo "${ECHO_T}ok" >&6 fi -echo "$as_me:6666: checking for objdir" >&5 +echo "$as_me:6704: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6 if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6678,7 +6716,7 @@ else fi rmdir .libs 2>/dev/null fi -echo "$as_me:6681: result: $lt_cv_objdir" >&5 +echo "$as_me:6719: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6 objdir=$lt_cv_objdir @@ -6726,7 +6764,7 @@ with_gnu_ld="$lt_cv_prog_gnu_ld" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:6729: checking for $ac_word" >&5 +echo "$as_me:6767: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6741,7 +6779,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:6744: found $ac_dir/$ac_word" >&5 +echo "$as_me:6782: found $ac_dir/$ac_word" >&5 break done @@ -6749,10 +6787,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:6752: result: $RANLIB" >&5 + echo "$as_me:6790: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:6755: result: no" >&5 + echo "$as_me:6793: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6761,7 +6799,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:6764: checking for $ac_word" >&5 +echo "$as_me:6802: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6776,7 +6814,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:6779: found $ac_dir/$ac_word" >&5 +echo "$as_me:6817: found $ac_dir/$ac_word" >&5 break done @@ -6785,10 +6823,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:6788: result: $ac_ct_RANLIB" >&5 + echo "$as_me:6826: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:6791: result: no" >&5 + echo "$as_me:6829: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6800,7 +6838,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 -echo "$as_me:6803: checking for $ac_word" >&5 +echo "$as_me:6841: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6815,7 +6853,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_STRIP="${ac_tool_prefix}strip" -echo "$as_me:6818: found $ac_dir/$ac_word" >&5 +echo "$as_me:6856: found $ac_dir/$ac_word" >&5 break done @@ -6823,10 +6861,10 @@ fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then - echo "$as_me:6826: result: $STRIP" >&5 + echo "$as_me:6864: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else - echo "$as_me:6829: result: no" >&5 + echo "$as_me:6867: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6835,7 +6873,7 @@ if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 -echo "$as_me:6838: checking for $ac_word" >&5 +echo "$as_me:6876: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6850,7 +6888,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_STRIP="strip" -echo "$as_me:6853: found $ac_dir/$ac_word" >&5 +echo "$as_me:6891: found $ac_dir/$ac_word" >&5 break done @@ -6859,10 +6897,10 @@ fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then - echo "$as_me:6862: result: $ac_ct_STRIP" >&5 + echo "$as_me:6900: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else - echo "$as_me:6865: result: no" >&5 + echo "$as_me:6903: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6911,7 +6949,7 @@ fi case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then - echo "$as_me:6914: checking for ${ac_tool_prefix}file" >&5 + echo "$as_me:6952: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6964,16 +7002,16 @@ fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then - echo "$as_me:6967: result: $MAGIC_CMD" >&5 + echo "$as_me:7005: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else - echo "$as_me:6970: result: no" >&5 + echo "$as_me:7008: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then - echo "$as_me:6976: checking for file" >&5 + echo "$as_me:7014: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7026,10 +7064,10 @@ fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then - echo "$as_me:7029: result: $MAGIC_CMD" >&5 + echo "$as_me:7067: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else - echo "$as_me:7032: result: no" >&5 + echo "$as_me:7070: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7102,11 +7140,11 @@ if test "$GCC" = no; then esac fi if test -n "$lt_prog_cc_shlib"; then - { echo "$as_me:7105: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&5 + { echo "$as_me:7143: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&5 echo "$as_me: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&2;} if echo "$old_CC $old_CFLAGS " | egrep -e "[ ]$lt_prog_cc_shlib[ ]" >/dev/null; then : else - { echo "$as_me:7109: WARNING: add \`$lt_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5 + { echo "$as_me:7147: WARNING: add \`$lt_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5 echo "$as_me: WARNING: add \`$lt_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&2;} lt_cv_prog_cc_can_build_shared=no fi @@ -7115,7 +7153,7 @@ fi # # Check to make sure the static flag actually works. # -echo "$as_me:7118: checking if $compiler static flag $lt_prog_compiler_static works" >&5 +echo "$as_me:7156: checking if $compiler static flag $lt_prog_compiler_static works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_prog_compiler_static works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7138,7 +7176,7 @@ else LDFLAGS="$save_LDFLAGS" fi -echo "$as_me:7141: result: $lt_prog_compiler_static_works" >&5 +echo "$as_me:7179: result: $lt_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works" >&6 if test x"$lt_prog_compiler_static_works" = xyes; then @@ -7152,7 +7190,7 @@ lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' - echo "$as_me:7155: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 + echo "$as_me:7193: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7177,7 +7215,7 @@ else CFLAGS="$save_CFLAGS" fi -echo "$as_me:7180: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +echo "$as_me:7218: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then @@ -7192,7 +7230,7 @@ lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= -echo "$as_me:7195: checking for $compiler option to produce PIC" >&5 +echo "$as_me:7233: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then @@ -7345,14 +7383,14 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 esac fi -echo "$as_me:7348: result: $lt_prog_compiler_pic" >&5 +echo "$as_me:7386: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then - echo "$as_me:7355: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 + echo "$as_me:7393: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7377,7 +7415,7 @@ else CFLAGS="$save_CFLAGS" fi -echo "$as_me:7380: result: $lt_prog_compiler_pic_works" >&5 +echo "$as_me:7418: result: $lt_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6 if test x"$lt_prog_compiler_pic_works" = xyes; then @@ -7401,7 +7439,7 @@ case "$host_os" in ;; esac -echo "$as_me:7404: checking if $compiler supports -c -o file.$ac_objext" >&5 +echo "$as_me:7442: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7442,13 +7480,13 @@ else $rm conftest* fi -echo "$as_me:7445: result: $lt_cv_prog_compiler_c_o" >&5 +echo "$as_me:7483: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user - echo "$as_me:7451: checking if we can lock with hard links" >&5 + echo "$as_me:7489: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* @@ -7456,10 +7494,10 @@ echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no - echo "$as_me:7459: result: $hard_links" >&5 + echo "$as_me:7497: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then - { echo "$as_me:7462: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 + { echo "$as_me:7500: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi @@ -7467,7 +7505,7 @@ else need_locks=no fi -echo "$as_me:7470: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +echo "$as_me:7508: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= @@ -7817,7 +7855,7 @@ EOF allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF -#line 7820 "configure" +#line 7858 "configure" #include "confdefs.h" int @@ -7829,16 +7867,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7832: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7870: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7835: \$? = $ac_status" >&5 + echo "$as_me:7873: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7838: \"$ac_try\"") >&5 + { (eval echo "$as_me:7876: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7841: \$? = $ac_status" >&5 + echo "$as_me:7879: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } @@ -7863,7 +7901,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF -#line 7866 "configure" +#line 7904 "configure" #include "confdefs.h" int @@ -7875,16 +7913,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7878: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7916: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7881: \$? = $ac_status" >&5 + echo "$as_me:7919: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7884: \"$ac_try\"") >&5 + { (eval echo "$as_me:7922: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7887: \$? = $ac_status" >&5 + echo "$as_me:7925: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } @@ -8251,7 +8289,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi esac fi -echo "$as_me:8254: result: $ld_shlibs" >&5 +echo "$as_me:8292: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6 test "$ld_shlibs" = no && can_build_shared=no @@ -8273,15 +8311,15 @@ if test "$enable_shared" = yes && test "$GCC" = yes; then # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. - echo "$as_me:8276: checking whether -lc should be explicitly linked in" >&5 + echo "$as_me:8314: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* echo 'static int dummy;' > conftest.$ac_ext - if { (eval echo "$as_me:8281: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:8319: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8284: \$? = $ac_status" >&5 + echo "$as_me:8322: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest @@ -8295,10 +8333,10 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= - if { (eval echo "$as_me:8298: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + if { (eval echo "$as_me:8336: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? - echo "$as_me:8301: \$? = $ac_status" >&5 + echo "$as_me:8339: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no @@ -8310,13 +8348,13 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& cat conftest.err 1>&5 fi $rm conftest* - echo "$as_me:8313: result: $archive_cmds_need_lc" >&5 + echo "$as_me:8351: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6 ;; esac fi -echo "$as_me:8319: checking how to hardcode library paths into programs" >&5 +echo "$as_me:8357: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ @@ -8340,7 +8378,7 @@ else # directories. hardcode_action=unsupported fi -echo "$as_me:8343: result: $hardcode_action" >&5 +echo "$as_me:8381: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6 if test "$hardcode_action" = relink; then @@ -8354,19 +8392,19 @@ fi striplib= old_striplib= -echo "$as_me:8357: checking whether stripping libraries is possible" >&5 +echo "$as_me:8395: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" - echo "$as_me:8362: result: yes" >&5 + echo "$as_me:8400: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:8365: result: no" >&5 + echo "$as_me:8403: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:8369: checking dynamic linker characteristics" >&5 +echo "$as_me:8407: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' @@ -8805,7 +8843,7 @@ uts4*) dynamic_linker=no ;; esac -echo "$as_me:8808: result: $dynamic_linker" >&5 +echo "$as_me:8846: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no @@ -8830,13 +8868,13 @@ else ;; *) - echo "$as_me:8833: checking for shl_load" >&5 + echo "$as_me:8871: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8839 "configure" +#line 8877 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. */ @@ -8867,16 +8905,16 @@ f = shl_load; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8870: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8908: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8873: \$? = $ac_status" >&5 + echo "$as_me:8911: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8876: \"$ac_try\"") >&5 + { (eval echo "$as_me:8914: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8879: \$? = $ac_status" >&5 + echo "$as_me:8917: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shl_load=yes else @@ -8886,12 +8924,12 @@ ac_cv_func_shl_load=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8889: result: $ac_cv_func_shl_load" >&5 +echo "$as_me:8927: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else - echo "$as_me:8894: checking for shl_load in -ldld" >&5 + echo "$as_me:8932: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8899,7 +8937,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8902 "configure" +#line 8940 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8918,16 +8956,16 @@ shl_load (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8921: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8959: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8924: \$? = $ac_status" >&5 + echo "$as_me:8962: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8927: \"$ac_try\"") >&5 + { (eval echo "$as_me:8965: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8930: \$? = $ac_status" >&5 + echo "$as_me:8968: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_shl_load=yes else @@ -8938,18 +8976,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8941: result: $ac_cv_lib_dld_shl_load" >&5 +echo "$as_me:8979: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else - echo "$as_me:8946: checking for dlopen" >&5 + echo "$as_me:8984: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8952 "configure" +#line 8990 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. */ @@ -8980,16 +9018,16 @@ f = dlopen; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8983: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9021: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8986: \$? = $ac_status" >&5 + echo "$as_me:9024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8989: \"$ac_try\"") >&5 + { (eval echo "$as_me:9027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8992: \$? = $ac_status" >&5 + echo "$as_me:9030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_dlopen=yes else @@ -8999,12 +9037,12 @@ ac_cv_func_dlopen=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:9002: result: $ac_cv_func_dlopen" >&5 +echo "$as_me:9040: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else - echo "$as_me:9007: checking for dlopen in -ldl" >&5 + echo "$as_me:9045: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9012,7 +9050,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9015 "configure" +#line 9053 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9031,16 +9069,16 @@ dlopen (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9034: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9072: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9037: \$? = $ac_status" >&5 + echo "$as_me:9075: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9040: \"$ac_try\"") >&5 + { (eval echo "$as_me:9078: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9043: \$? = $ac_status" >&5 + echo "$as_me:9081: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else @@ -9051,12 +9089,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9054: result: $ac_cv_lib_dl_dlopen" >&5 +echo "$as_me:9092: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else - echo "$as_me:9059: checking for dlopen in -lsvld" >&5 + echo "$as_me:9097: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9064,7 +9102,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9067 "configure" +#line 9105 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9083,16 +9121,16 @@ dlopen (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9086: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9124: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9089: \$? = $ac_status" >&5 + echo "$as_me:9127: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9092: \"$ac_try\"") >&5 + { (eval echo "$as_me:9130: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9095: \$? = $ac_status" >&5 + echo "$as_me:9133: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_svld_dlopen=yes else @@ -9103,12 +9141,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9106: result: $ac_cv_lib_svld_dlopen" >&5 +echo "$as_me:9144: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else - echo "$as_me:9111: checking for dld_link in -ldld" >&5 + echo "$as_me:9149: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9116,7 +9154,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9119 "configure" +#line 9157 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9135,16 +9173,16 @@ dld_link (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9138: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9176: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9141: \$? = $ac_status" >&5 + echo "$as_me:9179: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9144: \"$ac_try\"") >&5 + { (eval echo "$as_me:9182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9147: \$? = $ac_status" >&5 + echo "$as_me:9185: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_dld_link=yes else @@ -9155,7 +9193,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9158: result: $ac_cv_lib_dld_dld_link" >&5 +echo "$as_me:9196: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" @@ -9191,7 +9229,7 @@ fi save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" - echo "$as_me:9194: checking whether a program can dlopen itself" >&5 + echo "$as_me:9232: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9202,7 +9240,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 9205 "configure" +#line 9243 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -9263,10 +9301,10 @@ int main () exit (status); } EOF - if { (eval echo "$as_me:9266: \"$ac_link\"") >&5 + if { (eval echo "$as_me:9304: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9269: \$? = $ac_status" >&5 + echo "$as_me:9307: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? @@ -9283,12 +9321,12 @@ fi rm -fr conftest* fi -echo "$as_me:9286: result: $lt_cv_dlopen_self" >&5 +echo "$as_me:9324: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" - echo "$as_me:9291: checking whether a statically linked program can dlopen itself" >&5 + echo "$as_me:9329: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9299,7 +9337,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 9302 "configure" +#line 9340 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -9360,10 +9398,10 @@ int main () exit (status); } EOF - if { (eval echo "$as_me:9363: \"$ac_link\"") >&5 + if { (eval echo "$as_me:9401: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9366: \$? = $ac_status" >&5 + echo "$as_me:9404: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? @@ -9380,7 +9418,7 @@ fi rm -fr conftest* fi -echo "$as_me:9383: result: $lt_cv_dlopen_self_static" >&5 +echo "$as_me:9421: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi @@ -9402,12 +9440,12 @@ echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi # Report which librarie types wil actually be built -echo "$as_me:9405: checking if libtool supports shared libraries" >&5 +echo "$as_me:9443: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 -echo "$as_me:9407: result: $can_build_shared" >&5 +echo "$as_me:9445: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 -echo "$as_me:9410: checking whether to build shared libraries" >&5 +echo "$as_me:9448: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no @@ -9428,14 +9466,14 @@ aix4*) fi ;; esac -echo "$as_me:9431: result: $enable_shared" >&5 +echo "$as_me:9469: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 -echo "$as_me:9434: checking whether to build static libraries" >&5 +echo "$as_me:9472: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes -echo "$as_me:9438: result: $enable_static" >&5 +echo "$as_me:9476: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 # The else clause should only fire when bootstrapping the @@ -9515,7 +9553,7 @@ if test -f "$ltmain"; then cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" - { echo "$as_me:9518: creating $ofile" >&5 + { echo "$as_me:9556: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" @@ -10073,17 +10111,17 @@ fi; if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then - { echo "$as_me:10076: WARNING: output file \`$ofile' does not exist" >&5 + { echo "$as_me:10114: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then - { echo "$as_me:10083: WARNING: output file \`$ofile' does not look like a libtool script" >&5 + { echo "$as_me:10121: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else - { echo "$as_me:10086: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 + { echo "$as_me:10124: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi @@ -10098,7 +10136,7 @@ echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; - *) { { echo "$as_me:10101: error: invalid tag name: $tagname" >&5 + *) { { echo "$as_me:10139: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; @@ -10106,7 +10144,7 @@ echo "$as_me: error: invalid tag name: $tagname" >&2;} if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then - { { echo "$as_me:10109: error: tag name \"$tagname\" already exists" >&5 + { { echo "$as_me:10147: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi @@ -10233,7 +10271,7 @@ else fi # PORTME: fill in a description of your system's C++ link characteristics -echo "$as_me:10236: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +echo "$as_me:10274: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 ld_shlibs_CXX=yes case $host_os in @@ -10324,7 +10362,7 @@ case $host_os in allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF -#line 10327 "configure" +#line 10365 "configure" #include "confdefs.h" int @@ -10336,16 +10374,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10339: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10342: \$? = $ac_status" >&5 + echo "$as_me:10380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10345: \"$ac_try\"") >&5 + { (eval echo "$as_me:10383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10348: \$? = $ac_status" >&5 + echo "$as_me:10386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } @@ -10371,7 +10409,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF -#line 10374 "configure" +#line 10412 "configure" #include "confdefs.h" int @@ -10383,16 +10421,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10386: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10424: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10389: \$? = $ac_status" >&5 + echo "$as_me:10427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10392: \"$ac_try\"") >&5 + { (eval echo "$as_me:10430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10395: \$? = $ac_status" >&5 + echo "$as_me:10433: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } @@ -10890,7 +10928,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ld_shlibs_CXX=no ;; esac -echo "$as_me:10893: result: $ld_shlibs_CXX" >&5 +echo "$as_me:10931: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no @@ -10906,10 +10944,10 @@ private: }; EOF -if { (eval echo "$as_me:10909: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10947: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10912: \$? = $ac_status" >&5 + echo "$as_me:10950: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. @@ -11009,7 +11047,7 @@ lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= -echo "$as_me:11012: checking for $compiler option to produce PIC" >&5 +echo "$as_me:11050: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 # C++ specific cases for pic, static, wl, etc. @@ -11245,14 +11283,14 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 esac fi -echo "$as_me:11248: result: $lt_prog_compiler_pic_CXX" >&5 +echo "$as_me:11286: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then - echo "$as_me:11255: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 + echo "$as_me:11293: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11277,7 +11315,7 @@ else CFLAGS="$save_CFLAGS" fi -echo "$as_me:11280: result: $lt_prog_compiler_pic_works_CXX" >&5 +echo "$as_me:11318: result: $lt_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6 if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then @@ -11301,7 +11339,7 @@ case "$host_os" in ;; esac -echo "$as_me:11304: checking if $compiler supports -c -o file.$ac_objext" >&5 +echo "$as_me:11342: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11342,13 +11380,13 @@ else $rm conftest* fi -echo "$as_me:11345: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +echo "$as_me:11383: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user - echo "$as_me:11351: checking if we can lock with hard links" >&5 + echo "$as_me:11389: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* @@ -11356,10 +11394,10 @@ echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no - echo "$as_me:11359: result: $hard_links" >&5 + echo "$as_me:11397: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then - { echo "$as_me:11362: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 + { echo "$as_me:11400: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi @@ -11367,7 +11405,7 @@ else need_locks=no fi -echo "$as_me:11370: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +echo "$as_me:11408: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols' @@ -11389,7 +11427,7 @@ echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared librar ;; esac -echo "$as_me:11392: result: $ld_shlibs_CXX" >&5 +echo "$as_me:11430: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no @@ -11411,15 +11449,15 @@ if test "$enable_shared" = yes && test "$GCC" = yes; then # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. - echo "$as_me:11414: checking whether -lc should be explicitly linked in" >&5 + echo "$as_me:11452: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* echo 'static int dummy;' > conftest.$ac_ext - if { (eval echo "$as_me:11419: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:11457: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11422: \$? = $ac_status" >&5 + echo "$as_me:11460: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest @@ -11433,10 +11471,10 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= - if { (eval echo "$as_me:11436: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + if { (eval echo "$as_me:11474: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? - echo "$as_me:11439: \$? = $ac_status" >&5 + echo "$as_me:11477: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no @@ -11448,13 +11486,13 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& cat conftest.err 1>&5 fi $rm conftest* - echo "$as_me:11451: result: $archive_cmds_need_lc_CXX" >&5 + echo "$as_me:11489: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6 ;; esac fi -echo "$as_me:11457: checking how to hardcode library paths into programs" >&5 +echo "$as_me:11495: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ @@ -11478,7 +11516,7 @@ else # directories. hardcode_action_CXX=unsupported fi -echo "$as_me:11481: result: $hardcode_action_CXX" >&5 +echo "$as_me:11519: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6 if test "$hardcode_action_CXX" = relink; then @@ -11492,19 +11530,19 @@ fi striplib= old_striplib= -echo "$as_me:11495: checking whether stripping libraries is possible" >&5 +echo "$as_me:11533: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" - echo "$as_me:11500: result: yes" >&5 + echo "$as_me:11538: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:11503: result: no" >&5 + echo "$as_me:11541: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:11507: checking dynamic linker characteristics" >&5 +echo "$as_me:11545: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' @@ -11943,7 +11981,7 @@ uts4*) dynamic_linker=no ;; esac -echo "$as_me:11946: result: $dynamic_linker" >&5 +echo "$as_me:11984: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no @@ -11968,13 +12006,13 @@ else ;; *) - echo "$as_me:11971: checking for shl_load" >&5 + echo "$as_me:12009: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11977 "configure" +#line 12015 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. */ @@ -12005,16 +12043,16 @@ f = shl_load; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12008: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12046: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12011: \$? = $ac_status" >&5 + echo "$as_me:12049: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12014: \"$ac_try\"") >&5 + { (eval echo "$as_me:12052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12017: \$? = $ac_status" >&5 + echo "$as_me:12055: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shl_load=yes else @@ -12024,12 +12062,12 @@ ac_cv_func_shl_load=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12027: result: $ac_cv_func_shl_load" >&5 +echo "$as_me:12065: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else - echo "$as_me:12032: checking for shl_load in -ldld" >&5 + echo "$as_me:12070: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12037,7 +12075,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12040 "configure" +#line 12078 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12056,16 +12094,16 @@ shl_load (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12059: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12097: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12062: \$? = $ac_status" >&5 + echo "$as_me:12100: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12065: \"$ac_try\"") >&5 + { (eval echo "$as_me:12103: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12068: \$? = $ac_status" >&5 + echo "$as_me:12106: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_shl_load=yes else @@ -12076,18 +12114,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12079: result: $ac_cv_lib_dld_shl_load" >&5 +echo "$as_me:12117: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else - echo "$as_me:12084: checking for dlopen" >&5 + echo "$as_me:12122: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12090 "configure" +#line 12128 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. */ @@ -12118,16 +12156,16 @@ f = dlopen; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12121: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12159: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12124: \$? = $ac_status" >&5 + echo "$as_me:12162: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12127: \"$ac_try\"") >&5 + { (eval echo "$as_me:12165: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12130: \$? = $ac_status" >&5 + echo "$as_me:12168: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_dlopen=yes else @@ -12137,12 +12175,12 @@ ac_cv_func_dlopen=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12140: result: $ac_cv_func_dlopen" >&5 +echo "$as_me:12178: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else - echo "$as_me:12145: checking for dlopen in -ldl" >&5 + echo "$as_me:12183: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12150,7 +12188,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12153 "configure" +#line 12191 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12169,16 +12207,16 @@ dlopen (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12172: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12210: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12175: \$? = $ac_status" >&5 + echo "$as_me:12213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12178: \"$ac_try\"") >&5 + { (eval echo "$as_me:12216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12181: \$? = $ac_status" >&5 + echo "$as_me:12219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else @@ -12189,12 +12227,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12192: result: $ac_cv_lib_dl_dlopen" >&5 +echo "$as_me:12230: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else - echo "$as_me:12197: checking for dlopen in -lsvld" >&5 + echo "$as_me:12235: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12202,7 +12240,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12205 "configure" +#line 12243 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12221,16 +12259,16 @@ dlopen (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12224: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12262: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12227: \$? = $ac_status" >&5 + echo "$as_me:12265: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12230: \"$ac_try\"") >&5 + { (eval echo "$as_me:12268: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12233: \$? = $ac_status" >&5 + echo "$as_me:12271: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_svld_dlopen=yes else @@ -12241,12 +12279,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12244: result: $ac_cv_lib_svld_dlopen" >&5 +echo "$as_me:12282: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else - echo "$as_me:12249: checking for dld_link in -ldld" >&5 + echo "$as_me:12287: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12254,7 +12292,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12257 "configure" +#line 12295 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12273,16 +12311,16 @@ dld_link (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12276: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12279: \$? = $ac_status" >&5 + echo "$as_me:12317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12282: \"$ac_try\"") >&5 + { (eval echo "$as_me:12320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12285: \$? = $ac_status" >&5 + echo "$as_me:12323: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_dld_link=yes else @@ -12293,7 +12331,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12296: result: $ac_cv_lib_dld_dld_link" >&5 +echo "$as_me:12334: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" @@ -12329,7 +12367,7 @@ fi save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" - echo "$as_me:12332: checking whether a program can dlopen itself" >&5 + echo "$as_me:12370: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12340,7 +12378,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 12343 "configure" +#line 12381 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12401,10 +12439,10 @@ int main () exit (status); } EOF - if { (eval echo "$as_me:12404: \"$ac_link\"") >&5 + if { (eval echo "$as_me:12442: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12407: \$? = $ac_status" >&5 + echo "$as_me:12445: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? @@ -12421,12 +12459,12 @@ fi rm -fr conftest* fi -echo "$as_me:12424: result: $lt_cv_dlopen_self" >&5 +echo "$as_me:12462: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" - echo "$as_me:12429: checking whether a statically linked program can dlopen itself" >&5 + echo "$as_me:12467: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12437,7 +12475,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 12440 "configure" +#line 12478 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12498,10 +12536,10 @@ int main () exit (status); } EOF - if { (eval echo "$as_me:12501: \"$ac_link\"") >&5 + if { (eval echo "$as_me:12539: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12504: \$? = $ac_status" >&5 + echo "$as_me:12542: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? @@ -12518,7 +12556,7 @@ fi rm -fr conftest* fi -echo "$as_me:12521: result: $lt_cv_dlopen_self_static" >&5 +echo "$as_me:12559: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi @@ -12951,7 +12989,7 @@ lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' - echo "$as_me:12954: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 + echo "$as_me:12992: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12976,7 +13014,7 @@ else CFLAGS="$save_CFLAGS" fi -echo "$as_me:12979: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +echo "$as_me:13017: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then @@ -12991,7 +13029,7 @@ lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= -echo "$as_me:12994: checking for $compiler option to produce PIC" >&5 +echo "$as_me:13032: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then @@ -13144,14 +13182,14 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 esac fi -echo "$as_me:13147: result: $lt_prog_compiler_pic_GCJ" >&5 +echo "$as_me:13185: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then - echo "$as_me:13154: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 + echo "$as_me:13192: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13176,7 +13214,7 @@ else CFLAGS="$save_CFLAGS" fi -echo "$as_me:13179: result: $lt_prog_compiler_pic_works_GCJ" >&5 +echo "$as_me:13217: result: $lt_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6 if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then @@ -13200,7 +13238,7 @@ case "$host_os" in ;; esac -echo "$as_me:13203: checking if $compiler supports -c -o file.$ac_objext" >&5 +echo "$as_me:13241: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13241,13 +13279,13 @@ else $rm conftest* fi -echo "$as_me:13244: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 +echo "$as_me:13282: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user - echo "$as_me:13250: checking if we can lock with hard links" >&5 + echo "$as_me:13288: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* @@ -13255,10 +13293,10 @@ echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no - echo "$as_me:13258: result: $hard_links" >&5 + echo "$as_me:13296: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then - { echo "$as_me:13261: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 + { echo "$as_me:13299: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi @@ -13266,7 +13304,7 @@ else need_locks=no fi -echo "$as_me:13269: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +echo "$as_me:13307: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= @@ -13616,7 +13654,7 @@ EOF allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF -#line 13619 "configure" +#line 13657 "configure" #include "confdefs.h" int @@ -13628,16 +13666,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13634: \$? = $ac_status" >&5 + echo "$as_me:13672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13637: \"$ac_try\"") >&5 + { (eval echo "$as_me:13675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13640: \$? = $ac_status" >&5 + echo "$as_me:13678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } @@ -13662,7 +13700,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF -#line 13665 "configure" +#line 13703 "configure" #include "confdefs.h" int @@ -13674,16 +13712,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13677: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13715: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13680: \$? = $ac_status" >&5 + echo "$as_me:13718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13683: \"$ac_try\"") >&5 + { (eval echo "$as_me:13721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13686: \$? = $ac_status" >&5 + echo "$as_me:13724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } @@ -14050,7 +14088,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi esac fi -echo "$as_me:14053: result: $ld_shlibs_GCJ" >&5 +echo "$as_me:14091: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6 test "$ld_shlibs_GCJ" = no && can_build_shared=no @@ -14072,15 +14110,15 @@ if test "$enable_shared" = yes && test "$GCC" = yes; then # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. - echo "$as_me:14075: checking whether -lc should be explicitly linked in" >&5 + echo "$as_me:14113: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* echo 'static int dummy;' > conftest.$ac_ext - if { (eval echo "$as_me:14080: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:14118: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14083: \$? = $ac_status" >&5 + echo "$as_me:14121: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest @@ -14094,10 +14132,10 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= - if { (eval echo "$as_me:14097: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + if { (eval echo "$as_me:14135: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? - echo "$as_me:14100: \$? = $ac_status" >&5 + echo "$as_me:14138: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no @@ -14109,13 +14147,13 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& cat conftest.err 1>&5 fi $rm conftest* - echo "$as_me:14112: result: $archive_cmds_need_lc_GCJ" >&5 + echo "$as_me:14150: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6 ;; esac fi -echo "$as_me:14118: checking how to hardcode library paths into programs" >&5 +echo "$as_me:14156: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ @@ -14139,7 +14177,7 @@ else # directories. hardcode_action_GCJ=unsupported fi -echo "$as_me:14142: result: $hardcode_action_GCJ" >&5 +echo "$as_me:14180: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6 if test "$hardcode_action_GCJ" = relink; then @@ -14153,19 +14191,19 @@ fi striplib= old_striplib= -echo "$as_me:14156: checking whether stripping libraries is possible" >&5 +echo "$as_me:14194: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" - echo "$as_me:14161: result: yes" >&5 + echo "$as_me:14199: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:14164: result: no" >&5 + echo "$as_me:14202: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:14168: checking dynamic linker characteristics" >&5 +echo "$as_me:14206: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' @@ -14604,7 +14642,7 @@ uts4*) dynamic_linker=no ;; esac -echo "$as_me:14607: result: $dynamic_linker" >&5 +echo "$as_me:14645: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no @@ -14629,13 +14667,13 @@ else ;; *) - echo "$as_me:14632: checking for shl_load" >&5 + echo "$as_me:14670: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14638 "configure" +#line 14676 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. */ @@ -14666,16 +14704,16 @@ f = shl_load; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14669: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14707: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14672: \$? = $ac_status" >&5 + echo "$as_me:14710: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14675: \"$ac_try\"") >&5 + { (eval echo "$as_me:14713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14678: \$? = $ac_status" >&5 + echo "$as_me:14716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shl_load=yes else @@ -14685,12 +14723,12 @@ ac_cv_func_shl_load=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14688: result: $ac_cv_func_shl_load" >&5 +echo "$as_me:14726: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else - echo "$as_me:14693: checking for shl_load in -ldld" >&5 + echo "$as_me:14731: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14698,7 +14736,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14701 "configure" +#line 14739 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14717,16 +14755,16 @@ shl_load (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14720: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14758: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14723: \$? = $ac_status" >&5 + echo "$as_me:14761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14726: \"$ac_try\"") >&5 + { (eval echo "$as_me:14764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14729: \$? = $ac_status" >&5 + echo "$as_me:14767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_shl_load=yes else @@ -14737,18 +14775,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14740: result: $ac_cv_lib_dld_shl_load" >&5 +echo "$as_me:14778: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else - echo "$as_me:14745: checking for dlopen" >&5 + echo "$as_me:14783: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14751 "configure" +#line 14789 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. */ @@ -14779,16 +14817,16 @@ f = dlopen; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14782: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14820: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14785: \$? = $ac_status" >&5 + echo "$as_me:14823: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14788: \"$ac_try\"") >&5 + { (eval echo "$as_me:14826: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14791: \$? = $ac_status" >&5 + echo "$as_me:14829: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_dlopen=yes else @@ -14798,12 +14836,12 @@ ac_cv_func_dlopen=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14801: result: $ac_cv_func_dlopen" >&5 +echo "$as_me:14839: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else - echo "$as_me:14806: checking for dlopen in -ldl" >&5 + echo "$as_me:14844: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14811,7 +14849,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14814 "configure" +#line 14852 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14830,16 +14868,16 @@ dlopen (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14833: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14871: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14836: \$? = $ac_status" >&5 + echo "$as_me:14874: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14839: \"$ac_try\"") >&5 + { (eval echo "$as_me:14877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14842: \$? = $ac_status" >&5 + echo "$as_me:14880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else @@ -14850,12 +14888,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14853: result: $ac_cv_lib_dl_dlopen" >&5 +echo "$as_me:14891: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else - echo "$as_me:14858: checking for dlopen in -lsvld" >&5 + echo "$as_me:14896: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14863,7 +14901,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14866 "configure" +#line 14904 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14882,16 +14920,16 @@ dlopen (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14885: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14923: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14888: \$? = $ac_status" >&5 + echo "$as_me:14926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14891: \"$ac_try\"") >&5 + { (eval echo "$as_me:14929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14894: \$? = $ac_status" >&5 + echo "$as_me:14932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_svld_dlopen=yes else @@ -14902,12 +14940,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14905: result: $ac_cv_lib_svld_dlopen" >&5 +echo "$as_me:14943: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else - echo "$as_me:14910: checking for dld_link in -ldld" >&5 + echo "$as_me:14948: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14915,7 +14953,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14918 "configure" +#line 14956 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14934,16 +14972,16 @@ dld_link (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14937: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14975: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14940: \$? = $ac_status" >&5 + echo "$as_me:14978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14943: \"$ac_try\"") >&5 + { (eval echo "$as_me:14981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14946: \$? = $ac_status" >&5 + echo "$as_me:14984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dld_dld_link=yes else @@ -14954,7 +14992,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14957: result: $ac_cv_lib_dld_dld_link" >&5 +echo "$as_me:14995: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" @@ -14990,7 +15028,7 @@ fi save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" - echo "$as_me:14993: checking whether a program can dlopen itself" >&5 + echo "$as_me:15031: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15001,7 +15039,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 15004 "configure" +#line 15042 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -15062,10 +15100,10 @@ int main () exit (status); } EOF - if { (eval echo "$as_me:15065: \"$ac_link\"") >&5 + if { (eval echo "$as_me:15103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15068: \$? = $ac_status" >&5 + echo "$as_me:15106: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? @@ -15082,12 +15120,12 @@ fi rm -fr conftest* fi -echo "$as_me:15085: result: $lt_cv_dlopen_self" >&5 +echo "$as_me:15123: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" - echo "$as_me:15090: checking whether a statically linked program can dlopen itself" >&5 + echo "$as_me:15128: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15098,7 +15136,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 15101 "configure" +#line 15139 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -15159,10 +15197,10 @@ int main () exit (status); } EOF - if { (eval echo "$as_me:15162: \"$ac_link\"") >&5 + if { (eval echo "$as_me:15200: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15165: \$? = $ac_status" >&5 + echo "$as_me:15203: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? @@ -15179,7 +15217,7 @@ fi rm -fr conftest* fi -echo "$as_me:15182: result: $lt_cv_dlopen_self_static" >&5 +echo "$as_me:15220: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi @@ -15979,7 +16017,7 @@ CC="$lt_save_CC" ;; *) - { { echo "$as_me:15982: error: Unsupported tag name: $tagname" >&5 + { { echo "$as_me:16020: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; @@ -15997,7 +16035,7 @@ echo "$as_me: error: Unsupported tag name: $tagname" >&2;} chmod +x "$ofile" else rm -f "${ofile}T" - { { echo "$as_me:16000: error: unable to update list of available tagged configurations." >&5 + { { echo "$as_me:16038: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi @@ -16018,7 +16056,7 @@ LIBTOOL='$(SHELL) $(top_builddir)/libtool' if test "$enable_shared" = yes && test "$enable_static" = yes; then case $library_names_spec in *libname.a*) - { { echo "$as_me:16021: error: cannot create both shared and static libraries on this system, --disable one of the two" >&5 + { { echo "$as_me:16059: error: cannot create both shared and static libraries on this system, --disable one of the two" >&5 echo "$as_me: error: cannot create both shared and static libraries on this system, --disable one of the two" >&2;} { (exit 1); exit 1; }; } ;; @@ -16049,7 +16087,7 @@ case $host in # If there's any sse2 or mmx in the path, check whether the assembler # supports it, and remove if not. case "$path" in - *mmx*) echo "$as_me:16052: checking if the assembler knows about MMX instructions" >&5 + *mmx*) echo "$as_me:16090: checking if the assembler knows about MMX instructions" >&5 echo $ECHO_N "checking if the assembler knows about MMX instructions... $ECHO_C" >&6 if test "${gmp_cv_asm_x86_mmx+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16059,10 +16097,10 @@ else movq %mm0, %mm1 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:16062: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:16100: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:16065: \$? = $ac_status" >&5 + echo "$as_me:16103: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_x86_mmx=yes @@ -16073,7 +16111,7 @@ case $host in gmp_cv_asm_x86_mmx=movq-bug fi else - { echo "$as_me:16076: WARNING: \"dis\" not available to check for \"as\" movq bug" >&5 + { echo "$as_me:16114: WARNING: \"dis\" not available to check for \"as\" movq bug" >&5 echo "$as_me: WARNING: \"dis\" not available to check for \"as\" movq bug" >&2;} fi esac @@ -16086,44 +16124,44 @@ fi rm -f conftest* fi -echo "$as_me:16089: result: $gmp_cv_asm_x86_mmx" >&5 +echo "$as_me:16127: result: $gmp_cv_asm_x86_mmx" >&5 echo "${ECHO_T}$gmp_cv_asm_x86_mmx" >&6 case $gmp_cv_asm_x86_mmx in movq-bug) - { echo "$as_me:16094: WARNING: +----------------------------------------------------------" >&5 + { echo "$as_me:16132: WARNING: +----------------------------------------------------------" >&5 echo "$as_me: WARNING: +----------------------------------------------------------" >&2;} - { echo "$as_me:16096: WARNING: | WARNING WARNING WARNING" >&5 + { echo "$as_me:16134: WARNING: | WARNING WARNING WARNING" >&5 echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;} - { echo "$as_me:16098: WARNING: | Host CPU has MMX code, but the assembler" >&5 + { echo "$as_me:16136: WARNING: | Host CPU has MMX code, but the assembler" >&5 echo "$as_me: WARNING: | Host CPU has MMX code, but the assembler" >&2;} - { echo "$as_me:16100: WARNING: | $CCAS $CFLAGS" >&5 + { echo "$as_me:16138: WARNING: | $CCAS $CFLAGS" >&5 echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;} - { echo "$as_me:16102: WARNING: | has the Solaris 2.6 and 2.7 bug where register to register" >&5 + { echo "$as_me:16140: WARNING: | has the Solaris 2.6 and 2.7 bug where register to register" >&5 echo "$as_me: WARNING: | has the Solaris 2.6 and 2.7 bug where register to register" >&2;} - { echo "$as_me:16104: WARNING: | movq operands are reversed." >&5 + { echo "$as_me:16142: WARNING: | movq operands are reversed." >&5 echo "$as_me: WARNING: | movq operands are reversed." >&2;} - { echo "$as_me:16106: WARNING: | Non-MMX replacements will be used." >&5 + { echo "$as_me:16144: WARNING: | Non-MMX replacements will be used." >&5 echo "$as_me: WARNING: | Non-MMX replacements will be used." >&2;} - { echo "$as_me:16108: WARNING: | This will be an inferior build." >&5 + { echo "$as_me:16146: WARNING: | This will be an inferior build." >&5 echo "$as_me: WARNING: | This will be an inferior build." >&2;} - { echo "$as_me:16110: WARNING: +----------------------------------------------------------" >&5 + { echo "$as_me:16148: WARNING: +----------------------------------------------------------" >&5 echo "$as_me: WARNING: +----------------------------------------------------------" >&2;} ;; no) - { echo "$as_me:16114: WARNING: +----------------------------------------------------------" >&5 + { echo "$as_me:16152: WARNING: +----------------------------------------------------------" >&5 echo "$as_me: WARNING: +----------------------------------------------------------" >&2;} - { echo "$as_me:16116: WARNING: | WARNING WARNING WARNING" >&5 + { echo "$as_me:16154: WARNING: | WARNING WARNING WARNING" >&5 echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;} - { echo "$as_me:16118: WARNING: | Host CPU has MMX code, but it can't be assembled by" >&5 + { echo "$as_me:16156: WARNING: | Host CPU has MMX code, but it can't be assembled by" >&5 echo "$as_me: WARNING: | Host CPU has MMX code, but it can't be assembled by" >&2;} - { echo "$as_me:16120: WARNING: | $CCAS $CFLAGS" >&5 + { echo "$as_me:16158: WARNING: | $CCAS $CFLAGS" >&5 echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;} - { echo "$as_me:16122: WARNING: | Non-MMX replacements will be used." >&5 + { echo "$as_me:16160: WARNING: | Non-MMX replacements will be used." >&5 echo "$as_me: WARNING: | Non-MMX replacements will be used." >&2;} - { echo "$as_me:16124: WARNING: | This will be an inferior build." >&5 + { echo "$as_me:16162: WARNING: | This will be an inferior build." >&5 echo "$as_me: WARNING: | This will be an inferior build." >&2;} - { echo "$as_me:16126: WARNING: +----------------------------------------------------------" >&5 + { echo "$as_me:16164: WARNING: +----------------------------------------------------------" >&5 echo "$as_me: WARNING: +----------------------------------------------------------" >&2;} ;; esac @@ -16143,7 +16181,7 @@ fi ;; esac case "$path" in - *sse2*) echo "$as_me:16146: checking if the assembler knows about SSE2 instructions" >&5 + *sse2*) echo "$as_me:16184: checking if the assembler knows about SSE2 instructions" >&5 echo $ECHO_N "checking if the assembler knows about SSE2 instructions... $ECHO_C" >&6 if test "${gmp_cv_asm_x86_sse2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16153,10 +16191,10 @@ else paddq %mm0, %mm1 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:16156: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:16194: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:16159: \$? = $ac_status" >&5 + echo "$as_me:16197: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_x86_sse2=yes @@ -16169,26 +16207,26 @@ fi rm -f conftest* fi -echo "$as_me:16172: result: $gmp_cv_asm_x86_sse2" >&5 +echo "$as_me:16210: result: $gmp_cv_asm_x86_sse2" >&5 echo "${ECHO_T}$gmp_cv_asm_x86_sse2" >&6 case $gmp_cv_asm_x86_sse2 in yes) : ;; *) - { echo "$as_me:16179: WARNING: +----------------------------------------------------------" >&5 + { echo "$as_me:16217: WARNING: +----------------------------------------------------------" >&5 echo "$as_me: WARNING: +----------------------------------------------------------" >&2;} - { echo "$as_me:16181: WARNING: | WARNING WARNING WARNING" >&5 + { echo "$as_me:16219: WARNING: | WARNING WARNING WARNING" >&5 echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;} - { echo "$as_me:16183: WARNING: | Host CPU has SSE2 code, but it can't be assembled by" >&5 + { echo "$as_me:16221: WARNING: | Host CPU has SSE2 code, but it can't be assembled by" >&5 echo "$as_me: WARNING: | Host CPU has SSE2 code, but it can't be assembled by" >&2;} - { echo "$as_me:16185: WARNING: | $CCAS $CFLAGS" >&5 + { echo "$as_me:16223: WARNING: | $CCAS $CFLAGS" >&5 echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;} - { echo "$as_me:16187: WARNING: | Non-SSE2 replacements will be used." >&5 + { echo "$as_me:16225: WARNING: | Non-SSE2 replacements will be used." >&5 echo "$as_me: WARNING: | Non-SSE2 replacements will be used." >&2;} - { echo "$as_me:16189: WARNING: | This will be an inferior build." >&5 + { echo "$as_me:16227: WARNING: | This will be an inferior build." >&5 echo "$as_me: WARNING: | This will be an inferior build." >&2;} - { echo "$as_me:16191: WARNING: +----------------------------------------------------------" >&5 + { echo "$as_me:16229: WARNING: +----------------------------------------------------------" >&5 echo "$as_me: WARNING: +----------------------------------------------------------" >&2;} tmp_path= for i in $path; do @@ -16209,13 +16247,13 @@ esac # The library and header checks are mostly for the benefit of supplementary # programs. libgmp doesn't use anything too weird. -echo "$as_me:16212: checking for ANSI C header files" >&5 +echo "$as_me:16250: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16218 "configure" +#line 16256 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -16223,13 +16261,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:16226: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:16264: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:16232: \$? = $ac_status" >&5 + echo "$as_me:16270: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16251,7 +16289,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 16254 "configure" +#line 16292 "configure" #include "confdefs.h" #include <string.h> @@ -16269,7 +16307,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 16272 "configure" +#line 16310 "configure" #include "confdefs.h" #include <stdlib.h> @@ -16290,7 +16328,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 16293 "configure" +#line 16331 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -16316,15 +16354,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16319: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16357: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16322: \$? = $ac_status" >&5 + echo "$as_me:16360: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16324: \"$ac_try\"") >&5 + { (eval echo "$as_me:16362: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16327: \$? = $ac_status" >&5 + echo "$as_me:16365: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16337,7 +16375,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:16340: result: $ac_cv_header_stdc" >&5 +echo "$as_me:16378: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -16347,13 +16385,13 @@ EOF fi -echo "$as_me:16350: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:16388: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16356 "configure" +#line 16394 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -16369,16 +16407,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16372: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16410: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16375: \$? = $ac_status" >&5 + echo "$as_me:16413: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16378: \"$ac_try\"") >&5 + { (eval echo "$as_me:16416: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16381: \$? = $ac_status" >&5 + echo "$as_me:16419: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -16388,7 +16426,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16391: result: $ac_cv_header_time" >&5 +echo "$as_me:16429: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -16410,23 +16448,23 @@ fi for ac_header in locale.h sys/mman.h sys/param.h sys/processor.h sys/resource.h sys/sysctl.h sys/systemcfg.h sys/time.h sys/times.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:16413: checking for $ac_header" >&5 +echo "$as_me:16451: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16419 "configure" +#line 16457 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:16423: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:16461: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:16429: \$? = $ac_status" >&5 + echo "$as_me:16467: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16445,7 +16483,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:16448: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:16486: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -16462,28 +16500,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:16465: checking for $ac_header" >&5 +echo "$as_me:16503: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16471 "configure" +#line 16509 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16477: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16515: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16480: \$? = $ac_status" >&5 + echo "$as_me:16518: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16483: \"$ac_try\"") >&5 + { (eval echo "$as_me:16521: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16486: \$? = $ac_status" >&5 + echo "$as_me:16524: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -16493,7 +16531,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16496: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:16534: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -16503,13 +16541,13 @@ EOF fi done -echo "$as_me:16506: checking whether fgetc is declared" >&5 +echo "$as_me:16544: checking whether fgetc is declared" >&5 echo $ECHO_N "checking whether fgetc is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_fgetc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16512 "configure" +#line 16550 "configure" #include "confdefs.h" $ac_includes_default int @@ -16524,16 +16562,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16527: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16530: \$? = $ac_status" >&5 + echo "$as_me:16568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16533: \"$ac_try\"") >&5 + { (eval echo "$as_me:16571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16536: \$? = $ac_status" >&5 + echo "$as_me:16574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_fgetc=yes else @@ -16543,7 +16581,7 @@ ac_cv_have_decl_fgetc=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16546: result: $ac_cv_have_decl_fgetc" >&5 +echo "$as_me:16584: result: $ac_cv_have_decl_fgetc" >&5 echo "${ECHO_T}$ac_cv_have_decl_fgetc" >&6 if test $ac_cv_have_decl_fgetc = yes; then @@ -16557,13 +16595,13 @@ else EOF fi -echo "$as_me:16560: checking whether fscanf is declared" >&5 +echo "$as_me:16598: checking whether fscanf is declared" >&5 echo $ECHO_N "checking whether fscanf is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_fscanf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16566 "configure" +#line 16604 "configure" #include "confdefs.h" $ac_includes_default int @@ -16578,16 +16616,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16581: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16619: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16584: \$? = $ac_status" >&5 + echo "$as_me:16622: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16587: \"$ac_try\"") >&5 + { (eval echo "$as_me:16625: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16590: \$? = $ac_status" >&5 + echo "$as_me:16628: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_fscanf=yes else @@ -16597,7 +16635,7 @@ ac_cv_have_decl_fscanf=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16600: result: $ac_cv_have_decl_fscanf" >&5 +echo "$as_me:16638: result: $ac_cv_have_decl_fscanf" >&5 echo "${ECHO_T}$ac_cv_have_decl_fscanf" >&6 if test $ac_cv_have_decl_fscanf = yes; then @@ -16611,13 +16649,13 @@ else EOF fi -echo "$as_me:16614: checking whether optarg is declared" >&5 +echo "$as_me:16652: checking whether optarg is declared" >&5 echo $ECHO_N "checking whether optarg is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_optarg+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16620 "configure" +#line 16658 "configure" #include "confdefs.h" $ac_includes_default int @@ -16632,16 +16670,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16635: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16673: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16638: \$? = $ac_status" >&5 + echo "$as_me:16676: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16641: \"$ac_try\"") >&5 + { (eval echo "$as_me:16679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16644: \$? = $ac_status" >&5 + echo "$as_me:16682: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_optarg=yes else @@ -16651,7 +16689,7 @@ ac_cv_have_decl_optarg=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16654: result: $ac_cv_have_decl_optarg" >&5 +echo "$as_me:16692: result: $ac_cv_have_decl_optarg" >&5 echo "${ECHO_T}$ac_cv_have_decl_optarg" >&6 if test $ac_cv_have_decl_optarg = yes; then @@ -16665,13 +16703,13 @@ else EOF fi -echo "$as_me:16668: checking whether ungetc is declared" >&5 +echo "$as_me:16706: checking whether ungetc is declared" >&5 echo $ECHO_N "checking whether ungetc is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_ungetc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16674 "configure" +#line 16712 "configure" #include "confdefs.h" $ac_includes_default int @@ -16686,16 +16724,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16689: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16727: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16692: \$? = $ac_status" >&5 + echo "$as_me:16730: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16695: \"$ac_try\"") >&5 + { (eval echo "$as_me:16733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16698: \$? = $ac_status" >&5 + echo "$as_me:16736: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_ungetc=yes else @@ -16705,7 +16743,7 @@ ac_cv_have_decl_ungetc=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16708: result: $ac_cv_have_decl_ungetc" >&5 +echo "$as_me:16746: result: $ac_cv_have_decl_ungetc" >&5 echo "${ECHO_T}$ac_cv_have_decl_ungetc" >&6 if test $ac_cv_have_decl_ungetc = yes; then @@ -16719,13 +16757,13 @@ else EOF fi -echo "$as_me:16722: checking whether vfprintf is declared" >&5 +echo "$as_me:16760: checking whether vfprintf is declared" >&5 echo $ECHO_N "checking whether vfprintf is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_vfprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16728 "configure" +#line 16766 "configure" #include "confdefs.h" $ac_includes_default int @@ -16740,16 +16778,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16743: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16781: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16746: \$? = $ac_status" >&5 + echo "$as_me:16784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16749: \"$ac_try\"") >&5 + { (eval echo "$as_me:16787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16752: \$? = $ac_status" >&5 + echo "$as_me:16790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_vfprintf=yes else @@ -16759,7 +16797,7 @@ ac_cv_have_decl_vfprintf=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16762: result: $ac_cv_have_decl_vfprintf" >&5 +echo "$as_me:16800: result: $ac_cv_have_decl_vfprintf" >&5 echo "${ECHO_T}$ac_cv_have_decl_vfprintf" >&6 if test $ac_cv_have_decl_vfprintf = yes; then @@ -16774,13 +16812,13 @@ EOF fi -echo "$as_me:16777: checking return type of signal handlers" >&5 +echo "$as_me:16815: checking return type of signal handlers" >&5 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6 if test "${ac_cv_type_signal+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16783 "configure" +#line 16821 "configure" #include "confdefs.h" #include <sys/types.h> #include <signal.h> @@ -16802,16 +16840,16 @@ int i; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16805: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16843: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16808: \$? = $ac_status" >&5 + echo "$as_me:16846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16811: \"$ac_try\"") >&5 + { (eval echo "$as_me:16849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16814: \$? = $ac_status" >&5 + echo "$as_me:16852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_signal=void else @@ -16821,7 +16859,7 @@ ac_cv_type_signal=int fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16824: result: $ac_cv_type_signal" >&5 +echo "$as_me:16862: result: $ac_cv_type_signal" >&5 echo "${ECHO_T}$ac_cv_type_signal" >&6 cat >>confdefs.h <<EOF @@ -16829,13 +16867,13 @@ cat >>confdefs.h <<EOF EOF # the default includes are sufficient for all these types -echo "$as_me:16832: checking for intmax_t" >&5 +echo "$as_me:16870: checking for intmax_t" >&5 echo $ECHO_N "checking for intmax_t... $ECHO_C" >&6 if test "${ac_cv_type_intmax_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16838 "configure" +#line 16876 "configure" #include "confdefs.h" $ac_includes_default int @@ -16850,16 +16888,16 @@ if (sizeof (intmax_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16853: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16891: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16856: \$? = $ac_status" >&5 + echo "$as_me:16894: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16859: \"$ac_try\"") >&5 + { (eval echo "$as_me:16897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16862: \$? = $ac_status" >&5 + echo "$as_me:16900: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intmax_t=yes else @@ -16869,7 +16907,7 @@ ac_cv_type_intmax_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16872: result: $ac_cv_type_intmax_t" >&5 +echo "$as_me:16910: result: $ac_cv_type_intmax_t" >&5 echo "${ECHO_T}$ac_cv_type_intmax_t" >&6 if test $ac_cv_type_intmax_t = yes; then @@ -16878,13 +16916,13 @@ cat >>confdefs.h <<EOF EOF fi -echo "$as_me:16881: checking for long double" >&5 +echo "$as_me:16919: checking for long double" >&5 echo $ECHO_N "checking for long double... $ECHO_C" >&6 if test "${ac_cv_type_long_double+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16887 "configure" +#line 16925 "configure" #include "confdefs.h" $ac_includes_default int @@ -16899,16 +16937,16 @@ if (sizeof (long double)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16902: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16940: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16905: \$? = $ac_status" >&5 + echo "$as_me:16943: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16908: \"$ac_try\"") >&5 + { (eval echo "$as_me:16946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16911: \$? = $ac_status" >&5 + echo "$as_me:16949: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_double=yes else @@ -16918,7 +16956,7 @@ ac_cv_type_long_double=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16921: result: $ac_cv_type_long_double" >&5 +echo "$as_me:16959: result: $ac_cv_type_long_double" >&5 echo "${ECHO_T}$ac_cv_type_long_double" >&6 if test $ac_cv_type_long_double = yes; then @@ -16927,13 +16965,13 @@ cat >>confdefs.h <<EOF EOF fi -echo "$as_me:16930: checking for long long" >&5 +echo "$as_me:16968: checking for long long" >&5 echo $ECHO_N "checking for long long... $ECHO_C" >&6 if test "${ac_cv_type_long_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16936 "configure" +#line 16974 "configure" #include "confdefs.h" $ac_includes_default int @@ -16948,16 +16986,16 @@ if (sizeof (long long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16951: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16989: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16954: \$? = $ac_status" >&5 + echo "$as_me:16992: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16957: \"$ac_try\"") >&5 + { (eval echo "$as_me:16995: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16960: \$? = $ac_status" >&5 + echo "$as_me:16998: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_long=yes else @@ -16967,7 +17005,7 @@ ac_cv_type_long_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16970: result: $ac_cv_type_long_long" >&5 +echo "$as_me:17008: result: $ac_cv_type_long_long" >&5 echo "${ECHO_T}$ac_cv_type_long_long" >&6 if test $ac_cv_type_long_long = yes; then @@ -16976,13 +17014,13 @@ cat >>confdefs.h <<EOF EOF fi -echo "$as_me:16979: checking for ptrdiff_t" >&5 +echo "$as_me:17017: checking for ptrdiff_t" >&5 echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6 if test "${ac_cv_type_ptrdiff_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16985 "configure" +#line 17023 "configure" #include "confdefs.h" $ac_includes_default int @@ -16997,16 +17035,16 @@ if (sizeof (ptrdiff_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17000: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17038: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17003: \$? = $ac_status" >&5 + echo "$as_me:17041: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17006: \"$ac_try\"") >&5 + { (eval echo "$as_me:17044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17009: \$? = $ac_status" >&5 + echo "$as_me:17047: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ptrdiff_t=yes else @@ -17016,7 +17054,7 @@ ac_cv_type_ptrdiff_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17019: result: $ac_cv_type_ptrdiff_t" >&5 +echo "$as_me:17057: result: $ac_cv_type_ptrdiff_t" >&5 echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6 if test $ac_cv_type_ptrdiff_t = yes; then @@ -17025,13 +17063,13 @@ cat >>confdefs.h <<EOF EOF fi -echo "$as_me:17028: checking for quad_t" >&5 +echo "$as_me:17066: checking for quad_t" >&5 echo $ECHO_N "checking for quad_t... $ECHO_C" >&6 if test "${ac_cv_type_quad_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17034 "configure" +#line 17072 "configure" #include "confdefs.h" $ac_includes_default int @@ -17046,16 +17084,16 @@ if (sizeof (quad_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17049: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17087: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17052: \$? = $ac_status" >&5 + echo "$as_me:17090: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17055: \"$ac_try\"") >&5 + { (eval echo "$as_me:17093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17058: \$? = $ac_status" >&5 + echo "$as_me:17096: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_quad_t=yes else @@ -17065,7 +17103,7 @@ ac_cv_type_quad_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17068: result: $ac_cv_type_quad_t" >&5 +echo "$as_me:17106: result: $ac_cv_type_quad_t" >&5 echo "${ECHO_T}$ac_cv_type_quad_t" >&6 if test $ac_cv_type_quad_t = yes; then @@ -17075,13 +17113,13 @@ EOF fi -echo "$as_me:17078: checking for preprocessor stringizing operator" >&5 +echo "$as_me:17116: checking for preprocessor stringizing operator" >&5 echo $ECHO_N "checking for preprocessor stringizing operator... $ECHO_C" >&6 if test "${ac_cv_c_stringize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17084 "configure" +#line 17122 "configure" #include "confdefs.h" #define x(y) #y @@ -17096,7 +17134,7 @@ fi rm -f conftest* fi -echo "$as_me:17099: result: $ac_cv_c_stringize" >&5 +echo "$as_me:17137: result: $ac_cv_c_stringize" >&5 echo "${ECHO_T}$ac_cv_c_stringize" >&6 if test $ac_cv_c_stringize = yes; then @@ -17106,13 +17144,13 @@ EOF fi -echo "$as_me:17109: checking whether <stdarg.h> exists and works" >&5 +echo "$as_me:17147: checking whether <stdarg.h> exists and works" >&5 echo $ECHO_N "checking whether <stdarg.h> exists and works... $ECHO_C" >&6 if test "${gmp_cv_c_stdarg+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17115 "configure" +#line 17153 "configure" #include "confdefs.h" #include <stdarg.h> int foo (int x, ...) @@ -17133,16 +17171,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17136: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17174: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17139: \$? = $ac_status" >&5 + echo "$as_me:17177: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17142: \"$ac_try\"") >&5 + { (eval echo "$as_me:17180: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17145: \$? = $ac_status" >&5 + echo "$as_me:17183: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_c_stdarg=yes else @@ -17153,7 +17191,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17156: result: $gmp_cv_c_stdarg" >&5 +echo "$as_me:17194: result: $gmp_cv_c_stdarg" >&5 echo "${ECHO_T}$gmp_cv_c_stdarg" >&6 if test $gmp_cv_c_stdarg = yes; then @@ -17163,13 +17201,13 @@ EOF fi -echo "$as_me:17166: checking whether gcc __attribute__ ((const)) works" >&5 +echo "$as_me:17204: checking whether gcc __attribute__ ((const)) works" >&5 echo $ECHO_N "checking whether gcc __attribute__ ((const)) works... $ECHO_C" >&6 if test "${gmp_cv_c_attribute_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17172 "configure" +#line 17210 "configure" #include "confdefs.h" int foo (int x) __attribute__ ((const)); int @@ -17181,16 +17219,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17184: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17222: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17187: \$? = $ac_status" >&5 + echo "$as_me:17225: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17190: \"$ac_try\"") >&5 + { (eval echo "$as_me:17228: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17193: \$? = $ac_status" >&5 + echo "$as_me:17231: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_c_attribute_const=yes else @@ -17201,7 +17239,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17204: result: $gmp_cv_c_attribute_const" >&5 +echo "$as_me:17242: result: $gmp_cv_c_attribute_const" >&5 echo "${ECHO_T}$gmp_cv_c_attribute_const" >&6 if test $gmp_cv_c_attribute_const = yes; then @@ -17211,7 +17249,7 @@ EOF fi -echo "$as_me:17214: checking whether gcc __attribute__ ((malloc)) works" >&5 +echo "$as_me:17252: checking whether gcc __attribute__ ((malloc)) works" >&5 echo $ECHO_N "checking whether gcc __attribute__ ((malloc)) works... $ECHO_C" >&6 if test "${gmp_cv_c_attribute_malloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17220,10 +17258,10 @@ else void *foo (int x) __attribute__ ((malloc)); EOF gmp_compile="$CC $CFLAGS $CPPFLAGS -c conftest.c >conftest.out 2>&1" -if { (eval echo "$as_me:17223: \"$gmp_compile\"") >&5 +if { (eval echo "$as_me:17261: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:17226: \$? = $ac_status" >&5 + echo "$as_me:17264: \$? = $ac_status" >&5 (exit $ac_status); }; then if grep "attribute directive ignored" conftest.out >/dev/null; then gmp_cv_c_attribute_malloc=no @@ -17237,7 +17275,7 @@ cat conftest.out >&5 rm -f conftest* fi -echo "$as_me:17240: result: $gmp_cv_c_attribute_malloc" >&5 +echo "$as_me:17278: result: $gmp_cv_c_attribute_malloc" >&5 echo "${ECHO_T}$gmp_cv_c_attribute_malloc" >&6 if test $gmp_cv_c_attribute_malloc = yes; then @@ -17247,13 +17285,13 @@ EOF fi -echo "$as_me:17250: checking whether gcc __attribute__ ((mode (XX))) works" >&5 +echo "$as_me:17288: checking whether gcc __attribute__ ((mode (XX))) works" >&5 echo $ECHO_N "checking whether gcc __attribute__ ((mode (XX))) works... $ECHO_C" >&6 if test "${gmp_cv_c_attribute_mode+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17256 "configure" +#line 17294 "configure" #include "confdefs.h" typedef int SItype __attribute__ ((mode (SI))); int @@ -17265,16 +17303,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17268: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17306: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17271: \$? = $ac_status" >&5 + echo "$as_me:17309: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17274: \"$ac_try\"") >&5 + { (eval echo "$as_me:17312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17277: \$? = $ac_status" >&5 + echo "$as_me:17315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_c_attribute_mode=yes else @@ -17285,7 +17323,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17288: result: $gmp_cv_c_attribute_mode" >&5 +echo "$as_me:17326: result: $gmp_cv_c_attribute_mode" >&5 echo "${ECHO_T}$gmp_cv_c_attribute_mode" >&6 if test $gmp_cv_c_attribute_mode = yes; then @@ -17295,13 +17333,13 @@ EOF fi -echo "$as_me:17298: checking whether gcc __attribute__ ((noreturn)) works" >&5 +echo "$as_me:17336: checking whether gcc __attribute__ ((noreturn)) works" >&5 echo $ECHO_N "checking whether gcc __attribute__ ((noreturn)) works... $ECHO_C" >&6 if test "${gmp_cv_c_attribute_noreturn+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17304 "configure" +#line 17342 "configure" #include "confdefs.h" void foo (int x) __attribute__ ((noreturn)); int @@ -17313,16 +17351,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17316: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17354: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17319: \$? = $ac_status" >&5 + echo "$as_me:17357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17322: \"$ac_try\"") >&5 + { (eval echo "$as_me:17360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17325: \$? = $ac_status" >&5 + echo "$as_me:17363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_c_attribute_noreturn=yes else @@ -17333,7 +17371,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17336: result: $gmp_cv_c_attribute_noreturn" >&5 +echo "$as_me:17374: result: $gmp_cv_c_attribute_noreturn" >&5 echo "${ECHO_T}$gmp_cv_c_attribute_noreturn" >&6 if test $gmp_cv_c_attribute_noreturn = yes; then @@ -17343,7 +17381,7 @@ EOF fi -echo "$as_me:17346: checking for restrict" >&5 +echo "$as_me:17384: checking for restrict" >&5 echo $ECHO_N "checking for restrict... $ECHO_C" >&6 if test "${gmp_cv_c_restrict+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17351,7 +17389,7 @@ else gmp_cv_c_restrict=no for r in restrict __restrict__ __restrict; do cat >conftest.$ac_ext <<_ACEOF -#line 17354 "configure" +#line 17392 "configure" #include "confdefs.h" int @@ -17363,16 +17401,16 @@ char * $r foo; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17366: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17404: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17369: \$? = $ac_status" >&5 + echo "$as_me:17407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17372: \"$ac_try\"") >&5 + { (eval echo "$as_me:17410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17375: \$? = $ac_status" >&5 + echo "$as_me:17413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_c_restrict=$r break @@ -17387,7 +17425,7 @@ if test $gmp_cv_c_restrict = restrict; then fi fi -echo "$as_me:17390: result: $gmp_cv_c_restrict" >&5 +echo "$as_me:17428: result: $gmp_cv_c_restrict" >&5 echo "${ECHO_T}$gmp_cv_c_restrict" >&6 case $gmp_cv_c_restrict in restrict | yes) ;; @@ -17402,7 +17440,7 @@ EOF ;; esac -echo "$as_me:17405: checking for inline" >&5 +echo "$as_me:17443: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17410,7 +17448,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 17413 "configure" +#line 17451 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -17419,16 +17457,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17422: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17460: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17425: \$? = $ac_status" >&5 + echo "$as_me:17463: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17428: \"$ac_try\"") >&5 + { (eval echo "$as_me:17466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17431: \$? = $ac_status" >&5 + echo "$as_me:17469: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -17439,7 +17477,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17442: result: $ac_cv_c_inline" >&5 +echo "$as_me:17480: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -17458,7 +17496,7 @@ case $ac_cv_c_inline in no) ;; *) cat >conftest.$ac_ext <<_ACEOF -#line 17461 "configure" +#line 17499 "configure" #include "confdefs.h" #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ #define __GMP_BITS_PER_MP_LIMB 123 /* dummy for mpf_get_prec etc inlines */ @@ -17478,16 +17516,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17481: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17519: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17484: \$? = $ac_status" >&5 + echo "$as_me:17522: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17487: \"$ac_try\"") >&5 + { (eval echo "$as_me:17525: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17490: \$? = $ac_status" >&5 + echo "$as_me:17528: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17497,7 +17535,7 @@ case $ac_cv_c_inline in "") tmp_inline=inline ;; *) tmp_inline=$ac_cv_c_inline ;; esac - { echo "$as_me:17500: WARNING: gmp.h doesnt recognise compiler \"$tmp_inline\", inlines will be unavailable" >&5 + { echo "$as_me:17538: WARNING: gmp.h doesnt recognise compiler \"$tmp_inline\", inlines will be unavailable" >&5 echo "$as_me: WARNING: gmp.h doesnt recognise compiler \"$tmp_inline\", inlines will be unavailable" >&2;} fi rm -f conftest.$ac_objext conftest.$ac_ext @@ -17511,7 +17549,7 @@ case $host in # These system don't have libm ;; *-ncr-sysv4.3*) - echo "$as_me:17514: checking for _mwvalidcheckl in -lmw" >&5 + echo "$as_me:17552: checking for _mwvalidcheckl in -lmw" >&5 echo $ECHO_N "checking for _mwvalidcheckl in -lmw... $ECHO_C" >&6 if test "${ac_cv_lib_mw__mwvalidcheckl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17519,7 +17557,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmw $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17522 "configure" +#line 17560 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17538,16 +17576,16 @@ _mwvalidcheckl (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17541: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17579: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17544: \$? = $ac_status" >&5 + echo "$as_me:17582: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17547: \"$ac_try\"") >&5 + { (eval echo "$as_me:17585: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17550: \$? = $ac_status" >&5 + echo "$as_me:17588: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mw__mwvalidcheckl=yes else @@ -17558,13 +17596,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17561: result: $ac_cv_lib_mw__mwvalidcheckl" >&5 +echo "$as_me:17599: result: $ac_cv_lib_mw__mwvalidcheckl" >&5 echo "${ECHO_T}$ac_cv_lib_mw__mwvalidcheckl" >&6 if test $ac_cv_lib_mw__mwvalidcheckl = yes; then LIBM="-lmw" fi - echo "$as_me:17567: checking for main in -lm" >&5 + echo "$as_me:17605: checking for main in -lm" >&5 echo $ECHO_N "checking for main in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17572,7 +17610,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17575 "configure" +#line 17613 "configure" #include "confdefs.h" int @@ -17584,16 +17622,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17587: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17625: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17590: \$? = $ac_status" >&5 + echo "$as_me:17628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17593: \"$ac_try\"") >&5 + { (eval echo "$as_me:17631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17596: \$? = $ac_status" >&5 + echo "$as_me:17634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_main=yes else @@ -17604,7 +17642,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17607: result: $ac_cv_lib_m_main" >&5 +echo "$as_me:17645: result: $ac_cv_lib_m_main" >&5 echo "${ECHO_T}$ac_cv_lib_m_main" >&6 if test $ac_cv_lib_m_main = yes; then LIBM="$LIBM -lm" @@ -17612,7 +17650,7 @@ fi ;; *) - echo "$as_me:17615: checking for main in -lm" >&5 + echo "$as_me:17653: checking for main in -lm" >&5 echo $ECHO_N "checking for main in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17620,7 +17658,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17623 "configure" +#line 17661 "configure" #include "confdefs.h" int @@ -17632,16 +17670,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17635: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17673: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17638: \$? = $ac_status" >&5 + echo "$as_me:17676: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17641: \"$ac_try\"") >&5 + { (eval echo "$as_me:17679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17644: \$? = $ac_status" >&5 + echo "$as_me:17682: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_main=yes else @@ -17652,7 +17690,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17655: result: $ac_cv_lib_m_main" >&5 +echo "$as_me:17693: result: $ac_cv_lib_m_main" >&5 echo "${ECHO_T}$ac_cv_lib_m_main" >&6 if test $ac_cv_lib_m_main = yes; then LIBM="-lm" @@ -17663,13 +17701,13 @@ esac # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:17666: checking for working alloca.h" >&5 +echo "$as_me:17704: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${gmp_cv_header_alloca+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17672 "configure" +#line 17710 "configure" #include "confdefs.h" #include <alloca.h> int @@ -17681,16 +17719,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17684: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17687: \$? = $ac_status" >&5 + echo "$as_me:17725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17690: \"$ac_try\"") >&5 + { (eval echo "$as_me:17728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17693: \$? = $ac_status" >&5 + echo "$as_me:17731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_header_alloca=yes else @@ -17700,7 +17738,7 @@ gmp_cv_header_alloca=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17703: result: $gmp_cv_header_alloca" >&5 +echo "$as_me:17741: result: $gmp_cv_header_alloca" >&5 echo "${ECHO_T}$gmp_cv_header_alloca" >&6 if test $gmp_cv_header_alloca = yes; then @@ -17710,13 +17748,13 @@ EOF fi -echo "$as_me:17713: checking for alloca (via gmp-impl.h)" >&5 +echo "$as_me:17751: checking for alloca (via gmp-impl.h)" >&5 echo $ECHO_N "checking for alloca (via gmp-impl.h)... $ECHO_C" >&6 if test "${gmp_cv_func_alloca+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17719 "configure" +#line 17757 "configure" #include "confdefs.h" #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ #define __GMP_BITS_PER_MP_LIMB 123 /* dummy for mpf_get_prec etc inlines */ @@ -17734,16 +17772,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17737: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17740: \$? = $ac_status" >&5 + echo "$as_me:17778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17743: \"$ac_try\"") >&5 + { (eval echo "$as_me:17781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17746: \$? = $ac_status" >&5 + echo "$as_me:17784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gmp_cv_func_alloca=yes else @@ -17753,7 +17791,7 @@ gmp_cv_func_alloca=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17756: result: $gmp_cv_func_alloca" >&5 +echo "$as_me:17794: result: $gmp_cv_func_alloca" >&5 echo "${ECHO_T}$gmp_cv_func_alloca" >&6 if test $gmp_cv_func_alloca = yes; then @@ -17763,7 +17801,7 @@ EOF fi -echo "$as_me:17766: checking how to allocate temporary memory" >&5 +echo "$as_me:17804: checking how to allocate temporary memory" >&5 echo $ECHO_N "checking how to allocate temporary memory... $ECHO_C" >&6 if test "${gmp_cv_option_alloca+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17787,12 +17825,12 @@ else esac fi -echo "$as_me:17790: result: $gmp_cv_option_alloca" >&5 +echo "$as_me:17828: result: $gmp_cv_option_alloca" >&5 echo "${ECHO_T}$gmp_cv_option_alloca" >&6 case $gmp_cv_option_alloca in alloca) if test $gmp_cv_func_alloca = no; then - { { echo "$as_me:17795: error: --enable-alloca=alloca specified, but alloca not available" >&5 + { { echo "$as_me:17833: error: --enable-alloca=alloca specified, but alloca not available" >&5 echo "$as_me: error: --enable-alloca=alloca specified, but alloca not available" >&2;} { (exit 1); exit 1; }; } fi @@ -17828,14 +17866,14 @@ EOF ;; *) # checks at the start of configure.in should protect us - { { echo "$as_me:17831: error: unrecognised --enable-alloca=$gmp_cv_option_alloca" >&5 + { { echo "$as_me:17869: error: unrecognised --enable-alloca=$gmp_cv_option_alloca" >&5 echo "$as_me: error: unrecognised --enable-alloca=$gmp_cv_option_alloca" >&2;} { (exit 1); exit 1; }; } ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 17838 "configure" +#line 17876 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -17856,22 +17894,22 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17897: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17862: \$? = $ac_status" >&5 + echo "$as_me:17900: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17865: \"$ac_try\"") >&5 + { (eval echo "$as_me:17903: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17868: \$? = $ac_status" >&5 + echo "$as_me:17906: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ echo "$as_me:17874: WARNING: gmp.h doesnt recognise <stdio.h>, FILE prototypes will be unavailable" >&5 +{ echo "$as_me:17912: WARNING: gmp.h doesnt recognise <stdio.h>, FILE prototypes will be unavailable" >&5 echo "$as_me: WARNING: gmp.h doesnt recognise <stdio.h>, FILE prototypes will be unavailable" >&2;} fi rm -f conftest.$ac_objext conftest.$ac_ext @@ -17890,7 +17928,7 @@ case $host in ;; *) cat >conftest.$ac_ext <<_ACEOF -#line 17893 "configure" +#line 17931 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -17912,27 +17950,27 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17915: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17953: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17918: \$? = $ac_status" >&5 + echo "$as_me:17956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17921: \"$ac_try\"") >&5 + { (eval echo "$as_me:17959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17924: \$? = $ac_status" >&5 + echo "$as_me:17962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - { echo "$as_me:17931: WARNING: gmp-impl.h doesnt recognise \"double\" as IEEE." >&5 + { echo "$as_me:17969: WARNING: gmp-impl.h doesnt recognise \"double\" as IEEE." >&5 echo "$as_me: WARNING: gmp-impl.h doesnt recognise \"double\" as IEEE." >&2;} - { echo "$as_me:17933: WARNING: If your CPU floats are in fact IEEE then you" >&5 + { echo "$as_me:17971: WARNING: If your CPU floats are in fact IEEE then you" >&5 echo "$as_me: WARNING: If your CPU floats are in fact IEEE then you" >&2;} - { echo "$as_me:17935: WARNING: might like to augment the tests there." >&5 + { echo "$as_me:17973: WARNING: might like to augment the tests there." >&5 echo "$as_me: WARNING: might like to augment the tests there." >&2;} fi @@ -17947,7 +17985,7 @@ esac if test "$cross_compiling" = yes; then ac_cv_c_bigendian=unknown fi -echo "$as_me:17950: checking whether byte ordering is bigendian" >&5 +echo "$as_me:17988: checking whether byte ordering is bigendian" >&5 echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6 if test "${ac_cv_c_bigendian+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17955,7 +17993,7 @@ else ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat >conftest.$ac_ext <<_ACEOF -#line 17958 "configure" +#line 17996 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -17972,20 +18010,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17975: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18013: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17978: \$? = $ac_status" >&5 + echo "$as_me:18016: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17981: \"$ac_try\"") >&5 + { (eval echo "$as_me:18019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17984: \$? = $ac_status" >&5 + echo "$as_me:18022: \$? = $ac_status" >&5 (exit $ac_status); }; }; then # It does; now see whether it defined to BIG_ENDIAN or not. cat >conftest.$ac_ext <<_ACEOF -#line 17988 "configure" +#line 18026 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -18002,16 +18040,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18005: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18043: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18008: \$? = $ac_status" >&5 + echo "$as_me:18046: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18011: \"$ac_try\"") >&5 + { (eval echo "$as_me:18049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18014: \$? = $ac_status" >&5 + echo "$as_me:18052: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=yes else @@ -18027,12 +18065,12 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext if test $ac_cv_c_bigendian = unknown; then if test "$cross_compiling" = yes; then - { { echo "$as_me:18030: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:18068: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 18035 "configure" +#line 18073 "configure" #include "confdefs.h" int main () @@ -18048,15 +18086,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18051: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18089: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18054: \$? = $ac_status" >&5 + echo "$as_me:18092: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18056: \"$ac_try\"") >&5 + { (eval echo "$as_me:18094: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18059: \$? = $ac_status" >&5 + echo "$as_me:18097: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=no else @@ -18069,7 +18107,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:18072: result: $ac_cv_c_bigendian" >&5 +echo "$as_me:18110: result: $ac_cv_c_bigendian" >&5 echo "${ECHO_T}$ac_cv_c_bigendian" >&6 if test $ac_cv_c_bigendian = yes; then @@ -18093,7 +18131,7 @@ cat >>confdefs.h <<\EOF EOF ;; unknown) ;; - *) { { echo "$as_me:18096: error: Oops, unrecognised ac_cv_c_bigendian" >&5 + *) { { echo "$as_me:18134: error: Oops, unrecognised ac_cv_c_bigendian" >&5 echo "$as_me: error: Oops, unrecognised ac_cv_c_bigendian" >&2;} { (exit 1); exit 1; }; } ;; esac @@ -18128,13 +18166,13 @@ esac for ac_func in alarm clock cputime getpagesize getrusage gettimeofday localeconv memset mmap mprotect obstack_vprintf popen processor_info read_real_time sigaction sigaltstack sigstack strchr strnlen strtoul sysconf sysctl sysctlbyname times do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:18131: checking for $ac_func" >&5 +echo "$as_me:18169: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18137 "configure" +#line 18175 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -18165,16 +18203,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18206: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18171: \$? = $ac_status" >&5 + echo "$as_me:18209: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18174: \"$ac_try\"") >&5 + { (eval echo "$as_me:18212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18177: \$? = $ac_status" >&5 + echo "$as_me:18215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -18184,7 +18222,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18187: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:18225: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -18197,13 +18235,13 @@ done # FIXME: Would have done this with an AM_CONDITIONAL, but automake 1.5 # doesn't like that under libgmp_la_DEPENDENCIES. -echo "$as_me:18200: checking for vsnprintf" >&5 +echo "$as_me:18238: checking for vsnprintf" >&5 echo $ECHO_N "checking for vsnprintf... $ECHO_C" >&6 if test "${ac_cv_func_vsnprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18206 "configure" +#line 18244 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char vsnprintf (); below. */ @@ -18234,16 +18272,16 @@ f = vsnprintf; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18237: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18275: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18240: \$? = $ac_status" >&5 + echo "$as_me:18278: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18243: \"$ac_try\"") >&5 + { (eval echo "$as_me:18281: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18246: \$? = $ac_status" >&5 + echo "$as_me:18284: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vsnprintf=yes else @@ -18253,7 +18291,7 @@ ac_cv_func_vsnprintf=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18256: result: $ac_cv_func_vsnprintf" >&5 +echo "$as_me:18294: result: $ac_cv_func_vsnprintf" >&5 echo "${ECHO_T}$ac_cv_func_vsnprintf" >&6 if test $ac_cv_func_vsnprintf = yes; then gmp_vsnprintf_exists=yes @@ -18264,7 +18302,7 @@ fi if test "$gmp_vsnprintf_exists" = no; then gmp_cv_func_vsnprintf=no else - echo "$as_me:18267: checking whether vsnprintf works" >&5 + echo "$as_me:18305: checking whether vsnprintf works" >&5 echo $ECHO_N "checking whether vsnprintf works... $ECHO_C" >&6 if test "${gmp_cv_func_vsnprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18275,7 +18313,7 @@ else gmp_cv_func_vsnprintf=probably; break else cat >conftest.$ac_ext <<_ACEOF -#line 18278 "configure" +#line 18316 "configure" #include "confdefs.h" #include <string.h> /* for strcmp */ @@ -18328,15 +18366,15 @@ $i _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18331: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18369: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18334: \$? = $ac_status" >&5 + echo "$as_me:18372: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18336: \"$ac_try\"") >&5 + { (eval echo "$as_me:18374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18339: \$? = $ac_status" >&5 + echo "$as_me:18377: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18350,10 +18388,10 @@ fi done fi -echo "$as_me:18353: result: $gmp_cv_func_vsnprintf" >&5 +echo "$as_me:18391: result: $gmp_cv_func_vsnprintf" >&5 echo "${ECHO_T}$gmp_cv_func_vsnprintf" >&6 if test "$gmp_cv_func_vsnprintf" = probably; then - { echo "$as_me:18356: WARNING: cannot check for properly working vsnprintf when cross compiling, will assume it's ok" >&5 + { echo "$as_me:18394: WARNING: cannot check for properly working vsnprintf when cross compiling, will assume it's ok" >&5 echo "$as_me: WARNING: cannot check for properly working vsnprintf when cross compiling, will assume it's ok" >&2;} fi if test "$gmp_cv_func_vsnprintf" != no; then @@ -18372,7 +18410,7 @@ if test "$gmp_cv_func_vsnprintf" = no; then fi -echo "$as_me:18375: checking whether sscanf needs writable input" >&5 +echo "$as_me:18413: checking whether sscanf needs writable input" >&5 echo $ECHO_N "checking whether sscanf needs writable input... $ECHO_C" >&6 if test "${gmp_cv_func_sscanf_writable_input+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18384,7 +18422,7 @@ else esac fi -echo "$as_me:18387: result: $gmp_cv_func_sscanf_writable_input" >&5 +echo "$as_me:18425: result: $gmp_cv_func_sscanf_writable_input" >&5 echo "${ECHO_T}$gmp_cv_func_sscanf_writable_input" >&6 case $gmp_cv_func_sscanf_writable_input in yes) @@ -18393,7 +18431,7 @@ cat >>confdefs.h <<\EOF EOF ;; no) ;; - *) { { echo "$as_me:18396: error: unrecognised \$gmp_cv_func_sscanf_writable_input" >&5 + *) { { echo "$as_me:18434: error: unrecognised \$gmp_cv_func_sscanf_writable_input" >&5 echo "$as_me: error: unrecognised \$gmp_cv_func_sscanf_writable_input" >&2;} { (exit 1); exit 1; }; } ;; esac @@ -18523,7 +18561,7 @@ EOF fi done if test $found = no; then - { { echo "$as_me:18526: error: no version of $tmp_fn found in path: $path" >&5 + { { echo "$as_me:18564: error: no version of $tmp_fn found in path: $path" >&5 echo "$as_me: error: no version of $tmp_fn found in path: $path" >&2;} { (exit 1); exit 1; }; } fi @@ -18538,7 +18576,7 @@ fi # Don't demand an m4 unless it's actually needed. if test $found_asm = yes; then -echo "$as_me:18541: checking for suitable m4" >&5 +echo "$as_me:18579: checking for suitable m4" >&5 echo $ECHO_N "checking for suitable m4... $ECHO_C" >&6 if test "${gmp_cv_prog_m4+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18574,7 +18612,7 @@ EOF done IFS="$ac_save_ifs" if test -z "$gmp_cv_prog_m4"; then - { { echo "$as_me:18577: error: No usable m4 in \$PATH or /usr/5bin (see config.log for reasons)." >&5 + { { echo "$as_me:18615: error: No usable m4 in \$PATH or /usr/5bin (see config.log for reasons)." >&5 echo "$as_me: error: No usable m4 in \$PATH or /usr/5bin (see config.log for reasons)." >&2;} { (exit 1); exit 1; }; } fi @@ -18582,11 +18620,11 @@ echo "$as_me: error: No usable m4 in \$PATH or /usr/5bin (see config.log for rea rm -f conftest.m4 fi fi -echo "$as_me:18585: result: $gmp_cv_prog_m4" >&5 +echo "$as_me:18623: result: $gmp_cv_prog_m4" >&5 echo "${ECHO_T}$gmp_cv_prog_m4" >&6 M4="$gmp_cv_prog_m4" -echo "$as_me:18589: checking if m4wrap produces spurious output" >&5 +echo "$as_me:18627: checking if m4wrap produces spurious output" >&5 echo $ECHO_N "checking if m4wrap produces spurious output... $ECHO_C" >&6 if test "${gmp_cv_m4_m4wrap_spurious+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18608,7 +18646,7 @@ else fi fi -echo "$as_me:18611: result: $gmp_cv_m4_m4wrap_spurious" >&5 +echo "$as_me:18649: result: $gmp_cv_m4_m4wrap_spurious" >&5 echo "${ECHO_T}$gmp_cv_m4_m4wrap_spurious" >&6 echo "define(<M4WRAP_SPURIOUS>,<$gmp_cv_m4_m4wrap_spurious>)" >> $gmp_tmpconfigm4 @@ -18623,7 +18661,7 @@ if test $found_asm = no && test $found_S = no; then fi if test "$gmp_asm_syntax_testing" != no; then - echo "$as_me:18626: checking how to switch to text section" >&5 + echo "$as_me:18664: checking how to switch to text section" >&5 echo $ECHO_N "checking how to switch to text section... $ECHO_C" >&6 if test "${gmp_cv_asm_text+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18635,11 +18673,11 @@ else esac fi -echo "$as_me:18638: result: $gmp_cv_asm_text" >&5 +echo "$as_me:18676: result: $gmp_cv_asm_text" >&5 echo "${ECHO_T}$gmp_cv_asm_text" >&6 echo "define(<TEXT>, <$gmp_cv_asm_text>)" >> $gmp_tmpconfigm4 - echo "$as_me:18642: checking how to switch to data section" >&5 + echo "$as_me:18680: checking how to switch to data section" >&5 echo $ECHO_N "checking how to switch to data section... $ECHO_C" >&6 if test "${gmp_cv_asm_data+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18650,11 +18688,11 @@ else esac fi -echo "$as_me:18653: result: $gmp_cv_asm_data" >&5 +echo "$as_me:18691: result: $gmp_cv_asm_data" >&5 echo "${ECHO_T}$gmp_cv_asm_data" >&6 echo "define(<DATA>, <$gmp_cv_asm_data>)" >> $gmp_tmpconfigm4 - echo "$as_me:18657: checking what assembly label suffix to use" >&5 + echo "$as_me:18695: checking what assembly label suffix to use" >&5 echo $ECHO_N "checking what assembly label suffix to use... $ECHO_C" >&6 if test "${gmp_cv_asm_label_suffix+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18666,11 +18704,11 @@ else esac fi -echo "$as_me:18669: result: $gmp_cv_asm_label_suffix" >&5 +echo "$as_me:18707: result: $gmp_cv_asm_label_suffix" >&5 echo "${ECHO_T}$gmp_cv_asm_label_suffix" >&6 echo "define(<LABEL_SUFFIX>, <\$1$gmp_cv_asm_label_suffix>)" >> $gmp_tmpconfigm4 - echo "$as_me:18673: checking how to export a symbol" >&5 + echo "$as_me:18711: checking how to export a symbol" >&5 echo $ECHO_N "checking how to export a symbol... $ECHO_C" >&6 if test "${gmp_cv_asm_globl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18681,11 +18719,11 @@ else esac fi -echo "$as_me:18684: result: $gmp_cv_asm_globl" >&5 +echo "$as_me:18722: result: $gmp_cv_asm_globl" >&5 echo "${ECHO_T}$gmp_cv_asm_globl" >&6 echo "define(<GLOBL>, <$gmp_cv_asm_globl>)" >> $gmp_tmpconfigm4 -echo "$as_me:18688: checking if globals are prefixed by underscore" >&5 +echo "$as_me:18726: checking if globals are prefixed by underscore" >&5 echo $ECHO_N "checking if globals are prefixed by underscore... $ECHO_C" >&6 if test "${gmp_cv_asm_underscore+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18711,10 +18749,10 @@ EOF ;; esac gmp_compile="$CC $CFLAGS $CPPFLAGS -c conftes1.c >&5 && $CCAS $CFLAGS conftes2.s >&5 && $CC $CFLAGS conftes1.$ac_objext conftes2.$ac_objext >&5" - if { (eval echo "$as_me:18714: \"$gmp_compile\"") >&5 + if { (eval echo "$as_me:18752: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:18717: \$? = $ac_status" >&5 + echo "$as_me:18755: \$? = $ac_status" >&5 (exit $ac_status); }; then eval tmp_result$tmp_underscore=yes else @@ -18724,7 +18762,7 @@ done if test $tmp_result_ = yes; then if test $tmp_result = yes; then - { { echo "$as_me:18727: error: Test program unexpectedly links both with and without underscore." >&5 + { { echo "$as_me:18765: error: Test program unexpectedly links both with and without underscore." >&5 echo "$as_me: error: Test program unexpectedly links both with and without underscore." >&2;} { (exit 1); exit 1; }; } else @@ -18734,7 +18772,7 @@ else if test $tmp_result = yes; then gmp_cv_asm_underscore=no else - { { echo "$as_me:18737: error: Test program links neither with nor without underscore." >&5 + { { echo "$as_me:18775: error: Test program links neither with nor without underscore." >&5 echo "$as_me: error: Test program links neither with nor without underscore." >&2;} { (exit 1); exit 1; }; } fi @@ -18742,7 +18780,7 @@ fi rm -f conftes1* conftes2* a.out fi -echo "$as_me:18745: result: $gmp_cv_asm_underscore" >&5 +echo "$as_me:18783: result: $gmp_cv_asm_underscore" >&5 echo "${ECHO_T}$gmp_cv_asm_underscore" >&6 if test "$gmp_cv_asm_underscore" = "yes"; then @@ -18754,7 +18792,7 @@ echo 'define(<GSYM_PREFIX>, <>)' >>$gmp_tmpconfigm4 fi -echo "$as_me:18757: checking how to switch to read-only data section" >&5 +echo "$as_me:18795: checking how to switch to read-only data section" >&5 echo $ECHO_N "checking how to switch to read-only data section... $ECHO_C" >&6 if test "${gmp_cv_asm_rodata+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18771,10 +18809,10 @@ EOF echo "Test program:" >&5 cat conftest.c >&5 gmp_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c >&5" -if { (eval echo "$as_me:18774: \"$gmp_compile\"") >&5 +if { (eval echo "$as_me:18812: \"$gmp_compile\"") >&5 (eval $gmp_compile) 2>&5 ac_status=$? - echo "$as_me:18777: \$? = $ac_status" >&5 + echo "$as_me:18815: \$? = $ac_status" >&5 (exit $ac_status); }; then echo "Compiler output:" >&5 cat conftest.s >&5 @@ -18804,11 +18842,11 @@ if { (eval echo "$as_me:18774: \"$gmp_compile\"") >&5 fi fi -echo "$as_me:18807: result: $gmp_cv_asm_rodata" >&5 +echo "$as_me:18845: result: $gmp_cv_asm_rodata" >&5 echo "${ECHO_T}$gmp_cv_asm_rodata" >&6 echo "define(<RODATA>, <$gmp_cv_asm_rodata>)" >> $gmp_tmpconfigm4 - echo "$as_me:18811: checking if the export directive needs an attribute" >&5 + echo "$as_me:18849: checking if the export directive needs an attribute" >&5 echo $ECHO_N "checking if the export directive needs an attribute... $ECHO_C" >&6 if test "${gmp_cv_asm_globl_attr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18819,11 +18857,11 @@ else esac fi -echo "$as_me:18822: result: $gmp_cv_asm_globl_attr" >&5 +echo "$as_me:18860: result: $gmp_cv_asm_globl_attr" >&5 echo "${ECHO_T}$gmp_cv_asm_globl_attr" >&6 echo "define(<GLOBL_ATTR>, <$gmp_cv_asm_globl_attr>)" >> $gmp_tmpconfigm4 - echo "$as_me:18826: checking for assembler .type directive" >&5 + echo "$as_me:18864: checking for assembler .type directive" >&5 echo $ECHO_N "checking for assembler .type directive... $ECHO_C" >&6 if test "${gmp_cv_asm_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18834,10 +18872,10 @@ for gmp_tmp_prefix in @ \# %; do .type sym,${gmp_tmp_prefix}function EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:18837: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:18875: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:18840: \$? = $ac_status" >&5 + echo "$as_me:18878: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 if grep "\.type pseudo-op used outside of \.def/\.endef ignored" conftest.out >/dev/null; then : ; @@ -18857,11 +18895,11 @@ done rm -f conftest* fi -echo "$as_me:18860: result: $gmp_cv_asm_type" >&5 +echo "$as_me:18898: result: $gmp_cv_asm_type" >&5 echo "${ECHO_T}$gmp_cv_asm_type" >&6 echo "define(<TYPE>, <$gmp_cv_asm_type>)" >> $gmp_tmpconfigm4 - echo "$as_me:18864: checking for assembler .size directive" >&5 + echo "$as_me:18902: checking for assembler .size directive" >&5 echo $ECHO_N "checking for assembler .size directive... $ECHO_C" >&6 if test "${gmp_cv_asm_size+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18871,10 +18909,10 @@ cat >conftest.s <<EOF .size sym,1 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:18874: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:18912: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:18877: \$? = $ac_status" >&5 + echo "$as_me:18915: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 if grep "\.size pseudo-op used outside of \.def/\.endef ignored" conftest.out >/dev/null; then : ; @@ -18890,11 +18928,11 @@ fi rm -f conftest* fi -echo "$as_me:18893: result: $gmp_cv_asm_size" >&5 +echo "$as_me:18931: result: $gmp_cv_asm_size" >&5 echo "${ECHO_T}$gmp_cv_asm_size" >&6 echo "define(<SIZE>, <$gmp_cv_asm_size>)" >> $gmp_tmpconfigm4 -echo "$as_me:18897: checking what prefix to use for a local label" >&5 +echo "$as_me:18935: checking what prefix to use for a local label" >&5 echo $ECHO_N "checking what prefix to use for a local label... $ECHO_C" >&6 if test "${gmp_cv_asm_lsym_prefix+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18906,15 +18944,15 @@ dummy${gmp_cv_asm_label_suffix} ${gmp_tmp_pre}gurkmacka${gmp_cv_asm_label_suffix} EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:18909: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:18947: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:18912: \$? = $ac_status" >&5 + echo "$as_me:18950: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 if $NM conftest.$ac_objext >conftest.nm 2>&5; then : ; else cat conftest.nm >&5 - { echo "$as_me:18917: WARNING: \"$NM\" failure" >&5 + { echo "$as_me:18955: WARNING: \"$NM\" failure" >&5 echo "$as_me: WARNING: \"$NM\" failure" >&2;} break fi @@ -18943,12 +18981,12 @@ done rm -f conftest* if test -z "$gmp_cv_asm_lsym_prefix"; then gmp_cv_asm_lsym_prefix=L - { echo "$as_me:18946: WARNING: cannot determine local label, using default $gmp_cv_asm_lsym_prefix" >&5 + { echo "$as_me:18984: WARNING: cannot determine local label, using default $gmp_cv_asm_lsym_prefix" >&5 echo "$as_me: WARNING: cannot determine local label, using default $gmp_cv_asm_lsym_prefix" >&2;} fi fi -echo "$as_me:18951: result: $gmp_cv_asm_lsym_prefix" >&5 +echo "$as_me:18989: result: $gmp_cv_asm_lsym_prefix" >&5 echo "${ECHO_T}$gmp_cv_asm_lsym_prefix" >&6 echo "define(<LSYM_PREFIX>, <${gmp_cv_asm_lsym_prefix}>)" >> $gmp_tmpconfigm4 @@ -18956,7 +18994,7 @@ cat >>confdefs.h <<EOF #define LSYM_PREFIX "$gmp_cv_asm_lsym_prefix" EOF -echo "$as_me:18959: checking how to define a 32-bit word" >&5 +echo "$as_me:18997: checking how to define a 32-bit word" >&5 echo $ECHO_N "checking how to define a 32-bit word... $ECHO_C" >&6 if test "${gmp_cv_asm_w32+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18981,10 +19019,10 @@ foo$gmp_cv_asm_label_suffix .byte 0 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:18984: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19022: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:18987: \$? = $ac_status" >&5 + echo "$as_me:19025: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_tmp_val=`$NM conftest.$ac_objext | grep foo | \ @@ -19006,17 +19044,17 @@ rm -f conftest* ;; esac if test -z "$gmp_cv_asm_w32"; then - { { echo "$as_me:19009: error: cannot determine how to define a 32-bit word" >&5 + { { echo "$as_me:19047: error: cannot determine how to define a 32-bit word" >&5 echo "$as_me: error: cannot determine how to define a 32-bit word" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:19015: result: $gmp_cv_asm_w32" >&5 +echo "$as_me:19053: result: $gmp_cv_asm_w32" >&5 echo "${ECHO_T}$gmp_cv_asm_w32" >&6 echo "define(<W32>, <$gmp_cv_asm_w32>)" >> $gmp_tmpconfigm4 -echo "$as_me:19019: checking if .align assembly directive is logarithmic" >&5 +echo "$as_me:19057: checking if .align assembly directive is logarithmic" >&5 echo $ECHO_N "checking if .align assembly directive is logarithmic... $ECHO_C" >&6 if test "${gmp_cv_asm_align_log+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19031,10 +19069,10 @@ foo$gmp_cv_asm_label_suffix .byte 2 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19034: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19072: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19037: \$? = $ac_status" >&5 + echo "$as_me:19075: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_tmp_val=`$NM conftest.$ac_objext | grep foo | \ @@ -19048,14 +19086,14 @@ else cat conftest.out >&5 echo "configure: failed program was:" >&5 cat conftest.s >&5 - { { echo "$as_me:19051: error: cannot assemble alignment test" >&5 + { { echo "$as_me:19089: error: cannot assemble alignment test" >&5 echo "$as_me: error: cannot assemble alignment test" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest* fi -echo "$as_me:19058: result: $gmp_cv_asm_align_log" >&5 +echo "$as_me:19096: result: $gmp_cv_asm_align_log" >&5 echo "${ECHO_T}$gmp_cv_asm_align_log" >&6 echo "define(<ALIGN_LOGARITHMIC>,<$gmp_cv_asm_align_log>)" >> $gmp_tmpconfigm4 @@ -19063,7 +19101,7 @@ echo "define(<ALIGN_LOGARITHMIC>,<$gmp_cv_asm_align_log>)" >> $gmp_tmpconfigm4 case $host in m68*-*-*) -echo "$as_me:19066: checking assembler instruction and register style" >&5 +echo "$as_me:19104: checking assembler instruction and register style" >&5 echo $ECHO_N "checking assembler instruction and register style... $ECHO_C" >&6 if test "${gmp_cv_asm_m68k_instruction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19075,10 +19113,10 @@ for i in "addl %d0,%d1" "add.l %d0,%d1" "addl d0,d1" "add.l d0,d1"; do $i EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19078: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19116: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19081: \$? = $ac_status" >&5 + echo "$as_me:19119: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_m68k_instruction=$i @@ -19095,14 +19133,14 @@ rm -f conftest* done fi -echo "$as_me:19098: result: $gmp_cv_asm_m68k_instruction" >&5 +echo "$as_me:19136: result: $gmp_cv_asm_m68k_instruction" >&5 echo "${ECHO_T}$gmp_cv_asm_m68k_instruction" >&6 case $gmp_cv_asm_m68k_instruction in "addl d0,d1") want_dot_size=no; want_register_percent=no ;; "addl %d0,%d1") want_dot_size=no; want_register_percent=yes ;; "add.l d0,d1") want_dot_size=yes; want_register_percent=no ;; "add.l %d0,%d1") want_dot_size=yes; want_register_percent=yes ;; -*) { { echo "$as_me:19105: error: cannot determine assembler instruction and register style" >&5 +*) { { echo "$as_me:19143: error: cannot determine assembler instruction and register style" >&5 echo "$as_me: error: cannot determine assembler instruction and register style" >&2;} { (exit 1); exit 1; }; } ;; esac @@ -19111,7 +19149,7 @@ echo "define(<WANT_REGISTER_PERCENT>, <\`$want_register_percent'>)" >> $gmp_tmpc echo "define(<WANT_DOT_SIZE>, <\`$want_dot_size'>)" >> $gmp_tmpconfigm4 -echo "$as_me:19114: checking assembler addressing style" >&5 +echo "$as_me:19152: checking assembler addressing style" >&5 echo $ECHO_N "checking assembler addressing style... $ECHO_C" >&6 if test "${gmp_cv_asm_m68k_addressing+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19119,14 +19157,14 @@ else case $gmp_cv_asm_m68k_instruction in addl*) movel=movel ;; add.l*) movel=move.l ;; -*) { { echo "$as_me:19122: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5 +*) { { echo "$as_me:19160: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5 echo "$as_me: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&2;} { (exit 1); exit 1; }; } ;; esac case $gmp_cv_asm_m68k_instruction in *"%d0,%d1") dreg=%d0; areg=%a0 ;; *"d0,d1") dreg=d0; areg=a0 ;; -*) { { echo "$as_me:19129: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5 +*) { { echo "$as_me:19167: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5 echo "$as_me: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&2;} { (exit 1); exit 1; }; } ;; esac @@ -19135,10 +19173,10 @@ cat >conftest.s <<EOF $movel $dreg, $areg@- EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19138: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19176: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19141: \$? = $ac_status" >&5 + echo "$as_me:19179: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_m68k_addressing=mit @@ -19151,10 +19189,10 @@ else $movel $dreg, -($areg) EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19154: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19192: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19157: \$? = $ac_status" >&5 + echo "$as_me:19195: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_m68k_addressing=motorola @@ -19162,7 +19200,7 @@ else cat conftest.out >&5 echo "configure: failed program was:" >&5 cat conftest.s >&5 - { { echo "$as_me:19165: error: cannot determine assembler addressing style" >&5 + { { echo "$as_me:19203: error: cannot determine assembler addressing style" >&5 echo "$as_me: error: cannot determine assembler addressing style" >&2;} { (exit 1); exit 1; }; } fi @@ -19172,12 +19210,12 @@ fi rm -f conftest* fi -echo "$as_me:19175: result: $gmp_cv_asm_m68k_addressing" >&5 +echo "$as_me:19213: result: $gmp_cv_asm_m68k_addressing" >&5 echo "${ECHO_T}$gmp_cv_asm_m68k_addressing" >&6 echo "define(<WANT_ADDRESSING>, <\`$gmp_cv_asm_m68k_addressing'>)" >> $gmp_tmpconfigm4 -echo "$as_me:19180: checking assembler shortest branches" >&5 +echo "$as_me:19218: checking assembler shortest branches" >&5 echo $ECHO_N "checking assembler shortest branches... $ECHO_C" >&6 if test "${gmp_cv_asm_m68k_branches+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19190,10 +19228,10 @@ foo$gmp_cv_asm_label_suffix $i foo EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19193: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19231: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19196: \$? = $ac_status" >&5 + echo "$as_me:19234: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_m68k_branches=$i @@ -19210,10 +19248,10 @@ rm -f conftest* done fi -echo "$as_me:19213: result: $gmp_cv_asm_m68k_branches" >&5 +echo "$as_me:19251: result: $gmp_cv_asm_m68k_branches" >&5 echo "${ECHO_T}$gmp_cv_asm_m68k_branches" >&6 if test "$gmp_cv_asm_m68k_branches" = unknown; then - { { echo "$as_me:19216: error: cannot determine assembler branching style" >&5 + { { echo "$as_me:19254: error: cannot determine assembler branching style" >&5 echo "$as_me: error: cannot determine assembler branching style" >&2;} { (exit 1); exit 1; }; } fi @@ -19223,7 +19261,7 @@ echo "define(<WANT_BRANCHES>, <\`$gmp_cv_asm_m68k_branches'>)" >> $gmp_tmpconfig ;; power*-*-*) -echo "$as_me:19226: checking if the assembler needs r on registers" >&5 +echo "$as_me:19264: checking if the assembler needs r on registers" >&5 echo $ECHO_N "checking if the assembler needs r on registers... $ECHO_C" >&6 if test "${gmp_cv_asm_powerpc_r_registers+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19233,10 +19271,10 @@ else mtctr 6 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19236: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19274: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19239: \$? = $ac_status" >&5 + echo "$as_me:19277: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_powerpc_r_registers=no @@ -19249,10 +19287,10 @@ else mtctr r6 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19252: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19290: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19255: \$? = $ac_status" >&5 + echo "$as_me:19293: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_powerpc_r_registers=yes @@ -19260,7 +19298,7 @@ else cat conftest.out >&5 echo "configure: failed program was:" >&5 cat conftest.s >&5 - { { echo "$as_me:19263: error: neither \"mtctr 6\" nor \"mtctr r6\" works" >&5 + { { echo "$as_me:19301: error: neither \"mtctr 6\" nor \"mtctr r6\" works" >&5 echo "$as_me: error: neither \"mtctr 6\" nor \"mtctr r6\" works" >&2;} { (exit 1); exit 1; }; } fi @@ -19270,7 +19308,7 @@ fi rm -f conftest* fi -echo "$as_me:19273: result: $gmp_cv_asm_powerpc_r_registers" >&5 +echo "$as_me:19311: result: $gmp_cv_asm_powerpc_r_registers" >&5 echo "${ECHO_T}$gmp_cv_asm_powerpc_r_registers" >&6 echo "define(<WANT_R_REGISTERS>,<$gmp_cv_asm_powerpc_r_registers>)" >> $gmp_tmpconfigm4 @@ -19278,7 +19316,8 @@ echo "define(<WANT_R_REGISTERS>,<$gmp_cv_asm_powerpc_r_registers>)" >> $gmp_tmpc echo "include_mpn(\`powerpc32/powerpc-defs.m4')" >> $gmp_tmpconfigm4i case $host in - powerpc64*-*-aix*) + powerpc64-*-aix* | powerpc630-*-aix*) + echo "include_mpn(\`powerpc64/aix.m4')" >> $gmp_tmpconfigm4i ;; *-*-aix*) @@ -19289,7 +19328,7 @@ echo "include_mpn(\`powerpc32/aix.m4')" >> $gmp_tmpconfigm4i i?86*-*-* | k[5-8]*-*-* | pentium*-*-* | athlon-*-*) -echo "$as_me:19292: checking if the .align directive accepts an 0x90 fill in .text" >&5 +echo "$as_me:19331: checking if the .align directive accepts an 0x90 fill in .text" >&5 echo $ECHO_N "checking if the .align directive accepts an 0x90 fill in .text... $ECHO_C" >&6 if test "${gmp_cv_asm_align_fill_0x90+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19301,10 +19340,10 @@ else .align 4, 0x90 EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19304: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19343: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19307: \$? = $ac_status" >&5 + echo "$as_me:19346: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 if grep "Warning: Fill parameter ignored for executable section" conftest.out >/dev/null; then @@ -19322,12 +19361,12 @@ fi rm -f conftest* fi -echo "$as_me:19325: result: $gmp_cv_asm_align_fill_0x90" >&5 +echo "$as_me:19364: result: $gmp_cv_asm_align_fill_0x90" >&5 echo "${ECHO_T}$gmp_cv_asm_align_fill_0x90" >&6 echo "define(<ALIGN_FILL_0x90>,<$gmp_cv_asm_align_fill_0x90>)" >> $gmp_tmpconfigm4 -echo "$as_me:19330: checking if the assembler takes cl with shldl" >&5 +echo "$as_me:19369: checking if the assembler takes cl with shldl" >&5 echo $ECHO_N "checking if the assembler takes cl with shldl... $ECHO_C" >&6 if test "${gmp_cv_asm_x86_shldl_cl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19337,10 +19376,10 @@ else shldl %cl, %eax, %ebx EOF gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1" -if { (eval echo "$as_me:19340: \"$gmp_assemble\"") >&5 +if { (eval echo "$as_me:19379: \"$gmp_assemble\"") >&5 (eval $gmp_assemble) 2>&5 ac_status=$? - echo "$as_me:19343: \$? = $ac_status" >&5 + echo "$as_me:19382: \$? = $ac_status" >&5 (exit $ac_status); }; then cat conftest.out >&5 gmp_cv_asm_x86_shldl_cl=yes @@ -19353,7 +19392,7 @@ fi rm -f conftest* fi -echo "$as_me:19356: result: $gmp_cv_asm_x86_shldl_cl" >&5 +echo "$as_me:19395: result: $gmp_cv_asm_x86_shldl_cl" >&5 echo "${ECHO_T}$gmp_cv_asm_x86_shldl_cl" >&6 if test "$gmp_cv_asm_x86_shldl_cl" = "yes"; then @@ -19367,7 +19406,7 @@ fi if test "$enable_profiling" != no; then -echo "$as_me:19370: checking how to call x86 mcount" >&5 +echo "$as_me:19409: checking how to call x86 mcount" >&5 echo $ECHO_N "checking how to call x86 mcount... $ECHO_C" >&6 cat >conftest.c <<EOF foo(){bar();} @@ -19375,10 +19414,10 @@ EOF if test "$enable_static" = yes; then gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c 1>&5" - if { (eval echo "$as_me:19378: \"$gmp_asmout_compile\"") >&5 + if { (eval echo "$as_me:19417: \"$gmp_asmout_compile\"") >&5 (eval $gmp_asmout_compile) 2>&5 ac_status=$? - echo "$as_me:19381: \$? = $ac_status" >&5 + echo "$as_me:19420: \$? = $ac_status" >&5 (exit $ac_status); }; then if grep '\.data' conftest.s >/dev/null; then mcount_nonpic_reg=`sed -n '/esp/!s/.*movl.*,\(%[a-z]*\).*$/\1/p' conftest.s` @@ -19387,12 +19426,12 @@ if test "$enable_static" = yes; then fi mcount_nonpic_call=`grep 'call.*mcount' conftest.s` if test -z "$mcount_nonpic_call"; then - { { echo "$as_me:19390: error: Cannot find mcount call for non-PIC" >&5 + { { echo "$as_me:19429: error: Cannot find mcount call for non-PIC" >&5 echo "$as_me: error: Cannot find mcount call for non-PIC" >&2;} { (exit 1); exit 1; }; } fi else - { { echo "$as_me:19395: error: Cannot compile test program for non-PIC" >&5 + { { echo "$as_me:19434: error: Cannot compile test program for non-PIC" >&5 echo "$as_me: error: Cannot compile test program for non-PIC" >&2;} { (exit 1); exit 1; }; } fi @@ -19400,10 +19439,10 @@ fi if test "$enable_shared" = yes; then gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS $lt_prog_compiler_pic -S conftest.c 1>&5" - if { (eval echo "$as_me:19403: \"$gmp_asmout_compile\"") >&5 + if { (eval echo "$as_me:19442: \"$gmp_asmout_compile\"") >&5 (eval $gmp_asmout_compile) 2>&5 ac_status=$? - echo "$as_me:19406: \$? = $ac_status" >&5 + echo "$as_me:19445: \$? = $ac_status" >&5 (exit $ac_status); }; then if grep '\.data' conftest.s >/dev/null; then case $lt_prog_compiler_pic in @@ -19420,12 +19459,12 @@ if test "$enable_shared" = yes; then fi mcount_pic_call=`grep 'call.*mcount' conftest.s` if test -z "$mcount_pic_call"; then - { { echo "$as_me:19423: error: Cannot find mcount call for PIC" >&5 + { { echo "$as_me:19462: error: Cannot find mcount call for PIC" >&5 echo "$as_me: error: Cannot find mcount call for PIC" >&2;} { (exit 1); exit 1; }; } fi else - { { echo "$as_me:19428: error: Cannot compile test program for PIC" >&5 + { { echo "$as_me:19467: error: Cannot compile test program for PIC" >&5 echo "$as_me: error: Cannot compile test program for PIC" >&2;} { (exit 1); exit 1; }; } fi @@ -19440,7 +19479,7 @@ echo "define(<MCOUNT_PIC_REG>, <\`$mcount_pic_reg'>)" >> $gmp_tmpconfigm4 echo "define(<MCOUNT_PIC_CALL>, <\`$mcount_pic_call'>)" >> $gmp_tmpconfigm4 rm -f conftest.* -echo "$as_me:19443: result: determined" >&5 +echo "$as_me:19482: result: determined" >&5 echo "${ECHO_T}determined" >&6 fi @@ -19462,7 +19501,7 @@ for tmp_dir in $path; do fi done if test -z "$gmp_mparam_source"; then - { { echo "$as_me:19465: error: no version of gmp-mparam.h found in path: $path" >&5 + { { echo "$as_me:19504: error: no version of gmp-mparam.h found in path: $path" >&5 echo "$as_me: error: no version of gmp-mparam.h found in path: $path" >&2;} { (exit 1); exit 1; }; } fi @@ -19485,13 +19524,13 @@ __GMP_BITS_PER_MP_LIMB=`sed -n 's/^#define BITS_PER_MP_LIMB[ ][ ]*\([0-9]*\).* if test -n "$__GMP_BITS_PER_MP_LIMB" \ && grep "^#define BYTES_PER_MP_LIMB" $gmp_mparam_source >/dev/null; then : ; else - echo "$as_me:19488: checking for mp_limb_t" >&5 + echo "$as_me:19527: checking for mp_limb_t" >&5 echo $ECHO_N "checking for mp_limb_t... $ECHO_C" >&6 if test "${ac_cv_type_mp_limb_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19494 "configure" +#line 19533 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -19511,16 +19550,16 @@ if (sizeof (mp_limb_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19514: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19553: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19517: \$? = $ac_status" >&5 + echo "$as_me:19556: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19520: \"$ac_try\"") >&5 + { (eval echo "$as_me:19559: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19523: \$? = $ac_status" >&5 + echo "$as_me:19562: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mp_limb_t=yes else @@ -19530,10 +19569,10 @@ ac_cv_type_mp_limb_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19533: result: $ac_cv_type_mp_limb_t" >&5 +echo "$as_me:19572: result: $ac_cv_type_mp_limb_t" >&5 echo "${ECHO_T}$ac_cv_type_mp_limb_t" >&6 -echo "$as_me:19536: checking size of mp_limb_t" >&5 +echo "$as_me:19575: checking size of mp_limb_t" >&5 echo $ECHO_N "checking size of mp_limb_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_mp_limb_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19542,7 +19581,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 19545 "configure" +#line 19584 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -19559,21 +19598,21 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19562: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19601: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19565: \$? = $ac_status" >&5 + echo "$as_me:19604: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19568: \"$ac_try\"") >&5 + { (eval echo "$as_me:19607: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19571: \$? = $ac_status" >&5 + echo "$as_me:19610: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 19576 "configure" +#line 19615 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -19590,16 +19629,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19593: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19596: \$? = $ac_status" >&5 + echo "$as_me:19635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19599: \"$ac_try\"") >&5 + { (eval echo "$as_me:19638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19602: \$? = $ac_status" >&5 + echo "$as_me:19641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -19615,7 +19654,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 19618 "configure" +#line 19657 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -19632,16 +19671,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19635: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19674: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19638: \$? = $ac_status" >&5 + echo "$as_me:19677: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19641: \"$ac_try\"") >&5 + { (eval echo "$as_me:19680: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19644: \$? = $ac_status" >&5 + echo "$as_me:19683: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -19657,7 +19696,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 19660 "configure" +#line 19699 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -19674,16 +19713,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19677: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19716: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19680: \$? = $ac_status" >&5 + echo "$as_me:19719: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19683: \"$ac_try\"") >&5 + { (eval echo "$as_me:19722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19686: \$? = $ac_status" >&5 + echo "$as_me:19725: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -19696,12 +19735,12 @@ done ac_cv_sizeof_mp_limb_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:19699: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:19738: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 19704 "configure" +#line 19743 "configure" #include "confdefs.h" #include <stdio.h> #define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */ @@ -19722,15 +19761,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19725: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19764: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19728: \$? = $ac_status" >&5 + echo "$as_me:19767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19730: \"$ac_try\"") >&5 + { (eval echo "$as_me:19769: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19733: \$? = $ac_status" >&5 + echo "$as_me:19772: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_mp_limb_t=`cat conftest.val` else @@ -19746,14 +19785,14 @@ else ac_cv_sizeof_mp_limb_t=0 fi fi -echo "$as_me:19749: result: $ac_cv_sizeof_mp_limb_t" >&5 +echo "$as_me:19788: result: $ac_cv_sizeof_mp_limb_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_mp_limb_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_MP_LIMB_T $ac_cv_sizeof_mp_limb_t EOF if test "$ac_cv_sizeof_mp_limb_t" = 0; then - { { echo "$as_me:19756: error: some sort of compiler problem, mp_limb_t doesn't seem to work" >&5 + { { echo "$as_me:19795: error: some sort of compiler problem, mp_limb_t doesn't seem to work" >&5 echo "$as_me: error: some sort of compiler problem, mp_limb_t doesn't seem to work" >&2;} { (exit 1); exit 1; }; } fi @@ -19774,13 +19813,13 @@ if grep "^#define BITS_PER_ULONG" $gmp_mparam_source >/dev/null; then : ; else case $limb_chosen in longlong) - echo "$as_me:19777: checking for unsigned long" >&5 + echo "$as_me:19816: checking for unsigned long" >&5 echo $ECHO_N "checking for unsigned long... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19783 "configure" +#line 19822 "configure" #include "confdefs.h" $ac_includes_default int @@ -19795,16 +19834,16 @@ if (sizeof (unsigned long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19798: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19837: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19801: \$? = $ac_status" >&5 + echo "$as_me:19840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19804: \"$ac_try\"") >&5 + { (eval echo "$as_me:19843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19807: \$? = $ac_status" >&5 + echo "$as_me:19846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_unsigned_long=yes else @@ -19814,10 +19853,10 @@ ac_cv_type_unsigned_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19817: result: $ac_cv_type_unsigned_long" >&5 +echo "$as_me:19856: result: $ac_cv_type_unsigned_long" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_long" >&6 -echo "$as_me:19820: checking size of unsigned long" >&5 +echo "$as_me:19859: checking size of unsigned long" >&5 echo $ECHO_N "checking size of unsigned long... $ECHO_C" >&6 if test "${ac_cv_sizeof_unsigned_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19826,7 +19865,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 19829 "configure" +#line 19868 "configure" #include "confdefs.h" $ac_includes_default int @@ -19838,21 +19877,21 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19841: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19880: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19844: \$? = $ac_status" >&5 + echo "$as_me:19883: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19847: \"$ac_try\"") >&5 + { (eval echo "$as_me:19886: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19850: \$? = $ac_status" >&5 + echo "$as_me:19889: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 19855 "configure" +#line 19894 "configure" #include "confdefs.h" $ac_includes_default int @@ -19864,16 +19903,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19867: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19870: \$? = $ac_status" >&5 + echo "$as_me:19909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19873: \"$ac_try\"") >&5 + { (eval echo "$as_me:19912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19876: \$? = $ac_status" >&5 + echo "$as_me:19915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -19889,7 +19928,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 19892 "configure" +#line 19931 "configure" #include "confdefs.h" $ac_includes_default int @@ -19901,16 +19940,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19904: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19943: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19907: \$? = $ac_status" >&5 + echo "$as_me:19946: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19910: \"$ac_try\"") >&5 + { (eval echo "$as_me:19949: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19913: \$? = $ac_status" >&5 + echo "$as_me:19952: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -19926,7 +19965,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 19929 "configure" +#line 19968 "configure" #include "confdefs.h" $ac_includes_default int @@ -19938,16 +19977,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19941: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19944: \$? = $ac_status" >&5 + echo "$as_me:19983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19947: \"$ac_try\"") >&5 + { (eval echo "$as_me:19986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19950: \$? = $ac_status" >&5 + echo "$as_me:19989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -19960,12 +19999,12 @@ done ac_cv_sizeof_unsigned_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:19963: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:20002: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 19968 "configure" +#line 20007 "configure" #include "confdefs.h" $ac_includes_default int @@ -19981,15 +20020,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20023: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19987: \$? = $ac_status" >&5 + echo "$as_me:20026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19989: \"$ac_try\"") >&5 + { (eval echo "$as_me:20028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19992: \$? = $ac_status" >&5 + echo "$as_me:20031: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_unsigned_long=`cat conftest.val` else @@ -20005,7 +20044,7 @@ else ac_cv_sizeof_unsigned_long=0 fi fi -echo "$as_me:20008: result: $ac_cv_sizeof_unsigned_long" >&5 +echo "$as_me:20047: result: $ac_cv_sizeof_unsigned_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_unsigned_long" >&6 cat >>confdefs.h <<EOF #define SIZEOF_UNSIGNED_LONG $ac_cv_sizeof_unsigned_long @@ -20145,7 +20184,7 @@ ac_config_files="$ac_config_files demos/calc/calc-config.h:demos/calc/calc-confi use_readline=$with_readline if test $with_readline = detect; then - echo "$as_me:20148: checking for readline in -lreadline" >&5 + echo "$as_me:20187: checking for readline in -lreadline" >&5 echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6 if test "${ac_cv_lib_readline_readline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20153,7 +20192,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lreadline $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20156 "configure" +#line 20195 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20172,16 +20211,16 @@ readline (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20175: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20214: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20178: \$? = $ac_status" >&5 + echo "$as_me:20217: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20181: \"$ac_try\"") >&5 + { (eval echo "$as_me:20220: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20184: \$? = $ac_status" >&5 + echo "$as_me:20223: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_readline_readline=yes else @@ -20192,7 +20231,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20195: result: $ac_cv_lib_readline_readline" >&5 +echo "$as_me:20234: result: $ac_cv_lib_readline_readline" >&5 echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6 if test $ac_cv_lib_readline_readline = yes; then use_readline=yes @@ -20211,7 +20250,7 @@ for ac_prog in 'bison -y' byacc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:20214: checking for $ac_word" >&5 +echo "$as_me:20253: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_YACC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20226,7 +20265,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_YACC="$ac_prog" -echo "$as_me:20229: found $ac_dir/$ac_word" >&5 +echo "$as_me:20268: found $ac_dir/$ac_word" >&5 break done @@ -20234,10 +20273,10 @@ fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then - echo "$as_me:20237: result: $YACC" >&5 + echo "$as_me:20276: result: $YACC" >&5 echo "${ECHO_T}$YACC" >&6 else - echo "$as_me:20240: result: no" >&5 + echo "$as_me:20279: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20249,7 +20288,7 @@ for ac_prog in flex lex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:20252: checking for $ac_word" >&5 +echo "$as_me:20291: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_LEX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20264,7 +20303,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_LEX="$ac_prog" -echo "$as_me:20267: found $ac_dir/$ac_word" >&5 +echo "$as_me:20306: found $ac_dir/$ac_word" >&5 break done @@ -20272,10 +20311,10 @@ fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then - echo "$as_me:20275: result: $LEX" >&5 + echo "$as_me:20314: result: $LEX" >&5 echo "${ECHO_T}$LEX" >&6 else - echo "$as_me:20278: result: no" >&5 + echo "$as_me:20317: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20287,7 +20326,7 @@ for ac_prog in flex lex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:20290: checking for $ac_word" >&5 +echo "$as_me:20329: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_LEX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20302,7 +20341,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_LEX="$ac_prog" -echo "$as_me:20305: found $ac_dir/$ac_word" >&5 +echo "$as_me:20344: found $ac_dir/$ac_word" >&5 break done @@ -20310,10 +20349,10 @@ fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then - echo "$as_me:20313: result: $LEX" >&5 + echo "$as_me:20352: result: $LEX" >&5 echo "${ECHO_T}$LEX" >&6 else - echo "$as_me:20316: result: no" >&5 + echo "$as_me:20355: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20323,7 +20362,7 @@ test -n "$LEX" || LEX=":" if test -z "$LEXLIB" then - echo "$as_me:20326: checking for yywrap in -lfl" >&5 + echo "$as_me:20365: checking for yywrap in -lfl" >&5 echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6 if test "${ac_cv_lib_fl_yywrap+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20331,7 +20370,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lfl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20334 "configure" +#line 20373 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20350,16 +20389,16 @@ yywrap (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20392: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20356: \$? = $ac_status" >&5 + echo "$as_me:20395: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20359: \"$ac_try\"") >&5 + { (eval echo "$as_me:20398: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20362: \$? = $ac_status" >&5 + echo "$as_me:20401: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_fl_yywrap=yes else @@ -20370,12 +20409,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20373: result: $ac_cv_lib_fl_yywrap" >&5 +echo "$as_me:20412: result: $ac_cv_lib_fl_yywrap" >&5 echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6 if test $ac_cv_lib_fl_yywrap = yes; then LEXLIB="-lfl" else - echo "$as_me:20378: checking for yywrap in -ll" >&5 + echo "$as_me:20417: checking for yywrap in -ll" >&5 echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6 if test "${ac_cv_lib_l_yywrap+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20383,7 +20422,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ll $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20386 "configure" +#line 20425 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20402,16 +20441,16 @@ yywrap (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20405: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20444: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20408: \$? = $ac_status" >&5 + echo "$as_me:20447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20411: \"$ac_try\"") >&5 + { (eval echo "$as_me:20450: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20414: \$? = $ac_status" >&5 + echo "$as_me:20453: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_l_yywrap=yes else @@ -20422,7 +20461,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20425: result: $ac_cv_lib_l_yywrap" >&5 +echo "$as_me:20464: result: $ac_cv_lib_l_yywrap" >&5 echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6 if test $ac_cv_lib_l_yywrap = yes; then LEXLIB="-ll" @@ -20433,7 +20472,7 @@ fi fi if test "x$LEX" != "x:"; then - echo "$as_me:20436: checking lex output file root" >&5 + echo "$as_me:20475: checking lex output file root" >&5 echo $ECHO_N "checking lex output file root... $ECHO_C" >&6 if test "${ac_cv_prog_lex_root+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20447,16 +20486,16 @@ if test -f lex.yy.c; then elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else - { { echo "$as_me:20450: error: cannot find output from $LEX; giving up" >&5 + { { echo "$as_me:20489: error: cannot find output from $LEX; giving up" >&5 echo "$as_me: error: cannot find output from $LEX; giving up" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:20455: result: $ac_cv_prog_lex_root" >&5 +echo "$as_me:20494: result: $ac_cv_prog_lex_root" >&5 echo "${ECHO_T}$ac_cv_prog_lex_root" >&6 LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root -echo "$as_me:20459: checking whether yytext is a pointer" >&5 +echo "$as_me:20498: checking whether yytext is a pointer" >&5 echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6 if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20472,16 +20511,16 @@ cat >conftest.$ac_ext <<_ACEOF `cat $LEX_OUTPUT_ROOT.c` _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20475: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20514: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20478: \$? = $ac_status" >&5 + echo "$as_me:20517: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20481: \"$ac_try\"") >&5 + { (eval echo "$as_me:20520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20484: \$? = $ac_status" >&5 + echo "$as_me:20523: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_lex_yytext_pointer=yes else @@ -20493,7 +20532,7 @@ LIBS=$ac_save_LIBS rm -f "${LEX_OUTPUT_ROOT}.c" fi -echo "$as_me:20496: result: $ac_cv_prog_lex_yytext_pointer" >&5 +echo "$as_me:20535: result: $ac_cv_prog_lex_yytext_pointer" >&5 echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6 if test $ac_cv_prog_lex_yytext_pointer = yes; then @@ -20623,7 +20662,7 @@ DEFS=-DHAVE_CONFIG_H : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:20626: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:20665: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -20802,7 +20841,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:20805: error: ambiguous option: $1 + { { echo "$as_me:20844: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} @@ -20821,7 +20860,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:20824: error: unrecognized option: $1 + -*) { { echo "$as_me:20863: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} @@ -20900,7 +20939,7 @@ do "gmp-mparam.h" ) CONFIG_LINKS="$CONFIG_LINKS gmp-mparam.h:mpn/$tmp_dir/gmp-mparam.h" ;; "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;; - *) { { echo "$as_me:20903: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:20942: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -21203,7 +21242,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:21206: creating $ac_file" >&5 + { echo "$as_me:21245: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -21221,7 +21260,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:21224: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:21263: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -21234,7 +21273,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:21237: error: cannot find input file: $f" >&5 + { { echo "$as_me:21276: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -21295,7 +21334,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:21298: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:21337: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -21306,7 +21345,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:21309: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:21348: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -21319,7 +21358,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:21322: error: cannot find input file: $f" >&5 + { { echo "$as_me:21361: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -21436,7 +21475,7 @@ cat >>$CONFIG_STATUS <<\EOF rm -f $tmp/in if test x"$ac_file" != x-; then if cmp -s $ac_file $tmp/config.h 2>/dev/null; then - { echo "$as_me:21439: $ac_file is unchanged" >&5 + { echo "$as_me:21478: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ @@ -21493,11 +21532,11 @@ for ac_file in : $CONFIG_LINKS; do test "x$ac_file" = x: && continue ac_dest=`echo "$ac_file" | sed 's,:.*,,'` ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` - { echo "$as_me:21496: linking $srcdir/$ac_source to $ac_dest" >&5 + { echo "$as_me:21535: linking $srcdir/$ac_source to $ac_dest" >&5 echo "$as_me: linking $srcdir/$ac_source to $ac_dest" >&6;} if test ! -r $srcdir/$ac_source; then - { { echo "$as_me:21500: error: $srcdir/$ac_source: File not found" >&5 + { { echo "$as_me:21539: error: $srcdir/$ac_source: File not found" >&5 echo "$as_me: error: $srcdir/$ac_source: File not found" >&2;} { (exit 1); exit 1; }; } fi @@ -21547,7 +21586,7 @@ done; } # Make a symlink if possible; otherwise try a hard link. ln -s $ac_rel_source $ac_dest 2>/dev/null || ln $srcdir/$ac_source $ac_dest || - { { echo "$as_me:21550: error: cannot link $ac_dest to $srcdir/$ac_source" >&5 + { { echo "$as_me:21589: error: cannot link $ac_dest to $srcdir/$ac_source" >&5 echo "$as_me: error: cannot link $ac_dest to $srcdir/$ac_source" >&2;} { (exit 1); exit 1; }; } done |