summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-09-11 03:51:42 +0200
committerKevin Ryde <user42@zip.com.au>2001-09-11 03:51:42 +0200
commitf987e70587b43bdf32163fae707620102738e45b (patch)
tree3065a8c54f95f7b04e9387439f3f0bb5f248e5f2 /configure
parentd5552e7a1fce0bc572c54e90d57babf3b939dda5 (diff)
downloadgmp-f987e70587b43bdf32163fae707620102738e45b.tar.gz
Regenerate for:
* configure.in, gmp-h.in (__GMP_HAVE_HOST_CPU_FAMILY_power, __GMP_HAVE_HOST_CPU_FAMILY_powerpc): New AC_SUBSTs. * acinclude.m4, configure.in (GMP_H_ANSI): New macro. * acinclude.m4, configure.in (GMP_PROG_CC_IS_XLC): Recognise xlc when invoked under another name (cc, xlc128, etc). * acinclude.m4 (GMP_PROG_CC_IS_GCC): Print a message when recognised.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1711
1 files changed, 896 insertions, 815 deletions
diff --git a/configure b/configure
index 7d22a1d7d..7497e958f 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.314 .
+# From configure.in Revision: 1.318 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by Autoconf 2.52.
#
@@ -1799,6 +1799,10 @@ cc_64_cflags="-O"
SPEED_CYCLECOUNTER_OBJ=
cyclecounter_size=2
+__GMP_HAVE_HOST_CPU_FAMILY_power=0
+
+__GMP_HAVE_HOST_CPU_FAMILY_powerpc=0
+
case $host in
a29k*-*-*)
@@ -2090,6 +2094,7 @@ echo "include_mpn(\`mips3/mips.m4')" >> $gmp_tmpconfigm4i
#define HAVE_HOST_CPU_FAMILY_powerpc 1
EOF
+ __GMP_HAVE_HOST_CPU_FAMILY_powerpc=1
cclist="gcc cc"
cc_cflags="-g -O2"
gcc_cflags="-g -O2 -mpowerpc"
@@ -2141,6 +2146,7 @@ EOF
#define HAVE_HOST_CPU_FAMILY_power 1
EOF
+ __GMP_HAVE_HOST_CPU_FAMILY_power=1
cclist="gcc"
extra_functions="udiv_w_sdiv"
path="power"
@@ -2273,7 +2279,9 @@ echo "include_mpn(\`x86/x86-defs.m4')" >> $gmp_tmpconfigm4i
# gcc 2.95.2 adds k6, pentium and pentiumpro, and allows -march= and
# -mcpu=.
#
- # gcc 2.96 (pre-release gcc 3) adds athlon.
+ # gcc 3.0 adds athlon.
+ #
+ # gcc 3.1 adds pentium4.
# Defaults for anything not otherwise mentioned.
path="x86"
@@ -2361,13 +2369,13 @@ CFLAGS_or_unset=${CFLAGS-'(unset)'}
CPPFLAGS_or_unset=${CPPFLAGS-'(unset)'}
cat >&5 <<EOF
-configure:788: User:
+configure:795: User:
ABI=$ABI
CC=$CC
CFLAGS=$CFLAGS_or_unset
CPPFLAGS=$CPPFLAGS_or_unset
MPN_PATH=$MPN_PATH
-configure:794: GMP:
+configure:801: GMP:
abilist=$abilist
cclist=$cclist
EOF
@@ -2388,7 +2396,7 @@ if test -n "$ABI"; then
if test $abi = "$ABI"; then found=yes; break; fi
done
if test $found = no; then
- { { echo "$as_me:2391: error: ABI=$ABI is not among the following valid choices: $abilist" >&5
+ { { echo "$as_me:2399: 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
@@ -2478,12 +2486,16 @@ for abi in $abilist; do
#endif
EOF
gmp_compile="$cc -c conftest.c"
-if { (eval echo "$as_me:2481: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:2489: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2484: \$? = $ac_status" >&5
+ echo "$as_me:2492: \$? = $ac_status" >&5
(exit $ac_status); }; then
rm -f conftest*
+ echo "$as_me:2495: checking whether $cc is gcc" >&5
+echo $ECHO_N "checking whether $cc is gcc... $ECHO_C" >&6
+ echo "$as_me:2497: result: yes" >&5
+echo "${ECHO_T}yes" >&6
ccbase=gcc
else
rm -f conftest*
@@ -2492,6 +2504,26 @@ fi
fi
+ # Similarly if the compiler is xlc but invoked as cc or whatever 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:2511: \"$gmp_command\"") >&5
+ (eval $gmp_command) 2>&5
+ ac_status=$?
+ echo "$as_me:2514: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ echo "$as_me:2516: checking whether $cc is xlc" >&5
+echo $ECHO_N "checking whether $cc is xlc... $ECHO_C" >&6
+ echo "$as_me:2518: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+ ccbase=xlc
+else
+ :
+fi
+
+ fi
+
# Any user CFLAGS, even an empty string, takes precendence
eval cflags=\"\$${ccbase}${abi1}_cflags\"
test -n "$cflags" || eval cflags=\"\$${ccbase}${abi2}_cflags\"
@@ -2508,7 +2540,7 @@ fi
gprof) cflags="$cflags -pg" ;;
esac
- echo "$as_me:2511: checking compiler $cc $cflags $cppflags" >&5
+ echo "$as_me:2543: checking compiler $cc $cflags $cppflags" >&5
echo $ECHO_N "checking compiler $cc $cflags $cppflags... $ECHO_C" >&6
cat >conftest.c <<EOF
/* The following provokes an internal error from gcc 2.95.2 -mpowerpc64
@@ -2519,18 +2551,18 @@ void *f() { return g(); }
int main () { return 0; }
EOF
gmp_compile="$cc $cflags $cppflags conftest.c >&5"
-if { (eval echo "$as_me:2522: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:2554: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2525: \$? = $ac_status" >&5
+ echo "$as_me:2557: \$? = $ac_status" >&5
(exit $ac_status); }; then
rm -f conftest* a.out
- echo "$as_me:2528: result: yes" >&5
+ echo "$as_me:2560: result: yes" >&5
echo "${ECHO_T}yes" >&6
:
else
rm -f conftest* a.out
- echo "$as_me:2533: result: no" >&5
+ echo "$as_me:2565: result: no" >&5
echo "${ECHO_T}no" >&6
continue
fi
@@ -2542,7 +2574,7 @@ fi
testlist_pass=yes
for tst in $testlist; do
case $tst in
- hpc-hppa-2-0) echo "$as_me:2545: checking whether HP compiler $cc is good for 64-bits" >&5
+ hpc-hppa-2-0) echo "$as_me:2577: 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
@@ -2583,7 +2615,7 @@ fi
gmp_hpc_64bit=$gmp_compare_ge
fi
-echo "$as_me:2586: result: $gmp_hpc_64bit" >&5
+echo "$as_me:2618: result: $gmp_hpc_64bit" >&5
echo "${ECHO_T}$gmp_hpc_64bit" >&6
if test $gmp_hpc_64bit = yes; then
:
@@ -2591,7 +2623,7 @@ else
testlist_pass=no
fi
;;
- gcc-arm-umodsi) echo "$as_me:2594: checking whether gcc unsigned division works" >&5
+ gcc-arm-umodsi) echo "$as_me:2626: 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
@@ -2606,7 +2638,7 @@ subminor=`(echo "$tmp_version" | sed -n 's/^\(egcs-\)*[0-9][0-9]*\.[0-9][0-9]*\.
echo " subminor '$subminor'" >&5
if test -z "$major"; then
- { echo "$as_me:2609: WARNING: unrecognised gcc version string: $tmp_version" >&5
+ { echo "$as_me:2641: WARNING: unrecognised gcc version string: $tmp_version" >&5
echo "$as_me: WARNING: unrecognised gcc version string: $tmp_version" >&2;}
gmp_compare_ge=error
else
@@ -2643,7 +2675,7 @@ yes)
testlist_pass=no
gmp_gcc_arm_umodsi_result="no, gcc <= 2.95.3" ;;
esac
-echo "$as_me:2646: result: $gmp_gcc_arm_umodsi_result" >&5
+echo "$as_me:2678: result: $gmp_gcc_arm_umodsi_result" >&5
echo "${ECHO_T}$gmp_gcc_arm_umodsi_result" >&6
;;
esac
@@ -2676,7 +2708,7 @@ done
# C on MS-DOS systems).
#
if test $found_compiler = no && test -n "$path"; then
- { { echo "$as_me:2679: error: could not find a working compiler" >&5
+ { { echo "$as_me:2711: error: could not find a working compiler" >&5
echo "$as_me: error: could not find a working compiler" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -2699,7 +2731,7 @@ if test $found_compiler = yes; then
case $flag in
-march=pentiumpro)
# tickles stack slot bugs on some gcc, exclude as necessary
- echo "$as_me:2702: checking whether gcc -march=pentiumpro is good" >&5
+ echo "$as_me:2734: 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
@@ -2717,7 +2749,7 @@ subminor=`(echo "$tmp_version" | sed -n 's/^\(egcs-\)*[0-9][0-9]*\.[0-9][0-9]*\.
echo " subminor '$subminor'" >&5
if test -z "$major"; then
- { echo "$as_me:2720: WARNING: unrecognised gcc version string: $tmp_version" >&5
+ { echo "$as_me:2752: WARNING: unrecognised gcc version string: $tmp_version" >&5
echo "$as_me: WARNING: unrecognised gcc version string: $tmp_version" >&2;}
gmp_compare_ge=error
else
@@ -2751,7 +2783,7 @@ yes|no) gmp_cv_gcc_march_pentiumpro=$gmp_compare_ge ;;
error|*) gmp_cv_gcc_march_pentiumpro=no ;;
esac
fi
-echo "$as_me:2754: result: $gmp_cv_gcc_march_pentiumpro" >&5
+echo "$as_me:2786: 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
:
@@ -2775,7 +2807,7 @@ esac
;;
esac
- echo "$as_me:2778: checking compiler $cc $cflags $cppflags $flag" >&5
+ echo "$as_me:2810: checking compiler $cc $cflags $cppflags $flag" >&5
echo $ECHO_N "checking compiler $cc $cflags $cppflags $flag... $ECHO_C" >&6
cat >conftest.c <<EOF
/* The following provokes an internal error from gcc 2.95.2 -mpowerpc64
@@ -2786,19 +2818,19 @@ void *f() { return g(); }
int main () { return 0; }
EOF
gmp_compile="$cc $cflags $cppflags $flag conftest.c >&5"
-if { (eval echo "$as_me:2789: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:2821: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2792: \$? = $ac_status" >&5
+ echo "$as_me:2824: \$? = $ac_status" >&5
(exit $ac_status); }; then
rm -f conftest* a.out
- echo "$as_me:2795: result: yes" >&5
+ echo "$as_me:2827: result: yes" >&5
echo "${ECHO_T}yes" >&6
cflags="$cflags $flag"
break
else
rm -f conftest* a.out
- echo "$as_me:2801: result: no" >&5
+ echo "$as_me:2833: result: no" >&5
echo "${ECHO_T}no" >&6
:
fi
@@ -2882,7 +2914,7 @@ longlong) DEFN_LONG_LONG_LIMB="#define _LONG_LONG_LIMB 1" ;;
esac
cat >&5 <<EOF
-configure:1075: Decided:
+configure:1088: Decided:
ABI=$ABI
CC=$CC
CFLAGS=$CFLAGS
@@ -2901,7 +2933,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:2904: checking for $ac_word" >&5
+echo "$as_me:2936: 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
@@ -2916,7 +2948,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:2919: found $ac_dir/$ac_word" >&5
+echo "$as_me:2951: found $ac_dir/$ac_word" >&5
break
done
@@ -2924,10 +2956,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:2927: result: $CC" >&5
+ echo "$as_me:2959: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:2930: result: no" >&5
+ echo "$as_me:2962: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -2936,7 +2968,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:2939: checking for $ac_word" >&5
+echo "$as_me:2971: 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
@@ -2951,7 +2983,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:2954: found $ac_dir/$ac_word" >&5
+echo "$as_me:2986: found $ac_dir/$ac_word" >&5
break
done
@@ -2959,10 +2991,10 @@ fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- echo "$as_me:2962: result: $ac_ct_CC" >&5
+ echo "$as_me:2994: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
- echo "$as_me:2965: result: no" >&5
+ echo "$as_me:2997: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -2975,7 +3007,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:2978: checking for $ac_word" >&5
+echo "$as_me:3010: 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
@@ -2990,7 +3022,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:2993: found $ac_dir/$ac_word" >&5
+echo "$as_me:3025: found $ac_dir/$ac_word" >&5
break
done
@@ -2998,10 +3030,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:3001: result: $CC" >&5
+ echo "$as_me:3033: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3004: result: no" >&5
+ echo "$as_me:3036: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3010,7 +3042,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:3013: checking for $ac_word" >&5
+echo "$as_me:3045: 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
@@ -3025,7 +3057,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:3028: found $ac_dir/$ac_word" >&5
+echo "$as_me:3060: found $ac_dir/$ac_word" >&5
break
done
@@ -3033,10 +3065,10 @@ fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- echo "$as_me:3036: result: $ac_ct_CC" >&5
+ echo "$as_me:3068: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
- echo "$as_me:3039: result: no" >&5
+ echo "$as_me:3071: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3049,7 +3081,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:3052: checking for $ac_word" >&5
+echo "$as_me:3084: 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
@@ -3069,7 +3101,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
continue
fi
ac_cv_prog_CC="cc"
-echo "$as_me:3072: found $ac_dir/$ac_word" >&5
+echo "$as_me:3104: found $ac_dir/$ac_word" >&5
break
done
@@ -3091,10 +3123,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:3094: result: $CC" >&5
+ echo "$as_me:3126: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3097: result: no" >&5
+ echo "$as_me:3129: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3105,7 +3137,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:3108: checking for $ac_word" >&5
+echo "$as_me:3140: 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
@@ -3120,7 +3152,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:3123: found $ac_dir/$ac_word" >&5
+echo "$as_me:3155: found $ac_dir/$ac_word" >&5
break
done
@@ -3128,10 +3160,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:3131: result: $CC" >&5
+ echo "$as_me:3163: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3134: result: no" >&5
+ echo "$as_me:3166: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3144,7 +3176,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:3147: checking for $ac_word" >&5
+echo "$as_me:3179: 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
@@ -3159,7 +3191,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:3162: found $ac_dir/$ac_word" >&5
+echo "$as_me:3194: found $ac_dir/$ac_word" >&5
break
done
@@ -3167,10 +3199,10 @@ fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- echo "$as_me:3170: result: $ac_ct_CC" >&5
+ echo "$as_me:3202: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
- echo "$as_me:3173: result: no" >&5
+ echo "$as_me:3205: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3182,32 +3214,32 @@ fi
fi
-test -z "$CC" && { { echo "$as_me:3185: error: no acceptable cc found in \$PATH" >&5
+test -z "$CC" && { { echo "$as_me:3217: 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:3190:" \
+echo "$as_me:3222:" \
"checking for C compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
-{ (eval echo "$as_me:3193: \"$ac_compiler --version </dev/null >&5\"") >&5
+{ (eval echo "$as_me:3225: \"$ac_compiler --version </dev/null >&5\"") >&5
(eval $ac_compiler --version </dev/null >&5) 2>&5
ac_status=$?
- echo "$as_me:3196: \$? = $ac_status" >&5
+ echo "$as_me:3228: \$? = $ac_status" >&5
(exit $ac_status); }
-{ (eval echo "$as_me:3198: \"$ac_compiler -v </dev/null >&5\"") >&5
+{ (eval echo "$as_me:3230: \"$ac_compiler -v </dev/null >&5\"") >&5
(eval $ac_compiler -v </dev/null >&5) 2>&5
ac_status=$?
- echo "$as_me:3201: \$? = $ac_status" >&5
+ echo "$as_me:3233: \$? = $ac_status" >&5
(exit $ac_status); }
-{ (eval echo "$as_me:3203: \"$ac_compiler -V </dev/null >&5\"") >&5
+{ (eval echo "$as_me:3235: \"$ac_compiler -V </dev/null >&5\"") >&5
(eval $ac_compiler -V </dev/null >&5) 2>&5
ac_status=$?
- echo "$as_me:3206: \$? = $ac_status" >&5
+ echo "$as_me:3238: \$? = $ac_status" >&5
(exit $ac_status); }
cat >conftest.$ac_ext <<_ACEOF
-#line 3210 "configure"
+#line 3242 "configure"
#include "confdefs.h"
int
@@ -3223,13 +3255,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:3226: checking for C compiler default output" >&5
+echo "$as_me:3258: 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:3229: \"$ac_link_default\"") >&5
+if { (eval echo "$as_me:3261: \"$ac_link_default\"") >&5
(eval $ac_link_default) 2>&5
ac_status=$?
- echo "$as_me:3232: \$? = $ac_status" >&5
+ echo "$as_me:3264: \$? = $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
@@ -3252,34 +3284,34 @@ done
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ { echo "$as_me:3255: error: C compiler cannot create executables" >&5
+{ { echo "$as_me:3287: 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:3261: result: $ac_file" >&5
+echo "$as_me:3293: 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:3266: checking whether the C compiler works" >&5
+echo "$as_me:3298: 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:3272: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3304: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3275: \$? = $ac_status" >&5
+ echo "$as_me:3307: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cross_compiling=no
else
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
- { { echo "$as_me:3282: error: cannot run C compiled programs.
+ { { echo "$as_me:3314: 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;}
@@ -3287,24 +3319,24 @@ If you meant to cross compile, use \`--host'." >&2;}
fi
fi
fi
-echo "$as_me:3290: result: yes" >&5
+echo "$as_me:3322: 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:3297: checking whether we are cross compiling" >&5
+echo "$as_me:3329: checking whether we are cross compiling" >&5
echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
-echo "$as_me:3299: result: $cross_compiling" >&5
+echo "$as_me:3331: result: $cross_compiling" >&5
echo "${ECHO_T}$cross_compiling" >&6
-echo "$as_me:3302: checking for executable suffix" >&5
+echo "$as_me:3334: checking for executable suffix" >&5
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
-if { (eval echo "$as_me:3304: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3336: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:3307: \$? = $ac_status" >&5
+ echo "$as_me:3339: \$? = $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
@@ -3320,25 +3352,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
esac
done
else
- { { echo "$as_me:3323: error: cannot compute EXEEXT: cannot compile and link" >&5
+ { { echo "$as_me:3355: 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:3329: result: $ac_cv_exeext" >&5
+echo "$as_me:3361: 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:3335: checking for object suffix" >&5
+echo "$as_me:3367: 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 3341 "configure"
+#line 3373 "configure"
#include "confdefs.h"
int
@@ -3350,10 +3382,10 @@ main ()
}
_ACEOF
rm -f conftest.o conftest.obj
-if { (eval echo "$as_me:3353: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3385: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3356: \$? = $ac_status" >&5
+ echo "$as_me:3388: \$? = $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
@@ -3365,24 +3397,24 @@ done
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ { echo "$as_me:3368: error: cannot compute OBJEXT: cannot compile" >&5
+{ { echo "$as_me:3400: 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:3375: result: $ac_cv_objext" >&5
+echo "$as_me:3407: result: $ac_cv_objext" >&5
echo "${ECHO_T}$ac_cv_objext" >&6
OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
-echo "$as_me:3379: checking whether we are using the GNU C compiler" >&5
+echo "$as_me:3411: 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 3385 "configure"
+#line 3417 "configure"
#include "confdefs.h"
int
@@ -3397,16 +3429,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3400: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3432: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3403: \$? = $ac_status" >&5
+ echo "$as_me:3435: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3406: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3438: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3409: \$? = $ac_status" >&5
+ echo "$as_me:3441: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_compiler_gnu=yes
else
@@ -3418,19 +3450,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext
ac_cv_c_compiler_gnu=$ac_compiler_gnu
fi
-echo "$as_me:3421: result: $ac_cv_c_compiler_gnu" >&5
+echo "$as_me:3453: 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:3427: checking whether $CC accepts -g" >&5
+echo "$as_me:3459: 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 3433 "configure"
+#line 3465 "configure"
#include "confdefs.h"
int
@@ -3442,16 +3474,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3445: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3477: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3448: \$? = $ac_status" >&5
+ echo "$as_me:3480: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3451: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3483: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3454: \$? = $ac_status" >&5
+ echo "$as_me:3486: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_cc_g=yes
else
@@ -3461,7 +3493,7 @@ ac_cv_prog_cc_g=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:3464: result: $ac_cv_prog_cc_g" >&5
+echo "$as_me:3496: 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
@@ -3488,16 +3520,16 @@ cat >conftest.$ac_ext <<_ACEOF
#endif
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3491: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3523: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3494: \$? = $ac_status" >&5
+ echo "$as_me:3526: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3497: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3529: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3500: \$? = $ac_status" >&5
+ echo "$as_me:3532: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
for ac_declaration in \
''\
@@ -3509,7 +3541,7 @@ if { (eval echo "$as_me:3491: \"$ac_compile\"") >&5
'void exit (int);'
do
cat >conftest.$ac_ext <<_ACEOF
-#line 3512 "configure"
+#line 3544 "configure"
#include "confdefs.h"
#include <stdlib.h>
$ac_declaration
@@ -3522,16 +3554,16 @@ exit (42);
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3525: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3557: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3528: \$? = $ac_status" >&5
+ echo "$as_me:3560: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3531: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3563: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3534: \$? = $ac_status" >&5
+ echo "$as_me:3566: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -3541,7 +3573,7 @@ continue
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
-#line 3544 "configure"
+#line 3576 "configure"
#include "confdefs.h"
$ac_declaration
int
@@ -3553,16 +3585,16 @@ exit (42);
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3556: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3588: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3559: \$? = $ac_status" >&5
+ echo "$as_me:3591: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3562: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3594: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3565: \$? = $ac_status" >&5
+ echo "$as_me:3597: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
@@ -3597,7 +3629,7 @@ doit:
@echo done
END
# If we don't find an include directive, just comment out the code.
-echo "$as_me:3600: checking for style of include used by $am_make" >&5
+echo "$as_me:3632: 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=
@@ -3624,13 +3656,13 @@ if test "$am__include" = "#"; then
fi
fi
-echo "$as_me:3627: result: $_am_result" >&5
+echo "$as_me:3659: result: $_am_result" >&5
echo "${ECHO_T}$_am_result" >&6
rm -f confinc confmf
depcc="$CC" am_compiler_list=
-echo "$as_me:3633: checking dependency style of $depcc" >&5
+echo "$as_me:3665: 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
@@ -3692,11 +3724,11 @@ else
fi
fi
-echo "$as_me:3695: result: $am_cv_CC_dependencies_compiler_type" >&5
+echo "$as_me:3727: 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:3699: checking for $CC option to accept ANSI C" >&5
+echo "$as_me:3731: 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
@@ -3704,7 +3736,7 @@ else
ac_cv_prog_cc_stdc=no
ac_save_CC=$CC
cat >conftest.$ac_ext <<_ACEOF
-#line 3707 "configure"
+#line 3739 "configure"
#include "confdefs.h"
#include <stdarg.h>
#include <stdio.h>
@@ -3753,16 +3785,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:3756: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3788: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3759: \$? = $ac_status" >&5
+ echo "$as_me:3791: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3762: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3794: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3765: \$? = $ac_status" >&5
+ echo "$as_me:3797: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_cc_stdc=$ac_arg
break
@@ -3779,10 +3811,10 @@ fi
case "x$ac_cv_prog_cc_stdc" in
x|xno)
- echo "$as_me:3782: result: none needed" >&5
+ echo "$as_me:3814: result: none needed" >&5
echo "${ECHO_T}none needed" >&6 ;;
*)
- echo "$as_me:3785: result: $ac_cv_prog_cc_stdc" >&5
+ echo "$as_me:3817: result: $ac_cv_prog_cc_stdc" >&5
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
CC="$CC $ac_cv_prog_cc_stdc" ;;
esac
@@ -3792,7 +3824,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:3795: checking how to run the C preprocessor" >&5
+echo "$as_me:3827: 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
@@ -3813,18 +3845,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 3816 "configure"
+#line 3848 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax error
_ACEOF
-if { (eval echo "$as_me:3821: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3853: \"$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:3827: \$? = $ac_status" >&5
+ echo "$as_me:3859: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3847,17 +3879,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 3850 "configure"
+#line 3882 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
-if { (eval echo "$as_me:3854: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3886: \"$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:3860: \$? = $ac_status" >&5
+ echo "$as_me:3892: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3894,7 +3926,7 @@ fi
else
ac_cv_prog_CPP=$CPP
fi
-echo "$as_me:3897: result: $CPP" >&5
+echo "$as_me:3929: result: $CPP" >&5
echo "${ECHO_T}$CPP" >&6
ac_preproc_ok=false
for ac_c_preproc_warn_flag in '' yes
@@ -3904,18 +3936,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 3907 "configure"
+#line 3939 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax error
_ACEOF
-if { (eval echo "$as_me:3912: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3944: \"$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:3918: \$? = $ac_status" >&5
+ echo "$as_me:3950: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3938,17 +3970,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 3941 "configure"
+#line 3973 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
-if { (eval echo "$as_me:3945: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3977: \"$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:3951: \$? = $ac_status" >&5
+ echo "$as_me:3983: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3976,7 +4008,7 @@ rm -f conftest.err conftest.$ac_ext
if $ac_preproc_ok; then
:
else
- { { echo "$as_me:3979: error: C preprocessor \"$CPP\" fails sanity check" >&5
+ { { echo "$as_me:4011: error: C preprocessor \"$CPP\" fails sanity check" >&5
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -3987,11 +4019,58 @@ 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
+case $ac_cv_prog_cc_stdc in
+ no)
+ ;;
+ *)
+ cat >conftest.$ac_ext <<_ACEOF
+#line 4027 "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 */
+$DEFN_LONG_LONG_LIMB
+#include "$srcdir/gmp-h.in"
+
+#if ! __GMP_HAVE_PROTOTYPES
+die die die
+#endif
+
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:4047: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:4050: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:4053: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:4056: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ :
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+{ echo "$as_me:4062: 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
+ ;;
+esac
+
case $host_cpu in
c90 | t90)
cat >conftest.$ac_ext <<_ACEOF
-#line 3994 "configure"
+#line 4073 "configure"
#include "confdefs.h"
#ifdef _CRAYIEEE
yes
@@ -4016,7 +4095,7 @@ fi
# Automake ansi2knr support.
-echo "$as_me:4019: checking for ${CC-cc} option to accept ANSI C" >&5
+echo "$as_me:4098: 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
@@ -4034,7 +4113,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 4037 "configure"
+#line 4116 "configure"
#include "confdefs.h"
#include <stdarg.h>
#include <stdio.h>
@@ -4076,16 +4155,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:4079: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4158: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4082: \$? = $ac_status" >&5
+ echo "$as_me:4161: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4085: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4164: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4088: \$? = $ac_status" >&5
+ echo "$as_me:4167: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
am_cv_prog_cc_stdc="$ac_arg"; break
else
@@ -4099,10 +4178,10 @@ CC="$ac_save_CC"
fi
if test -z "$am_cv_prog_cc_stdc"; then
- echo "$as_me:4102: result: none needed" >&5
+ echo "$as_me:4181: result: none needed" >&5
echo "${ECHO_T}none needed" >&6
else
- echo "$as_me:4105: result: $am_cv_prog_cc_stdc" >&5
+ echo "$as_me:4184: 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
@@ -4110,10 +4189,10 @@ case "x$am_cv_prog_cc_stdc" in
*) CC="$CC $am_cv_prog_cc_stdc" ;;
esac
-echo "$as_me:4113: checking for function prototypes" >&5
+echo "$as_me:4192: 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:4116: result: yes" >&5
+ echo "$as_me:4195: result: yes" >&5
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
@@ -4122,18 +4201,18 @@ EOF
U= ANSI2KNR=
else
- echo "$as_me:4125: result: no" >&5
+ echo "$as_me:4204: result: no" >&5
echo "${ECHO_T}no" >&6
U=_ ANSI2KNR=./ansi2knr
fi
# Ensure some checks needed by ansi2knr itself.
-echo "$as_me:4130: checking for ANSI C header files" >&5
+echo "$as_me:4209: 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 4136 "configure"
+#line 4215 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
@@ -4141,13 +4220,13 @@ else
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:4144: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4223: \"$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:4150: \$? = $ac_status" >&5
+ echo "$as_me:4229: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4169,7 +4248,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 4172 "configure"
+#line 4251 "configure"
#include "confdefs.h"
#include <string.h>
@@ -4187,7 +4266,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 4190 "configure"
+#line 4269 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -4208,7 +4287,7 @@ if test $ac_cv_header_stdc = yes; then
:
else
cat >conftest.$ac_ext <<_ACEOF
-#line 4211 "configure"
+#line 4290 "configure"
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
@@ -4234,15 +4313,15 @@ main ()
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:4237: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4316: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4240: \$? = $ac_status" >&5
+ echo "$as_me:4319: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:4242: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4321: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4245: \$? = $ac_status" >&5
+ echo "$as_me:4324: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -4255,7 +4334,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
fi
-echo "$as_me:4258: result: $ac_cv_header_stdc" >&5
+echo "$as_me:4337: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
@@ -4268,23 +4347,23 @@ fi
for ac_header in string.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4271: checking for $ac_header" >&5
+echo "$as_me:4350: 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 4277 "configure"
+#line 4356 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:4281: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4360: \"$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:4287: \$? = $ac_status" >&5
+ echo "$as_me:4366: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4303,7 +4382,7 @@ else
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:4306: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4385: 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
@@ -4317,7 +4396,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:4320: checking for $ac_word" >&5
+echo "$as_me:4399: 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
@@ -4332,7 +4411,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:4335: found $ac_dir/$ac_word" >&5
+echo "$as_me:4414: found $ac_dir/$ac_word" >&5
break
done
@@ -4340,10 +4419,10 @@ fi
fi
AR=$ac_cv_prog_AR
if test -n "$AR"; then
- echo "$as_me:4343: result: $AR" >&5
+ echo "$as_me:4422: result: $AR" >&5
echo "${ECHO_T}$AR" >&6
else
- echo "$as_me:4346: result: no" >&5
+ echo "$as_me:4425: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -4352,7 +4431,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:4355: checking for $ac_word" >&5
+echo "$as_me:4434: 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
@@ -4367,7 +4446,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:4370: found $ac_dir/$ac_word" >&5
+echo "$as_me:4449: found $ac_dir/$ac_word" >&5
break
done
@@ -4376,10 +4455,10 @@ fi
fi
ac_ct_AR=$ac_cv_prog_ac_ct_AR
if test -n "$ac_ct_AR"; then
- echo "$as_me:4379: result: $ac_ct_AR" >&5
+ echo "$as_me:4458: result: $ac_ct_AR" >&5
echo "${ECHO_T}$ac_ct_AR" >&6
else
- echo "$as_me:4382: result: no" >&5
+ echo "$as_me:4461: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -4392,16 +4471,16 @@ 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:4395: checking for extra ar flags" >&5
+ echo "$as_me:4474: checking for extra ar flags" >&5
echo $ECHO_N "checking for extra ar flags... $ECHO_C" >&6
AR="$AR $arflags"
- echo "$as_me:4398: result: $arflags" >&5
+ echo "$as_me:4477: result: $arflags" >&5
echo "${ECHO_T}$arflags" >&6
fi
fi
gmp_user_NM=$NM
-echo "$as_me:4404: checking for BSD-compatible nm" >&5
+echo "$as_me:4483: 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
@@ -4437,17 +4516,17 @@ fi
fi
NM="$lt_cv_path_NM"
-echo "$as_me:4440: result: $NM" >&5
+echo "$as_me:4519: result: $NM" >&5
echo "${ECHO_T}$NM" >&6
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:4447: checking for extra nm flags" >&5
+ echo "$as_me:4526: checking for extra nm flags" >&5
echo $ECHO_N "checking for extra nm flags... $ECHO_C" >&6
NM="$NM $nmflags"
- echo "$as_me:4450: result: $nmflags" >&5
+ echo "$as_me:4529: result: $nmflags" >&5
echo "${ECHO_T}$nmflags" >&6
fi
fi
@@ -4476,7 +4555,7 @@ case $host in
enable_shared=no
fi
if test "$enable_shared" != no && test "$enable_static" != no; then
- { { echo "$as_me:4479: error: cannot build both static and DLL, since gmp.h is different for each.
+ { { echo "$as_me:4558: 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;}
@@ -4593,7 +4672,7 @@ fi;
ac_prog=ld
if test "$GCC" = yes; then
# Check if gcc -print-prog-name=ld gives a path.
- echo "$as_me:4596: checking for ld used by GCC" >&5
+ echo "$as_me:4675: checking for ld used by GCC" >&5
echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
case $host in
*-*-mingw*)
@@ -4623,10 +4702,10 @@ echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
;;
esac
elif test "$with_gnu_ld" = yes; then
- echo "$as_me:4626: checking for GNU ld" >&5
+ echo "$as_me:4705: checking for GNU ld" >&5
echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
else
- echo "$as_me:4629: checking for non-GNU ld" >&5
+ echo "$as_me:4708: 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
@@ -4656,16 +4735,16 @@ fi
LD="$lt_cv_path_LD"
if test -n "$LD"; then
- echo "$as_me:4659: result: $LD" >&5
+ echo "$as_me:4738: result: $LD" >&5
echo "${ECHO_T}$LD" >&6
else
- echo "$as_me:4662: result: no" >&5
+ echo "$as_me:4741: result: no" >&5
echo "${ECHO_T}no" >&6
fi
-test -z "$LD" && { { echo "$as_me:4665: error: no acceptable ld found in \$PATH" >&5
+test -z "$LD" && { { echo "$as_me:4744: 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:4668: checking if the linker ($LD) is GNU ld" >&5
+echo "$as_me:4747: 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
@@ -4677,34 +4756,34 @@ else
lt_cv_prog_gnu_ld=no
fi
fi
-echo "$as_me:4680: result: $lt_cv_prog_gnu_ld" >&5
+echo "$as_me:4759: 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:4684: checking for $LD option to reload object files" >&5
+echo "$as_me:4763: 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:4691: result: $lt_cv_ld_reload_flag" >&5
+echo "$as_me:4770: result: $lt_cv_ld_reload_flag" >&5
echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6
reload_flag=$lt_cv_ld_reload_flag
test -n "$reload_flag" && reload_flag=" $reload_flag"
-echo "$as_me:4696: checking whether ln -s works" >&5
+echo "$as_me:4775: 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:4700: result: yes" >&5
+ echo "$as_me:4779: result: yes" >&5
echo "${ECHO_T}yes" >&6
else
- echo "$as_me:4703: result: no, using $LN_S" >&5
+ echo "$as_me:4782: result: no, using $LN_S" >&5
echo "${ECHO_T}no, using $LN_S" >&6
fi
-echo "$as_me:4707: checking how to recognise dependant libraries" >&5
+echo "$as_me:4786: 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
@@ -4882,13 +4961,13 @@ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
esac
fi
-echo "$as_me:4885: result: $lt_cv_deplibs_check_method" >&5
+echo "$as_me:4964: 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
# Check for command to grab the raw symbol name followed by C symbol from nm.
-echo "$as_me:4891: checking command to parse $NM output" >&5
+echo "$as_me:4970: checking command to parse $NM output" >&5
echo $ECHO_N "checking command to parse $NM output... $ECHO_C" >&6
if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4969,17 +5048,17 @@ void nm_test_func(){}
int main(){nm_test_var='a';nm_test_func();return(0);}
EOF
- if { (eval echo "$as_me:4972: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:5051: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4975: \$? = $ac_status" >&5
+ echo "$as_me:5054: \$? = $ac_status" >&5
(exit $ac_status); }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { (eval echo "$as_me:4979: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5
+ if { (eval echo "$as_me:5058: \"$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:4982: \$? = $ac_status" >&5
+ echo "$as_me:5061: \$? = $ac_status" >&5
(exit $ac_status); } && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
@@ -5031,10 +5110,10 @@ EOF
save_CFLAGS="$CFLAGS"
LIBS="conftstm.$ac_objext"
CFLAGS="$CFLAGS$no_builtin_flag"
- if { (eval echo "$as_me:5034: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:5113: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5037: \$? = $ac_status" >&5
+ echo "$as_me:5116: \$? = $ac_status" >&5
(exit $ac_status); } && test -s conftest; then
pipe_works=yes
fi
@@ -5075,33 +5154,33 @@ else
fi
if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address";
then
- echo "$as_me:5078: result: failed" >&5
+ echo "$as_me:5157: result: failed" >&5
echo "${ECHO_T}failed" >&6
else
- echo "$as_me:5081: result: ok" >&5
+ echo "$as_me:5160: result: ok" >&5
echo "${ECHO_T}ok" >&6
fi
for ac_header in dlfcn.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:5088: checking for $ac_header" >&5
+echo "$as_me:5167: 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 5094 "configure"
+#line 5173 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:5098: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5177: \"$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:5104: \$? = $ac_status" >&5
+ echo "$as_me:5183: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5120,7 +5199,7 @@ else
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:5123: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:5202: 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
@@ -5134,7 +5213,7 @@ done
case $deplibs_check_method in
file_magic*)
if test "$file_magic_cmd" = '$MAGIC_CMD'; then
- echo "$as_me:5137: checking for ${ac_tool_prefix}file" >&5
+ echo "$as_me:5216: 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
@@ -5189,16 +5268,16 @@ fi
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
if test -n "$MAGIC_CMD"; then
- echo "$as_me:5192: result: $MAGIC_CMD" >&5
+ echo "$as_me:5271: result: $MAGIC_CMD" >&5
echo "${ECHO_T}$MAGIC_CMD" >&6
else
- echo "$as_me:5195: result: no" >&5
+ echo "$as_me:5274: 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:5201: checking for file" >&5
+ echo "$as_me:5280: 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
@@ -5253,10 +5332,10 @@ fi
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
if test -n "$MAGIC_CMD"; then
- echo "$as_me:5256: result: $MAGIC_CMD" >&5
+ echo "$as_me:5335: result: $MAGIC_CMD" >&5
echo "${ECHO_T}$MAGIC_CMD" >&6
else
- echo "$as_me:5259: result: no" >&5
+ echo "$as_me:5338: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5272,7 +5351,7 @@ esac
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:5275: checking for $ac_word" >&5
+echo "$as_me:5354: 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
@@ -5287,7 +5366,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:5290: found $ac_dir/$ac_word" >&5
+echo "$as_me:5369: found $ac_dir/$ac_word" >&5
break
done
@@ -5295,10 +5374,10 @@ fi
fi
RANLIB=$ac_cv_prog_RANLIB
if test -n "$RANLIB"; then
- echo "$as_me:5298: result: $RANLIB" >&5
+ echo "$as_me:5377: result: $RANLIB" >&5
echo "${ECHO_T}$RANLIB" >&6
else
- echo "$as_me:5301: result: no" >&5
+ echo "$as_me:5380: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5307,7 +5386,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:5310: checking for $ac_word" >&5
+echo "$as_me:5389: 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
@@ -5322,7 +5401,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:5325: found $ac_dir/$ac_word" >&5
+echo "$as_me:5404: found $ac_dir/$ac_word" >&5
break
done
@@ -5331,10 +5410,10 @@ fi
fi
ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
if test -n "$ac_ct_RANLIB"; then
- echo "$as_me:5334: result: $ac_ct_RANLIB" >&5
+ echo "$as_me:5413: result: $ac_ct_RANLIB" >&5
echo "${ECHO_T}$ac_ct_RANLIB" >&6
else
- echo "$as_me:5337: result: no" >&5
+ echo "$as_me:5416: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5346,7 +5425,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:5349: checking for $ac_word" >&5
+echo "$as_me:5428: 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
@@ -5361,7 +5440,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:5364: found $ac_dir/$ac_word" >&5
+echo "$as_me:5443: found $ac_dir/$ac_word" >&5
break
done
@@ -5369,10 +5448,10 @@ fi
fi
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
- echo "$as_me:5372: result: $STRIP" >&5
+ echo "$as_me:5451: result: $STRIP" >&5
echo "${ECHO_T}$STRIP" >&6
else
- echo "$as_me:5375: result: no" >&5
+ echo "$as_me:5454: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5381,7 +5460,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:5384: checking for $ac_word" >&5
+echo "$as_me:5463: 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
@@ -5396,7 +5475,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:5399: found $ac_dir/$ac_word" >&5
+echo "$as_me:5478: found $ac_dir/$ac_word" >&5
break
done
@@ -5405,10 +5484,10 @@ fi
fi
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
- echo "$as_me:5408: result: $ac_ct_STRIP" >&5
+ echo "$as_me:5487: result: $ac_ct_STRIP" >&5
echo "${ECHO_T}$ac_ct_STRIP" >&6
else
- echo "$as_me:5411: result: no" >&5
+ echo "$as_me:5490: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5432,11 +5511,11 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
case $host in
*-*-irix6*)
# Find out which ABI we are using.
- echo '#line 5435 "configure"' > conftest.$ac_ext
- if { (eval echo "$as_me:5436: \"$ac_compile\"") >&5
+ echo '#line 5514 "configure"' > conftest.$ac_ext
+ if { (eval echo "$as_me:5515: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:5439: \$? = $ac_status" >&5
+ echo "$as_me:5518: \$? = $ac_status" >&5
(exit $ac_status); }; then
case `/usr/bin/file conftest.$ac_objext` in
*32-bit*)
@@ -5457,7 +5536,7 @@ case $host in
# On SCO OpenServer 5, we need -belf to get full-featured binaries.
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -belf"
- echo "$as_me:5460: checking whether the C compiler needs -belf" >&5
+ echo "$as_me:5539: 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
@@ -5470,7 +5549,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 5473 "configure"
+#line 5552 "configure"
#include "confdefs.h"
int
@@ -5482,16 +5561,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5485: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5564: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5488: \$? = $ac_status" >&5
+ echo "$as_me:5567: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5491: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5570: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5494: \$? = $ac_status" >&5
+ echo "$as_me:5573: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_cc_needs_belf=yes
else
@@ -5507,7 +5586,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:5510: result: $lt_cv_cc_needs_belf" >&5
+echo "$as_me:5589: 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
@@ -5519,7 +5598,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:5522: checking for $ac_word" >&5
+echo "$as_me:5601: 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
@@ -5534,7 +5613,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:5537: found $ac_dir/$ac_word" >&5
+echo "$as_me:5616: found $ac_dir/$ac_word" >&5
break
done
@@ -5542,10 +5621,10 @@ fi
fi
DLLTOOL=$ac_cv_prog_DLLTOOL
if test -n "$DLLTOOL"; then
- echo "$as_me:5545: result: $DLLTOOL" >&5
+ echo "$as_me:5624: result: $DLLTOOL" >&5
echo "${ECHO_T}$DLLTOOL" >&6
else
- echo "$as_me:5548: result: no" >&5
+ echo "$as_me:5627: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5554,7 +5633,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:5557: checking for $ac_word" >&5
+echo "$as_me:5636: 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
@@ -5569,7 +5648,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:5572: found $ac_dir/$ac_word" >&5
+echo "$as_me:5651: found $ac_dir/$ac_word" >&5
break
done
@@ -5578,10 +5657,10 @@ fi
fi
ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL
if test -n "$ac_ct_DLLTOOL"; then
- echo "$as_me:5581: result: $ac_ct_DLLTOOL" >&5
+ echo "$as_me:5660: result: $ac_ct_DLLTOOL" >&5
echo "${ECHO_T}$ac_ct_DLLTOOL" >&6
else
- echo "$as_me:5584: result: no" >&5
+ echo "$as_me:5663: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5593,7 +5672,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:5596: checking for $ac_word" >&5
+echo "$as_me:5675: 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
@@ -5608,7 +5687,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:5611: found $ac_dir/$ac_word" >&5
+echo "$as_me:5690: found $ac_dir/$ac_word" >&5
break
done
@@ -5616,10 +5695,10 @@ fi
fi
AS=$ac_cv_prog_AS
if test -n "$AS"; then
- echo "$as_me:5619: result: $AS" >&5
+ echo "$as_me:5698: result: $AS" >&5
echo "${ECHO_T}$AS" >&6
else
- echo "$as_me:5622: result: no" >&5
+ echo "$as_me:5701: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5628,7 +5707,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:5631: checking for $ac_word" >&5
+echo "$as_me:5710: 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
@@ -5643,7 +5722,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:5646: found $ac_dir/$ac_word" >&5
+echo "$as_me:5725: found $ac_dir/$ac_word" >&5
break
done
@@ -5652,10 +5731,10 @@ fi
fi
ac_ct_AS=$ac_cv_prog_ac_ct_AS
if test -n "$ac_ct_AS"; then
- echo "$as_me:5655: result: $ac_ct_AS" >&5
+ echo "$as_me:5734: result: $ac_ct_AS" >&5
echo "${ECHO_T}$ac_ct_AS" >&6
else
- echo "$as_me:5658: result: no" >&5
+ echo "$as_me:5737: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5667,7 +5746,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:5670: checking for $ac_word" >&5
+echo "$as_me:5749: 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
@@ -5682,7 +5761,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:5685: found $ac_dir/$ac_word" >&5
+echo "$as_me:5764: found $ac_dir/$ac_word" >&5
break
done
@@ -5690,10 +5769,10 @@ fi
fi
OBJDUMP=$ac_cv_prog_OBJDUMP
if test -n "$OBJDUMP"; then
- echo "$as_me:5693: result: $OBJDUMP" >&5
+ echo "$as_me:5772: result: $OBJDUMP" >&5
echo "${ECHO_T}$OBJDUMP" >&6
else
- echo "$as_me:5696: result: no" >&5
+ echo "$as_me:5775: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5702,7 +5781,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:5705: checking for $ac_word" >&5
+echo "$as_me:5784: 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
@@ -5717,7 +5796,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:5720: found $ac_dir/$ac_word" >&5
+echo "$as_me:5799: found $ac_dir/$ac_word" >&5
break
done
@@ -5726,10 +5805,10 @@ fi
fi
ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP
if test -n "$ac_ct_OBJDUMP"; then
- echo "$as_me:5729: result: $ac_ct_OBJDUMP" >&5
+ echo "$as_me:5808: result: $ac_ct_OBJDUMP" >&5
echo "${ECHO_T}$ac_ct_OBJDUMP" >&6
else
- echo "$as_me:5732: result: no" >&5
+ echo "$as_me:5811: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5740,13 +5819,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:5743: checking if libtool should supply DllMain function" >&5
+ echo "$as_me:5822: 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 5749 "configure"
+#line 5828 "configure"
#include "confdefs.h"
int
@@ -5759,16 +5838,16 @@ extern int __attribute__((__stdcall__)) DllMain(void*, int, void*);
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5762: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5841: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5765: \$? = $ac_status" >&5
+ echo "$as_me:5844: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5768: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5847: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5771: \$? = $ac_status" >&5
+ echo "$as_me:5850: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_need_dllmain=no
else
@@ -5778,7 +5857,7 @@ lt_cv_need_dllmain=yes
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5781: result: $lt_cv_need_dllmain" >&5
+echo "$as_me:5860: result: $lt_cv_need_dllmain" >&5
echo "${ECHO_T}$lt_cv_need_dllmain" >&6
case $host/$CC in
@@ -5787,13 +5866,13 @@ echo "${ECHO_T}$lt_cv_need_dllmain" >&6
# require "-mdll"
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -mdll"
- echo "$as_me:5790: checking how to link DLLs" >&5
+ echo "$as_me:5869: 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 5796 "configure"
+#line 5875 "configure"
#include "confdefs.h"
int
@@ -5805,16 +5884,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5808: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5887: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5811: \$? = $ac_status" >&5
+ echo "$as_me:5890: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5814: \"$ac_try\"") >&5
+ { (eval echo "$as_me:5893: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5817: \$? = $ac_status" >&5
+ echo "$as_me:5896: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_cc_dll_switch=-mdll
else
@@ -5824,7 +5903,7 @@ lt_cv_cc_dll_switch=-dll
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5827: result: $lt_cv_cc_dll_switch" >&5
+echo "$as_me:5906: result: $lt_cv_cc_dll_switch" >&5
echo "${ECHO_T}$lt_cv_cc_dll_switch" >&6
CFLAGS="$SAVE_CFLAGS" ;;
*-*-cygwin* | *-*-pw32*)
@@ -5926,7 +6005,7 @@ fi
set dummy $CC
compiler="$2"
-echo "$as_me:5929: checking for objdir" >&5
+echo "$as_me:6008: checking for objdir" >&5
echo $ECHO_N "checking for objdir... $ECHO_C" >&6
rm -f .libs 2>/dev/null
mkdir .libs 2>/dev/null
@@ -5937,7 +6016,7 @@ else
objdir=_libs
fi
rmdir .libs 2>/dev/null
-echo "$as_me:5940: result: $objdir" >&5
+echo "$as_me:6019: result: $objdir" >&5
echo "${ECHO_T}$objdir" >&6
# Check whether --with-pic or --without-pic was given.
@@ -5952,7 +6031,7 @@ test -z "$pic_mode" && pic_mode=default
# We assume here that the value for lt_cv_prog_cc_pic will not be cached
# in isolation, and that seeing it set (from the cache) indicates that
# the associated values are set (in the cache) correctly too.
-echo "$as_me:5955: checking for $compiler option to produce PIC" >&5
+echo "$as_me:6034: checking for $compiler option to produce PIC" >&5
echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6
if test "${lt_cv_prog_cc_pic+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6099,14 +6178,14 @@ else
fi
if test -z "$lt_cv_prog_cc_pic"; then
- echo "$as_me:6102: result: none" >&5
+ echo "$as_me:6181: result: none" >&5
echo "${ECHO_T}none" >&6
else
- echo "$as_me:6105: result: $lt_cv_prog_cc_pic" >&5
+ echo "$as_me:6184: result: $lt_cv_prog_cc_pic" >&5
echo "${ECHO_T}$lt_cv_prog_cc_pic" >&6
# Check to make sure the pic_flag actually works.
- echo "$as_me:6109: checking if $compiler PIC flag $lt_cv_prog_cc_pic works" >&5
+ echo "$as_me:6188: checking if $compiler PIC flag $lt_cv_prog_cc_pic works" >&5
echo $ECHO_N "checking if $compiler PIC flag $lt_cv_prog_cc_pic works... $ECHO_C" >&6
if test "${lt_cv_prog_cc_pic_works+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6114,7 +6193,7 @@ else
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
cat >conftest.$ac_ext <<_ACEOF
-#line 6117 "configure"
+#line 6196 "configure"
#include "confdefs.h"
int
@@ -6126,16 +6205,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6129: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6208: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6132: \$? = $ac_status" >&5
+ echo "$as_me:6211: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6135: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6214: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6138: \$? = $ac_status" >&5
+ echo "$as_me:6217: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
case $host_os in
hpux9* | hpux10* | hpux11*)
@@ -6171,23 +6250,23 @@ fi
lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic"
fi
- echo "$as_me:6174: result: $lt_cv_prog_cc_pic_works" >&5
+ echo "$as_me:6253: result: $lt_cv_prog_cc_pic_works" >&5
echo "${ECHO_T}$lt_cv_prog_cc_pic_works" >&6
fi
# Check for any special shared library compilation flags.
if test -n "$lt_cv_prog_cc_shlib"; then
- { echo "$as_me:6180: WARNING: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" >&5
+ { echo "$as_me:6259: WARNING: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" >&5
echo "$as_me: WARNING: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" >&2;}
if echo "$old_CC $old_CFLAGS " | egrep -e "[ ]$lt_cv_prog_cc_shlib[ ]" >/dev/null; then :
else
- { echo "$as_me:6184: WARNING: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5
+ { echo "$as_me:6263: WARNING: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5
echo "$as_me: WARNING: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&2;}
lt_cv_prog_cc_can_build_shared=no
fi
fi
-echo "$as_me:6190: checking if $compiler static flag $lt_cv_prog_cc_static works" >&5
+echo "$as_me:6269: checking if $compiler static flag $lt_cv_prog_cc_static works" >&5
echo $ECHO_N "checking if $compiler static flag $lt_cv_prog_cc_static works... $ECHO_C" >&6
if test "${lt_cv_prog_cc_static_works+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6196,7 +6275,7 @@ else
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
cat >conftest.$ac_ext <<_ACEOF
-#line 6199 "configure"
+#line 6278 "configure"
#include "confdefs.h"
int
@@ -6208,16 +6287,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6211: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6290: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6214: \$? = $ac_status" >&5
+ echo "$as_me:6293: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6217: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6296: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6220: \$? = $ac_status" >&5
+ echo "$as_me:6299: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_prog_cc_static_works=yes
else
@@ -6231,7 +6310,7 @@ fi
# Belt *and* braces to stop my trousers falling down:
test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static=
-echo "$as_me:6234: result: $lt_cv_prog_cc_static_works" >&5
+echo "$as_me:6313: result: $lt_cv_prog_cc_static_works" >&5
echo "${ECHO_T}$lt_cv_prog_cc_static_works" >&6
pic_flag="$lt_cv_prog_cc_pic"
@@ -6242,7 +6321,7 @@ no_builtin_flag="$lt_cv_prog_cc_no_builtin"
can_build_shared="$lt_cv_prog_cc_can_build_shared"
# Check to see if options -o and -c are simultaneously supported by compiler
-echo "$as_me:6245: checking if $compiler supports -c -o file.$ac_objext" >&5
+echo "$as_me:6324: 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_compiler_c_o+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6262,7 +6341,7 @@ chmod -w .
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
compiler_c_o=no
-if { (eval echo configure:6265: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
+if { (eval echo configure:6344: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
if test -s out/conftest.err; then
@@ -6286,12 +6365,12 @@ $rm -r conftest 2>/dev/null
fi
compiler_c_o=$lt_cv_compiler_c_o
-echo "$as_me:6289: result: $compiler_c_o" >&5
+echo "$as_me:6368: result: $compiler_c_o" >&5
echo "${ECHO_T}$compiler_c_o" >&6
if test x"$compiler_c_o" = x"yes"; then
# Check to see if we can write to a .lo
- echo "$as_me:6294: checking if $compiler supports -c -o file.lo" >&5
+ echo "$as_me:6373: checking if $compiler supports -c -o file.lo" >&5
echo $ECHO_N "checking if $compiler supports -c -o file.lo... $ECHO_C" >&6
if test "${lt_cv_compiler_o_lo+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6303,7 +6382,7 @@ else
save_objext="$ac_objext"
ac_objext=lo
cat >conftest.$ac_ext <<_ACEOF
-#line 6306 "configure"
+#line 6385 "configure"
#include "confdefs.h"
int
@@ -6315,16 +6394,16 @@ int some_variable = 0;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6318: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6397: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6321: \$? = $ac_status" >&5
+ echo "$as_me:6400: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6324: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6403: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6327: \$? = $ac_status" >&5
+ echo "$as_me:6406: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -6345,7 +6424,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
fi
compiler_o_lo=$lt_cv_compiler_o_lo
- echo "$as_me:6348: result: $compiler_o_lo" >&5
+ echo "$as_me:6427: result: $compiler_o_lo" >&5
echo "${ECHO_T}$compiler_o_lo" >&6
else
compiler_o_lo=no
@@ -6355,7 +6434,7 @@ fi
hard_links="nottested"
if test "$compiler_c_o" = no && test "$need_locks" != no; then
# do not overwrite the value of need_locks provided by the user
- echo "$as_me:6358: checking if we can lock with hard links" >&5
+ echo "$as_me:6437: 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*
@@ -6363,10 +6442,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:6366: result: $hard_links" >&5
+ echo "$as_me:6445: result: $hard_links" >&5
echo "${ECHO_T}$hard_links" >&6
if test "$hard_links" = no; then
- { echo "$as_me:6369: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
+ { echo "$as_me:6448: 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
@@ -6376,14 +6455,14 @@ fi
if test "$GCC" = yes; then
# Check to see if options -fno-rtti -fno-exceptions are supported by compiler
- echo "$as_me:6379: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
+ echo "$as_me:6458: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6
echo "int some_variable = 0;" > conftest.$ac_ext
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext"
compiler_rtti_exceptions=no
cat >conftest.$ac_ext <<_ACEOF
-#line 6386 "configure"
+#line 6465 "configure"
#include "confdefs.h"
int
@@ -6395,16 +6474,16 @@ int some_variable = 0;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6398: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6477: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6401: \$? = $ac_status" >&5
+ echo "$as_me:6480: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6404: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6483: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6407: \$? = $ac_status" >&5
+ echo "$as_me:6486: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
@@ -6420,7 +6499,7 @@ cat conftest.$ac_ext >&5
fi
rm -f conftest.$ac_objext conftest.$ac_ext
CFLAGS="$save_CFLAGS"
- echo "$as_me:6423: result: $compiler_rtti_exceptions" >&5
+ echo "$as_me:6502: result: $compiler_rtti_exceptions" >&5
echo "${ECHO_T}$compiler_rtti_exceptions" >&6
if test "$compiler_rtti_exceptions" = "yes"; then
@@ -6431,7 +6510,7 @@ echo "${ECHO_T}$compiler_rtti_exceptions" >&6
fi
# See if the linker supports building shared libraries.
-echo "$as_me:6434: checking whether the linker ($LD) supports shared libraries" >&5
+echo "$as_me:6513: checking whether the linker ($LD) supports shared libraries" >&5
echo $ECHO_N "checking whether the linker ($LD) supports shared libraries... $ECHO_C" >&6
allow_undefined_flag=
@@ -7083,12 +7162,12 @@ else
;;
esac
fi
-echo "$as_me:7086: result: $ld_shlibs" >&5
+echo "$as_me:7165: result: $ld_shlibs" >&5
echo "${ECHO_T}$ld_shlibs" >&6
test "$ld_shlibs" = no && can_build_shared=no
# Check hardcoding attributes.
-echo "$as_me:7091: checking how to hardcode library paths into programs" >&5
+echo "$as_me:7170: 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" || \
@@ -7112,20 +7191,20 @@ else
# directories.
hardcode_action=unsupported
fi
-echo "$as_me:7115: result: $hardcode_action" >&5
+echo "$as_me:7194: result: $hardcode_action" >&5
echo "${ECHO_T}$hardcode_action" >&6
striplib=
old_striplib=
-echo "$as_me:7120: checking whether stripping libraries is possible" >&5
+echo "$as_me:7199: 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:7125: result: yes" >&5
+ echo "$as_me:7204: result: yes" >&5
echo "${ECHO_T}yes" >&6
else
- echo "$as_me:7128: result: no" >&5
+ echo "$as_me:7207: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -7133,7 +7212,7 @@ reload_cmds='$LD$reload_flag -o $output$reload_objs'
test -z "$deplibs_check_method" && deplibs_check_method=unknown
# PORTME Fill in your ld.so characteristics
-echo "$as_me:7136: checking dynamic linker characteristics" >&5
+echo "$as_me:7215: checking dynamic linker characteristics" >&5
echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6
library_names_spec=
libname_spec='lib$name'
@@ -7526,17 +7605,17 @@ sysv4*MP*)
dynamic_linker=no
;;
esac
-echo "$as_me:7529: result: $dynamic_linker" >&5
+echo "$as_me:7608: result: $dynamic_linker" >&5
echo "${ECHO_T}$dynamic_linker" >&6
test "$dynamic_linker" = no && can_build_shared=no
# Report the final consequences.
-echo "$as_me:7534: checking if libtool supports shared libraries" >&5
+echo "$as_me:7613: checking if libtool supports shared libraries" >&5
echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6
-echo "$as_me:7536: result: $can_build_shared" >&5
+echo "$as_me:7615: result: $can_build_shared" >&5
echo "${ECHO_T}$can_build_shared" >&6
-echo "$as_me:7539: checking whether to build shared libraries" >&5
+echo "$as_me:7618: 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
@@ -7557,14 +7636,14 @@ aix4*)
fi
;;
esac
-echo "$as_me:7560: result: $enable_shared" >&5
+echo "$as_me:7639: result: $enable_shared" >&5
echo "${ECHO_T}$enable_shared" >&6
-echo "$as_me:7563: checking whether to build static libraries" >&5
+echo "$as_me:7642: 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:7567: result: $enable_static" >&5
+echo "$as_me:7646: result: $enable_static" >&5
echo "${ECHO_T}$enable_static" >&6
if test "$hardcode_action" = relink; then
@@ -7602,13 +7681,13 @@ else
;;
*)
- echo "$as_me:7605: checking for shl_load" >&5
+ echo "$as_me:7684: 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 7611 "configure"
+#line 7690 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shl_load (); below. */
@@ -7639,16 +7718,16 @@ f = shl_load;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7642: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7721: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7645: \$? = $ac_status" >&5
+ echo "$as_me:7724: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7648: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7727: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7651: \$? = $ac_status" >&5
+ echo "$as_me:7730: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_shl_load=yes
else
@@ -7658,12 +7737,12 @@ ac_cv_func_shl_load=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:7661: result: $ac_cv_func_shl_load" >&5
+echo "$as_me:7740: 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:7666: checking for shl_load in -ldld" >&5
+ echo "$as_me:7745: 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
@@ -7671,7 +7750,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldld $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7674 "configure"
+#line 7753 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7690,16 +7769,16 @@ shl_load ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7693: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7772: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7696: \$? = $ac_status" >&5
+ echo "$as_me:7775: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7699: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7778: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7702: \$? = $ac_status" >&5
+ echo "$as_me:7781: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dld_shl_load=yes
else
@@ -7710,18 +7789,18 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7713: result: $ac_cv_lib_dld_shl_load" >&5
+echo "$as_me:7792: 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:7718: checking for dlopen" >&5
+ echo "$as_me:7797: 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 7724 "configure"
+#line 7803 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char dlopen (); below. */
@@ -7752,16 +7831,16 @@ f = dlopen;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7755: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7834: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7758: \$? = $ac_status" >&5
+ echo "$as_me:7837: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7761: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7840: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7764: \$? = $ac_status" >&5
+ echo "$as_me:7843: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_dlopen=yes
else
@@ -7771,12 +7850,12 @@ ac_cv_func_dlopen=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:7774: result: $ac_cv_func_dlopen" >&5
+echo "$as_me:7853: 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:7779: checking for dlopen in -ldl" >&5
+ echo "$as_me:7858: 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
@@ -7784,7 +7863,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldl $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7787 "configure"
+#line 7866 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7803,16 +7882,16 @@ dlopen ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7806: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7885: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7809: \$? = $ac_status" >&5
+ echo "$as_me:7888: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7812: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7891: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7815: \$? = $ac_status" >&5
+ echo "$as_me:7894: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dl_dlopen=yes
else
@@ -7823,12 +7902,12 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7826: result: $ac_cv_lib_dl_dlopen" >&5
+echo "$as_me:7905: 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:7831: checking for dlopen in -lsvld" >&5
+ echo "$as_me:7910: 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
@@ -7836,7 +7915,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lsvld $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7839 "configure"
+#line 7918 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7855,16 +7934,16 @@ dlopen ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7858: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7937: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7861: \$? = $ac_status" >&5
+ echo "$as_me:7940: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7864: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7943: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7867: \$? = $ac_status" >&5
+ echo "$as_me:7946: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_svld_dlopen=yes
else
@@ -7875,12 +7954,12 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7878: result: $ac_cv_lib_svld_dlopen" >&5
+echo "$as_me:7957: 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:7883: checking for dld_link in -ldld" >&5
+ echo "$as_me:7962: 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
@@ -7888,7 +7967,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldld $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7891 "configure"
+#line 7970 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7907,16 +7986,16 @@ dld_link ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7910: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7989: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7913: \$? = $ac_status" >&5
+ echo "$as_me:7992: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7916: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7995: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7919: \$? = $ac_status" >&5
+ echo "$as_me:7998: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dld_dld_link=yes
else
@@ -7927,7 +8006,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7930: result: $ac_cv_lib_dld_dld_link" >&5
+echo "$as_me:8009: 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"
@@ -7963,7 +8042,7 @@ fi
save_LIBS="$LIBS"
LIBS="$lt_cv_dlopen_libs $LIBS"
- echo "$as_me:7966: checking whether a program can dlopen itself" >&5
+ echo "$as_me:8045: 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
@@ -7974,7 +8053,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 7977 "configure"
+#line 8056 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -8035,10 +8114,10 @@ int main ()
exit (status);
}
EOF
- if { (eval echo "$as_me:8038: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:8117: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8041: \$? = $ac_status" >&5
+ echo "$as_me:8120: \$? = $ac_status" >&5
(exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
(./conftest; exit; ) 2>/dev/null
lt_status=$?
@@ -8055,12 +8134,12 @@ fi
rm -fr conftest*
fi
-echo "$as_me:8058: result: $lt_cv_dlopen_self" >&5
+echo "$as_me:8137: 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:8063: checking whether a statically linked program can dlopen itself" >&5
+ echo "$as_me:8142: 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
@@ -8071,7 +8150,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 8074 "configure"
+#line 8153 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -8132,10 +8211,10 @@ int main ()
exit (status);
}
EOF
- if { (eval echo "$as_me:8135: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:8214: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8138: \$? = $ac_status" >&5
+ echo "$as_me:8217: \$? = $ac_status" >&5
(exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
(./conftest; exit; ) 2>/dev/null
lt_status=$?
@@ -8152,7 +8231,7 @@ fi
rm -fr conftest*
fi
-echo "$as_me:8155: result: $lt_cv_dlopen_self_static" >&5
+echo "$as_me:8234: result: $lt_cv_dlopen_self_static" >&5
echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
fi
@@ -8182,7 +8261,7 @@ 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:8185: checking whether -lc should be explicitly linked in" >&5
+ echo "$as_me:8264: checking whether -lc should be explicitly linked in" >&5
echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6
if test "${lt_cv_archive_cmds_need_lc+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8190,10 +8269,10 @@ else
$rm conftest*
echo 'static int dummy;' > conftest.$ac_ext
- if { (eval echo "$as_me:8193: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:8272: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8196: \$? = $ac_status" >&5
+ echo "$as_me:8275: \$? = $ac_status" >&5
(exit $ac_status); }; then
soname=conftest
lib=conftest
@@ -8207,10 +8286,10 @@ else
libname=conftest
save_allow_undefined_flag=$allow_undefined_flag
allow_undefined_flag=
- if { (eval echo "$as_me:8210: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
+ if { (eval echo "$as_me:8289: \"$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:8213: \$? = $ac_status" >&5
+ echo "$as_me:8292: \$? = $ac_status" >&5
(exit $ac_status); }
then
lt_cv_archive_cmds_need_lc=no
@@ -8223,7 +8302,7 @@ else
fi
fi
- echo "$as_me:8226: result: $lt_cv_archive_cmds_need_lc" >&5
+ echo "$as_me:8305: result: $lt_cv_archive_cmds_need_lc" >&5
echo "${ECHO_T}$lt_cv_archive_cmds_need_lc" >&6
;;
esac
@@ -8795,7 +8874,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:8798: error: cannot create both shared and static libraries on this system, --disable one of the two" >&5
+ { { echo "$as_me:8877: 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; }; }
;;
@@ -8839,7 +8918,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:8842: checking if the assembler knows about MMX instructions" >&5
+ *mmx*) echo "$as_me:8921: 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
@@ -8849,10 +8928,10 @@ else
movq %mm0, %mm1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:8852: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:8931: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:8855: \$? = $ac_status" >&5
+ echo "$as_me:8934: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_mmx=yes
@@ -8863,7 +8942,7 @@ case $host in
gmp_cv_asm_x86_mmx=movq-bug
fi
else
- { echo "$as_me:8866: WARNING: \"dis\" not available to check for \"as\" movq bug" >&5
+ { echo "$as_me:8945: 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
@@ -8876,44 +8955,44 @@ fi
rm -f conftest*
fi
-echo "$as_me:8879: result: $gmp_cv_asm_x86_mmx" >&5
+echo "$as_me:8958: 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:8884: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:8963: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
- { echo "$as_me:8886: WARNING: | WARNING WARNING WARNING" >&5
+ { echo "$as_me:8965: WARNING: | WARNING WARNING WARNING" >&5
echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;}
- { echo "$as_me:8888: WARNING: | Host CPU has MMX code, but the assembler" >&5
+ { echo "$as_me:8967: 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:8890: WARNING: | $CCAS $CFLAGS" >&5
+ { echo "$as_me:8969: WARNING: | $CCAS $CFLAGS" >&5
echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;}
- { echo "$as_me:8892: WARNING: | has the Solaris 2.6 and 2.7 bug where register to register" >&5
+ { echo "$as_me:8971: 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:8894: WARNING: | movq operands are reversed." >&5
+ { echo "$as_me:8973: WARNING: | movq operands are reversed." >&5
echo "$as_me: WARNING: | movq operands are reversed." >&2;}
- { echo "$as_me:8896: WARNING: | Non-MMX replacements will be used." >&5
+ { echo "$as_me:8975: WARNING: | Non-MMX replacements will be used." >&5
echo "$as_me: WARNING: | Non-MMX replacements will be used." >&2;}
- { echo "$as_me:8898: WARNING: | This will be an inferior build." >&5
+ { echo "$as_me:8977: WARNING: | This will be an inferior build." >&5
echo "$as_me: WARNING: | This will be an inferior build." >&2;}
- { echo "$as_me:8900: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:8979: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
;;
no)
- { echo "$as_me:8904: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:8983: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
- { echo "$as_me:8906: WARNING: | WARNING WARNING WARNING" >&5
+ { echo "$as_me:8985: WARNING: | WARNING WARNING WARNING" >&5
echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;}
- { echo "$as_me:8908: WARNING: | Host CPU has MMX code, but it can't be assembled by" >&5
+ { echo "$as_me:8987: 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:8910: WARNING: | $CCAS $CFLAGS" >&5
+ { echo "$as_me:8989: WARNING: | $CCAS $CFLAGS" >&5
echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;}
- { echo "$as_me:8912: WARNING: | Non-MMX replacements will be used." >&5
+ { echo "$as_me:8991: WARNING: | Non-MMX replacements will be used." >&5
echo "$as_me: WARNING: | Non-MMX replacements will be used." >&2;}
- { echo "$as_me:8914: WARNING: | This will be an inferior build." >&5
+ { echo "$as_me:8993: WARNING: | This will be an inferior build." >&5
echo "$as_me: WARNING: | This will be an inferior build." >&2;}
- { echo "$as_me:8916: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:8995: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
;;
esac
@@ -8933,7 +9012,7 @@ fi
;;
esac
case "$path" in
- *sse2*) echo "$as_me:8936: checking if the assembler knows about SSE2 instructions" >&5
+ *sse2*) echo "$as_me:9015: 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
@@ -8943,10 +9022,10 @@ else
paddq %mm0, %mm1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:8946: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:9025: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:8949: \$? = $ac_status" >&5
+ echo "$as_me:9028: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_sse2=yes
@@ -8959,26 +9038,26 @@ fi
rm -f conftest*
fi
-echo "$as_me:8962: result: $gmp_cv_asm_x86_sse2" >&5
+echo "$as_me:9041: 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:8969: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9048: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
- { echo "$as_me:8971: WARNING: | WARNING WARNING WARNING" >&5
+ { echo "$as_me:9050: WARNING: | WARNING WARNING WARNING" >&5
echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;}
- { echo "$as_me:8973: WARNING: | Host CPU has SSE2 code, but it can't be assembled by" >&5
+ { echo "$as_me:9052: 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:8975: WARNING: | $CCAS $CFLAGS" >&5
+ { echo "$as_me:9054: WARNING: | $CCAS $CFLAGS" >&5
echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;}
- { echo "$as_me:8977: WARNING: | Non-SSE2 replacements will be used." >&5
+ { echo "$as_me:9056: WARNING: | Non-SSE2 replacements will be used." >&5
echo "$as_me: WARNING: | Non-SSE2 replacements will be used." >&2;}
- { echo "$as_me:8979: WARNING: | This will be an inferior build." >&5
+ { echo "$as_me:9058: WARNING: | This will be an inferior build." >&5
echo "$as_me: WARNING: | This will be an inferior build." >&2;}
- { echo "$as_me:8981: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9060: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
tmp_path=
for i in $path; do
@@ -8999,13 +9078,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:9002: checking for ANSI C header files" >&5
+echo "$as_me:9081: 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 9008 "configure"
+#line 9087 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
@@ -9013,13 +9092,13 @@ else
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:9016: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9095: \"$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:9022: \$? = $ac_status" >&5
+ echo "$as_me:9101: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -9041,7 +9120,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 9044 "configure"
+#line 9123 "configure"
#include "confdefs.h"
#include <string.h>
@@ -9059,7 +9138,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 9062 "configure"
+#line 9141 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -9080,7 +9159,7 @@ if test $ac_cv_header_stdc = yes; then
:
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9083 "configure"
+#line 9162 "configure"
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
@@ -9106,15 +9185,15 @@ main ()
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:9109: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9188: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:9112: \$? = $ac_status" >&5
+ echo "$as_me:9191: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:9114: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9193: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9117: \$? = $ac_status" >&5
+ echo "$as_me:9196: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -9127,7 +9206,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
fi
-echo "$as_me:9130: result: $ac_cv_header_stdc" >&5
+echo "$as_me:9209: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
@@ -9137,13 +9216,13 @@ EOF
fi
-echo "$as_me:9140: checking whether time.h and sys/time.h may both be included" >&5
+echo "$as_me:9219: 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 9146 "configure"
+#line 9225 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
@@ -9159,16 +9238,16 @@ return 0;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9162: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9241: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9165: \$? = $ac_status" >&5
+ echo "$as_me:9244: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9168: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9247: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9171: \$? = $ac_status" >&5
+ echo "$as_me:9250: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_header_time=yes
else
@@ -9178,7 +9257,7 @@ ac_cv_header_time=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9181: result: $ac_cv_header_time" >&5
+echo "$as_me:9260: result: $ac_cv_header_time" >&5
echo "${ECHO_T}$ac_cv_header_time" >&6
if test $ac_cv_header_time = yes; then
@@ -9193,23 +9272,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 sys/types.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:9196: checking for $ac_header" >&5
+echo "$as_me:9275: 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 9202 "configure"
+#line 9281 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:9206: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9285: \"$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:9212: \$? = $ac_status" >&5
+ echo "$as_me:9291: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -9228,7 +9307,7 @@ else
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:9231: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:9310: 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
@@ -9245,28 +9324,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:9248: checking for $ac_header" >&5
+echo "$as_me:9327: 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 9254 "configure"
+#line 9333 "configure"
#include "confdefs.h"
$ac_includes_default
#include <$ac_header>
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9260: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9339: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9263: \$? = $ac_status" >&5
+ echo "$as_me:9342: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9266: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9345: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9269: \$? = $ac_status" >&5
+ echo "$as_me:9348: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
@@ -9276,7 +9355,7 @@ eval "$as_ac_Header=no"
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9279: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:9358: 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
@@ -9286,13 +9365,13 @@ EOF
fi
done
-echo "$as_me:9289: checking whether optarg is declared" >&5
+echo "$as_me:9368: 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 9295 "configure"
+#line 9374 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9307,16 +9386,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9310: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9389: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9313: \$? = $ac_status" >&5
+ echo "$as_me:9392: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9316: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9395: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9319: \$? = $ac_status" >&5
+ echo "$as_me:9398: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_have_decl_optarg=yes
else
@@ -9326,7 +9405,7 @@ ac_cv_have_decl_optarg=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9329: result: $ac_cv_have_decl_optarg" >&5
+echo "$as_me:9408: 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
@@ -9340,13 +9419,13 @@ else
EOF
fi
-echo "$as_me:9343: checking whether vfprintf is declared" >&5
+echo "$as_me:9422: 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 9349 "configure"
+#line 9428 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9361,16 +9440,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9364: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9443: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9367: \$? = $ac_status" >&5
+ echo "$as_me:9446: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9370: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9449: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9373: \$? = $ac_status" >&5
+ echo "$as_me:9452: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_have_decl_vfprintf=yes
else
@@ -9380,7 +9459,7 @@ ac_cv_have_decl_vfprintf=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9383: result: $ac_cv_have_decl_vfprintf" >&5
+echo "$as_me:9462: 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
@@ -9395,13 +9474,13 @@ EOF
fi
-echo "$as_me:9398: checking return type of signal handlers" >&5
+echo "$as_me:9477: 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 9404 "configure"
+#line 9483 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
@@ -9423,16 +9502,16 @@ int i;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9426: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9505: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9429: \$? = $ac_status" >&5
+ echo "$as_me:9508: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9432: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9511: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9435: \$? = $ac_status" >&5
+ echo "$as_me:9514: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_signal=void
else
@@ -9442,7 +9521,7 @@ ac_cv_type_signal=int
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9445: result: $ac_cv_type_signal" >&5
+echo "$as_me:9524: result: $ac_cv_type_signal" >&5
echo "${ECHO_T}$ac_cv_type_signal" >&6
cat >>confdefs.h <<EOF
@@ -9450,13 +9529,13 @@ cat >>confdefs.h <<EOF
EOF
# the default includes are sufficient for all these types
-echo "$as_me:9453: checking for intmax_t" >&5
+echo "$as_me:9532: 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 9459 "configure"
+#line 9538 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9471,16 +9550,16 @@ if (sizeof (intmax_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9474: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9553: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9477: \$? = $ac_status" >&5
+ echo "$as_me:9556: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9480: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9559: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9483: \$? = $ac_status" >&5
+ echo "$as_me:9562: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_intmax_t=yes
else
@@ -9490,7 +9569,7 @@ ac_cv_type_intmax_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9493: result: $ac_cv_type_intmax_t" >&5
+echo "$as_me:9572: 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
@@ -9499,13 +9578,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9502: checking for long double" >&5
+echo "$as_me:9581: 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 9508 "configure"
+#line 9587 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9520,16 +9599,16 @@ if (sizeof (long double))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9523: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9602: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9526: \$? = $ac_status" >&5
+ echo "$as_me:9605: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9529: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9608: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9532: \$? = $ac_status" >&5
+ echo "$as_me:9611: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_long_double=yes
else
@@ -9539,7 +9618,7 @@ ac_cv_type_long_double=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9542: result: $ac_cv_type_long_double" >&5
+echo "$as_me:9621: 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
@@ -9548,13 +9627,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9551: checking for long long" >&5
+echo "$as_me:9630: 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 9557 "configure"
+#line 9636 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9569,16 +9648,16 @@ if (sizeof (long long))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9572: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9651: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9575: \$? = $ac_status" >&5
+ echo "$as_me:9654: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9578: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9657: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9581: \$? = $ac_status" >&5
+ echo "$as_me:9660: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_long_long=yes
else
@@ -9588,7 +9667,7 @@ ac_cv_type_long_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9591: result: $ac_cv_type_long_long" >&5
+echo "$as_me:9670: 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
@@ -9597,13 +9676,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9600: checking for ptrdiff_t" >&5
+echo "$as_me:9679: 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 9606 "configure"
+#line 9685 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9618,16 +9697,16 @@ if (sizeof (ptrdiff_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9621: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9700: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9624: \$? = $ac_status" >&5
+ echo "$as_me:9703: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9627: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9706: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9630: \$? = $ac_status" >&5
+ echo "$as_me:9709: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_ptrdiff_t=yes
else
@@ -9637,7 +9716,7 @@ ac_cv_type_ptrdiff_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9640: result: $ac_cv_type_ptrdiff_t" >&5
+echo "$as_me:9719: 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
@@ -9646,13 +9725,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9649: checking for quad_t" >&5
+echo "$as_me:9728: 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 9655 "configure"
+#line 9734 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9667,16 +9746,16 @@ if (sizeof (quad_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9670: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9749: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9673: \$? = $ac_status" >&5
+ echo "$as_me:9752: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9676: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9755: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9679: \$? = $ac_status" >&5
+ echo "$as_me:9758: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_quad_t=yes
else
@@ -9686,7 +9765,7 @@ ac_cv_type_quad_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9689: result: $ac_cv_type_quad_t" >&5
+echo "$as_me:9768: 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
@@ -9696,13 +9775,13 @@ EOF
fi
-echo "$as_me:9699: checking for preprocessor stringizing operator" >&5
+echo "$as_me:9778: 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 9705 "configure"
+#line 9784 "configure"
#include "confdefs.h"
#define x(y) #y
@@ -9717,7 +9796,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:9720: result: $ac_cv_c_stringize" >&5
+echo "$as_me:9799: result: $ac_cv_c_stringize" >&5
echo "${ECHO_T}$ac_cv_c_stringize" >&6
if test $ac_cv_c_stringize = yes; then
@@ -9727,13 +9806,13 @@ EOF
fi
-echo "$as_me:9730: checking whether <stdarg.h> exists and works" >&5
+echo "$as_me:9809: 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 9736 "configure"
+#line 9815 "configure"
#include "confdefs.h"
#include <stdarg.h>
int foo (int x, ...)
@@ -9754,16 +9833,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9757: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9836: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9760: \$? = $ac_status" >&5
+ echo "$as_me:9839: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9763: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9842: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9766: \$? = $ac_status" >&5
+ echo "$as_me:9845: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_stdarg=yes
else
@@ -9774,7 +9853,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9777: result: $gmp_cv_c_stdarg" >&5
+echo "$as_me:9856: result: $gmp_cv_c_stdarg" >&5
echo "${ECHO_T}$gmp_cv_c_stdarg" >&6
if test $gmp_cv_c_stdarg = yes; then
@@ -9784,13 +9863,13 @@ EOF
fi
-echo "$as_me:9787: checking whether gcc __attribute__ ((const)) works" >&5
+echo "$as_me:9866: 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 9793 "configure"
+#line 9872 "configure"
#include "confdefs.h"
int foo (int x) __attribute__ ((const));
int
@@ -9802,16 +9881,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9805: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9884: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9808: \$? = $ac_status" >&5
+ echo "$as_me:9887: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9811: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9890: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9814: \$? = $ac_status" >&5
+ echo "$as_me:9893: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_attribute_const=yes
else
@@ -9822,7 +9901,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9825: result: $gmp_cv_c_attribute_const" >&5
+echo "$as_me:9904: 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
@@ -9832,7 +9911,7 @@ EOF
fi
-echo "$as_me:9835: checking whether gcc __attribute__ ((malloc)) works" >&5
+echo "$as_me:9914: 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
@@ -9841,10 +9920,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:9844: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:9923: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:9847: \$? = $ac_status" >&5
+ echo "$as_me:9926: \$? = $ac_status" >&5
(exit $ac_status); }; then
if grep "attribute directive ignored" conftest.out >/dev/null; then
gmp_cv_c_attribute_malloc=no
@@ -9858,7 +9937,7 @@ cat conftest.out >&5
rm -f conftest*
fi
-echo "$as_me:9861: result: $gmp_cv_c_attribute_malloc" >&5
+echo "$as_me:9940: 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
@@ -9868,13 +9947,13 @@ EOF
fi
-echo "$as_me:9871: checking whether gcc __attribute__ ((mode (XX))) works" >&5
+echo "$as_me:9950: 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 9877 "configure"
+#line 9956 "configure"
#include "confdefs.h"
typedef int SItype __attribute__ ((mode (SI)));
int
@@ -9886,16 +9965,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9889: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9968: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9892: \$? = $ac_status" >&5
+ echo "$as_me:9971: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9895: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9974: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9898: \$? = $ac_status" >&5
+ echo "$as_me:9977: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_attribute_mode=yes
else
@@ -9906,7 +9985,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9909: result: $gmp_cv_c_attribute_mode" >&5
+echo "$as_me:9988: 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
@@ -9916,13 +9995,13 @@ EOF
fi
-echo "$as_me:9919: checking whether gcc __attribute__ ((noreturn)) works" >&5
+echo "$as_me:9998: 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 9925 "configure"
+#line 10004 "configure"
#include "confdefs.h"
void foo (int x) __attribute__ ((noreturn));
int
@@ -9934,16 +10013,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9937: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10016: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9940: \$? = $ac_status" >&5
+ echo "$as_me:10019: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9943: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10022: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9946: \$? = $ac_status" >&5
+ echo "$as_me:10025: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_attribute_noreturn=yes
else
@@ -9954,7 +10033,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9957: result: $gmp_cv_c_attribute_noreturn" >&5
+echo "$as_me:10036: 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
@@ -9964,7 +10043,7 @@ EOF
fi
-echo "$as_me:9967: checking for inline" >&5
+echo "$as_me:10046: 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
@@ -9972,7 +10051,7 @@ else
ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do
cat >conftest.$ac_ext <<_ACEOF
-#line 9975 "configure"
+#line 10054 "configure"
#include "confdefs.h"
#ifndef __cplusplus
static $ac_kw int static_foo () {return 0; }
@@ -9981,16 +10060,16 @@ $ac_kw int foo () {return 0; }
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9984: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10063: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9987: \$? = $ac_status" >&5
+ echo "$as_me:10066: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9990: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10069: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9993: \$? = $ac_status" >&5
+ echo "$as_me:10072: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_inline=$ac_kw; break
else
@@ -10001,7 +10080,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
-echo "$as_me:10004: result: $ac_cv_c_inline" >&5
+echo "$as_me:10083: result: $ac_cv_c_inline" >&5
echo "${ECHO_T}$ac_cv_c_inline" >&6
case $ac_cv_c_inline in
inline | yes) ;;
@@ -10020,7 +10099,7 @@ case $ac_cv_c_inline in
no) ;;
*)
cat >conftest.$ac_ext <<_ACEOF
-#line 10023 "configure"
+#line 10102 "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 */
@@ -10040,16 +10119,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10043: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10122: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10046: \$? = $ac_status" >&5
+ echo "$as_me:10125: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10049: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10128: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10052: \$? = $ac_status" >&5
+ echo "$as_me:10131: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -10059,7 +10138,7 @@ case $ac_cv_c_inline in
"") tmp_inline=inline ;;
*) tmp_inline=$ac_cv_c_inline ;;
esac
- { echo "$as_me:10062: WARNING: gmp.h doesnt recognise compiler \"$tmp_inline\", inlines will be unavailable" >&5
+ { echo "$as_me:10141: 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
@@ -10073,7 +10152,7 @@ case $host in
# These system don't have libm
;;
*-ncr-sysv4.3*)
- echo "$as_me:10076: checking for _mwvalidcheckl in -lmw" >&5
+ echo "$as_me:10155: 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
@@ -10081,7 +10160,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lmw $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 10084 "configure"
+#line 10163 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -10100,16 +10179,16 @@ _mwvalidcheckl ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10103: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10182: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10106: \$? = $ac_status" >&5
+ echo "$as_me:10185: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10109: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10188: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10112: \$? = $ac_status" >&5
+ echo "$as_me:10191: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_mw__mwvalidcheckl=yes
else
@@ -10120,13 +10199,13 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10123: result: $ac_cv_lib_mw__mwvalidcheckl" >&5
+echo "$as_me:10202: 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:10129: checking for main in -lm" >&5
+ echo "$as_me:10208: 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
@@ -10134,7 +10213,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 10137 "configure"
+#line 10216 "configure"
#include "confdefs.h"
int
@@ -10146,16 +10225,16 @@ main ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10149: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10228: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10152: \$? = $ac_status" >&5
+ echo "$as_me:10231: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10155: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10234: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10158: \$? = $ac_status" >&5
+ echo "$as_me:10237: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_m_main=yes
else
@@ -10166,7 +10245,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10169: result: $ac_cv_lib_m_main" >&5
+echo "$as_me:10248: 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"
@@ -10174,7 +10253,7 @@ fi
;;
*)
- echo "$as_me:10177: checking for main in -lm" >&5
+ echo "$as_me:10256: 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
@@ -10182,7 +10261,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 10185 "configure"
+#line 10264 "configure"
#include "confdefs.h"
int
@@ -10194,16 +10273,16 @@ main ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10197: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10276: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10200: \$? = $ac_status" >&5
+ echo "$as_me:10279: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10203: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10282: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10206: \$? = $ac_status" >&5
+ echo "$as_me:10285: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_m_main=yes
else
@@ -10214,7 +10293,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10217: result: $ac_cv_lib_m_main" >&5
+echo "$as_me:10296: 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"
@@ -10225,13 +10304,13 @@ esac
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
-echo "$as_me:10228: checking for working alloca.h" >&5
+echo "$as_me:10307: 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 10234 "configure"
+#line 10313 "configure"
#include "confdefs.h"
#include <alloca.h>
int
@@ -10243,16 +10322,16 @@ char *p = (char *) alloca (2 * sizeof (int));
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10246: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10325: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10249: \$? = $ac_status" >&5
+ echo "$as_me:10328: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10252: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10331: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10255: \$? = $ac_status" >&5
+ echo "$as_me:10334: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_header_alloca=yes
else
@@ -10262,7 +10341,7 @@ gmp_cv_header_alloca=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10265: result: $gmp_cv_header_alloca" >&5
+echo "$as_me:10344: result: $gmp_cv_header_alloca" >&5
echo "${ECHO_T}$gmp_cv_header_alloca" >&6
if test $gmp_cv_header_alloca = yes; then
@@ -10272,13 +10351,13 @@ EOF
fi
-echo "$as_me:10275: checking for alloca (via gmp-impl.h)" >&5
+echo "$as_me:10354: 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 10281 "configure"
+#line 10360 "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 */
@@ -10296,16 +10375,16 @@ char *p = (char *) alloca (1);
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10299: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10378: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10302: \$? = $ac_status" >&5
+ echo "$as_me:10381: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10305: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10384: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10308: \$? = $ac_status" >&5
+ echo "$as_me:10387: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_func_alloca=yes
else
@@ -10315,7 +10394,7 @@ gmp_cv_func_alloca=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10318: result: $gmp_cv_func_alloca" >&5
+echo "$as_me:10397: result: $gmp_cv_func_alloca" >&5
echo "${ECHO_T}$gmp_cv_func_alloca" >&6
if test $gmp_cv_func_alloca = yes; then
@@ -10325,7 +10404,7 @@ EOF
fi
-echo "$as_me:10328: checking how to allocate temporary memory" >&5
+echo "$as_me:10407: 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
@@ -10349,12 +10428,12 @@ else
esac
fi
-echo "$as_me:10352: result: $gmp_cv_option_alloca" >&5
+echo "$as_me:10431: 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:10357: error: --enable-alloca=alloca specified, but alloca not available" >&5
+ { { echo "$as_me:10436: 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
@@ -10390,14 +10469,14 @@ EOF
;;
*)
# checks at the start of configure.in should protect us
- { { echo "$as_me:10393: error: unrecognised --enable-alloca=$gmp_cv_option_alloca" >&5
+ { { echo "$as_me:10472: 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 10400 "configure"
+#line 10479 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -10418,22 +10497,22 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10421: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10500: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10424: \$? = $ac_status" >&5
+ echo "$as_me:10503: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10427: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10506: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10430: \$? = $ac_status" >&5
+ echo "$as_me:10509: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ echo "$as_me:10436: WARNING: gmp.h doesnt recognise <stdio.h>, FILE prototypes will be unavailable" >&5
+{ echo "$as_me:10515: 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
@@ -10450,16 +10529,16 @@ case $host in
m68*-*-netbsd1.4*) ac_cv_func_getrusage=no ;;
esac
-for ac_func in getpagesize getrusage gettimeofday localeconv memset mprotect obstack_vprintf popen processor_info read_real_time strchr strtoul sysconf sysctl sysctlbyname times
+for ac_func in getpagesize getrusage gettimeofday localeconv memset mmap mprotect obstack_vprintf popen processor_info read_real_time strchr strtoul sysconf sysctl sysctlbyname times
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:10456: checking for $ac_func" >&5
+echo "$as_me:10535: 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 10462 "configure"
+#line 10541 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -10490,16 +10569,16 @@ f = $ac_func;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10493: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10572: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10496: \$? = $ac_status" >&5
+ echo "$as_me:10575: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10499: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10578: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10502: \$? = $ac_status" >&5
+ echo "$as_me:10581: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -10509,7 +10588,7 @@ eval "$as_ac_var=no"
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10512: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:10591: 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
@@ -10519,13 +10598,13 @@ EOF
fi
done
-echo "$as_me:10522: checking for vsnprintf" >&5
+echo "$as_me:10601: 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 10528 "configure"
+#line 10607 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char vsnprintf (); below. */
@@ -10556,16 +10635,16 @@ f = vsnprintf;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10559: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10638: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10562: \$? = $ac_status" >&5
+ echo "$as_me:10641: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10565: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10644: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10568: \$? = $ac_status" >&5
+ echo "$as_me:10647: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_vsnprintf=yes
else
@@ -10575,7 +10654,7 @@ ac_cv_func_vsnprintf=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10578: result: $ac_cv_func_vsnprintf" >&5
+echo "$as_me:10657: 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
@@ -10584,7 +10663,7 @@ else
fi
if test "$gmp_vsnprintf_exists" = yes; then
- echo "$as_me:10587: checking whether vsnprintf works" >&5
+ echo "$as_me:10666: 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
@@ -10593,7 +10672,7 @@ else
gmp_cv_func_vsnprintf=probably
else
cat >conftest.$ac_ext <<_ACEOF
-#line 10596 "configure"
+#line 10675 "configure"
#include "confdefs.h"
#if HAVE_STDARG
@@ -10640,15 +10719,15 @@ main ()
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:10643: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10722: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10646: \$? = $ac_status" >&5
+ echo "$as_me:10725: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:10648: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10727: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10651: \$? = $ac_status" >&5
+ echo "$as_me:10730: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_func_vsnprintf=yes
else
@@ -10661,10 +10740,10 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
-echo "$as_me:10664: result: $gmp_cv_func_vsnprintf" >&5
+echo "$as_me:10743: 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:10667: WARNING: cannot check for properly working vsnprintf when cross compiling, will assume it's ok" >&5
+ { echo "$as_me:10746: 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
@@ -10801,7 +10880,7 @@ EOF
fi
done
if test $found = no; then
- { { echo "$as_me:10804: error: no version of $tmp_fn found in path: $path" >&5
+ { { echo "$as_me:10883: 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
@@ -10816,7 +10895,7 @@ fi
# Don't demand an m4 unless it's actually needed.
if test $found_asm = yes; then
-echo "$as_me:10819: checking for suitable m4" >&5
+echo "$as_me:10898: 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
@@ -10852,7 +10931,7 @@ EOF
done
IFS="$ac_save_ifs"
if test -z "$gmp_cv_prog_m4"; then
- { { echo "$as_me:10855: error: No usable m4 in \$PATH or /usr/5bin (see config.log for reasons)." >&5
+ { { echo "$as_me:10934: 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
@@ -10860,11 +10939,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:10863: result: $gmp_cv_prog_m4" >&5
+echo "$as_me:10942: result: $gmp_cv_prog_m4" >&5
echo "${ECHO_T}$gmp_cv_prog_m4" >&6
M4="$gmp_cv_prog_m4"
-echo "$as_me:10867: checking if m4wrap produces spurious output" >&5
+echo "$as_me:10946: 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
@@ -10886,7 +10965,7 @@ else
fi
fi
-echo "$as_me:10889: result: $gmp_cv_m4_m4wrap_spurious" >&5
+echo "$as_me:10968: 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
@@ -10901,7 +10980,7 @@ if test $found_asm = no && test $found_S = no; then
fi
if test "$gmp_asm_syntax_testing" != no; then
- echo "$as_me:10904: checking how to switch to text section" >&5
+ echo "$as_me:10983: 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
@@ -10913,11 +10992,11 @@ else
esac
fi
-echo "$as_me:10916: result: $gmp_cv_asm_text" >&5
+echo "$as_me:10995: 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:10920: checking how to switch to data section" >&5
+ echo "$as_me:10999: 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
@@ -10928,11 +11007,11 @@ else
esac
fi
-echo "$as_me:10931: result: $gmp_cv_asm_data" >&5
+echo "$as_me:11010: 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:10935: checking what assembly label suffix to use" >&5
+ echo "$as_me:11014: 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
@@ -10944,11 +11023,11 @@ else
esac
fi
-echo "$as_me:10947: result: $gmp_cv_asm_label_suffix" >&5
+echo "$as_me:11026: 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:10951: checking how to export a symbol" >&5
+ echo "$as_me:11030: 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
@@ -10959,11 +11038,11 @@ else
esac
fi
-echo "$as_me:10962: result: $gmp_cv_asm_globl" >&5
+echo "$as_me:11041: 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:10966: checking if globals are prefixed by underscore" >&5
+echo "$as_me:11045: 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
@@ -10989,10 +11068,10 @@ EOF
;;
esac
gmp_compile="$CC $CFLAGS $CPPFLAGS conftes1.c conftes2.s 1>&5"
- if { (eval echo "$as_me:10992: \"$gmp_compile\"") >&5
+ if { (eval echo "$as_me:11071: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:10995: \$? = $ac_status" >&5
+ echo "$as_me:11074: \$? = $ac_status" >&5
(exit $ac_status); }; then
eval tmp_result$tmp_underscore=yes
else
@@ -11002,7 +11081,7 @@ done
if test $tmp_result_ = yes; then
if test $tmp_result = yes; then
- { { echo "$as_me:11005: error: Test program unexpectedly links both with and without underscore." >&5
+ { { echo "$as_me:11084: 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
@@ -11012,7 +11091,7 @@ else
if test $tmp_result = yes; then
gmp_cv_asm_underscore=no
else
- { { echo "$as_me:11015: error: Test program links neither with nor without underscore." >&5
+ { { echo "$as_me:11094: 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
@@ -11020,7 +11099,7 @@ fi
rm -f conftes1* conftes2* a.out
fi
-echo "$as_me:11023: result: $gmp_cv_asm_underscore" >&5
+echo "$as_me:11102: result: $gmp_cv_asm_underscore" >&5
echo "${ECHO_T}$gmp_cv_asm_underscore" >&6
if test "$gmp_cv_asm_underscore" = "yes"; then
@@ -11032,7 +11111,7 @@ echo 'define(<GSYM_PREFIX>, <>)' >>$gmp_tmpconfigm4
fi
-echo "$as_me:11035: checking how to switch to read-only data section" >&5
+echo "$as_me:11114: 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
@@ -11049,10 +11128,10 @@ EOF
echo "Test program:" >&5
cat conftest.c >&5
gmp_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c >&5"
-if { (eval echo "$as_me:11052: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:11131: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:11055: \$? = $ac_status" >&5
+ echo "$as_me:11134: \$? = $ac_status" >&5
(exit $ac_status); }; then
echo "Compiler output:" >&5
cat conftest.s >&5
@@ -11082,11 +11161,11 @@ if { (eval echo "$as_me:11052: \"$gmp_compile\"") >&5
fi
fi
-echo "$as_me:11085: result: $gmp_cv_asm_rodata" >&5
+echo "$as_me:11164: 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:11089: checking if the export directive needs an attribute" >&5
+ echo "$as_me:11168: 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
@@ -11097,11 +11176,11 @@ else
esac
fi
-echo "$as_me:11100: result: $gmp_cv_asm_globl_attr" >&5
+echo "$as_me:11179: 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:11104: checking how the .type assembly directive should be used" >&5
+ echo "$as_me:11183: checking how the .type assembly directive should be used" >&5
echo $ECHO_N "checking how the .type assembly directive should be used... $ECHO_C" >&6
if test "${gmp_cv_asm_type+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11111,10 +11190,10 @@ else
.type sym,${gmp_tmp_prefix}function
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11114: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11193: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11117: \$? = $ac_status" >&5
+ echo "$as_me:11196: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_type=".type \$1,${gmp_tmp_prefix}\$2"
@@ -11134,11 +11213,11 @@ if test -z "$gmp_cv_asm_type"; then
fi
fi
-echo "$as_me:11137: result: $gmp_cv_asm_type" >&5
+echo "$as_me:11216: 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:11141: checking if the .size assembly directive works" >&5
+ echo "$as_me:11220: checking if the .size assembly directive works" >&5
echo $ECHO_N "checking if the .size assembly directive works... $ECHO_C" >&6
if test "${gmp_cv_asm_size+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11147,10 +11226,10 @@ else
.size sym,1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11150: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11229: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11153: \$? = $ac_status" >&5
+ echo "$as_me:11232: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_size=".size \$1,\$2"
@@ -11163,11 +11242,11 @@ fi
rm -f conftest*
fi
-echo "$as_me:11166: result: $gmp_cv_asm_size" >&5
+echo "$as_me:11245: 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:11170: checking what prefix to use for a local label" >&5
+echo "$as_me:11249: 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
@@ -11182,15 +11261,15 @@ ${gmp_tmp_pre}gurkmacka${gmp_cv_asm_label_suffix}
.byte 0
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11185: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11264: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11188: \$? = $ac_status" >&5
+ echo "$as_me:11267: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
$NM conftest.o >&5 2>&5
if test $? != 0; then
- { echo "$as_me:11193: WARNING: NM failure, using default local label $gmp_cv_asm_lsym_prefix" >&5
+ { echo "$as_me:11272: WARNING: NM failure, using default local label $gmp_cv_asm_lsym_prefix" >&5
echo "$as_me: WARNING: NM failure, using default local label $gmp_cv_asm_lsym_prefix" >&2;}
gmp_found=yes
break
@@ -11211,12 +11290,12 @@ rm -f conftest*
done
rm -f conftest*
if test $gmp_found = no; then
- { echo "$as_me:11214: WARNING: cannot determine local label, using default $gmp_cv_asm_lsym_prefix" >&5
+ { echo "$as_me:11293: 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:11219: result: $gmp_cv_asm_lsym_prefix" >&5
+echo "$as_me:11298: 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
@@ -11224,7 +11303,7 @@ cat >>confdefs.h <<EOF
#define LSYM_PREFIX "$gmp_cv_asm_lsym_prefix"
EOF
-echo "$as_me:11227: checking how to define a 32-bit word" >&5
+echo "$as_me:11306: 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
@@ -11249,10 +11328,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:11252: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11331: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11255: \$? = $ac_status" >&5
+ echo "$as_me:11334: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_tmp_val=`$NM conftest.o | grep foo | \
@@ -11274,17 +11353,17 @@ rm -f conftest*
;;
esac
if test -z "$gmp_cv_asm_w32"; then
- { { echo "$as_me:11277: error: cannot determine how to define a 32-bit word" >&5
+ { { echo "$as_me:11356: 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:11283: result: $gmp_cv_asm_w32" >&5
+echo "$as_me:11362: 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:11287: checking if .align assembly directive is logarithmic" >&5
+echo "$as_me:11366: 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
@@ -11299,10 +11378,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:11302: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11381: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11305: \$? = $ac_status" >&5
+ echo "$as_me:11384: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_tmp_val=`$NM conftest.o | grep foo | \
@@ -11316,14 +11395,14 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:11319: error: cannot assemble alignment test" >&5
+ { { echo "$as_me:11398: 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:11326: result: $gmp_cv_asm_align_log" >&5
+echo "$as_me:11405: 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
@@ -11331,7 +11410,7 @@ echo "define(<ALIGN_LOGARITHMIC>,<$gmp_cv_asm_align_log>)" >> $gmp_tmpconfigm4
case $host in
m68*-*-*)
-echo "$as_me:11334: checking assembler instruction and register style" >&5
+echo "$as_me:11413: 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
@@ -11343,10 +11422,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:11346: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11425: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11349: \$? = $ac_status" >&5
+ echo "$as_me:11428: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_instruction=$i
@@ -11363,14 +11442,14 @@ rm -f conftest*
done
fi
-echo "$as_me:11366: result: $gmp_cv_asm_m68k_instruction" >&5
+echo "$as_me:11445: 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:11373: error: cannot determine assembler instruction and register style" >&5
+*) { { echo "$as_me:11452: 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
@@ -11379,7 +11458,7 @@ echo "define(<WANT_REGISTER_PERCENT>, <\`$want_register_percent'>)" >> $gmp_tmpc
echo "define(<WANT_DOT_SIZE>, <\`$want_dot_size'>)" >> $gmp_tmpconfigm4
-echo "$as_me:11382: checking assembler addressing style" >&5
+echo "$as_me:11461: 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
@@ -11387,14 +11466,14 @@ else
case $gmp_cv_asm_m68k_instruction in
addl*) movel=movel ;;
add.l*) movel=move.l ;;
-*) { { echo "$as_me:11390: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5
+*) { { echo "$as_me:11469: 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:11397: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5
+*) { { echo "$as_me:11476: 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
@@ -11403,10 +11482,10 @@ cat >conftest.s <<EOF
$movel $dreg, $areg@-
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11406: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11485: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11409: \$? = $ac_status" >&5
+ echo "$as_me:11488: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_addressing=mit
@@ -11419,10 +11498,10 @@ else
$movel $dreg, -($areg)
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11422: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11501: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11425: \$? = $ac_status" >&5
+ echo "$as_me:11504: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_addressing=motorola
@@ -11430,7 +11509,7 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:11433: error: cannot determine assembler addressing style" >&5
+ { { echo "$as_me:11512: error: cannot determine assembler addressing style" >&5
echo "$as_me: error: cannot determine assembler addressing style" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -11440,12 +11519,12 @@ fi
rm -f conftest*
fi
-echo "$as_me:11443: result: $gmp_cv_asm_m68k_addressing" >&5
+echo "$as_me:11522: 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:11448: checking assembler shortest branches" >&5
+echo "$as_me:11527: 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
@@ -11458,10 +11537,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:11461: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11540: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11464: \$? = $ac_status" >&5
+ echo "$as_me:11543: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_branches=$i
@@ -11478,10 +11557,10 @@ rm -f conftest*
done
fi
-echo "$as_me:11481: result: $gmp_cv_asm_m68k_branches" >&5
+echo "$as_me:11560: 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:11484: error: cannot determine assembler branching style" >&5
+ { { echo "$as_me:11563: error: cannot determine assembler branching style" >&5
echo "$as_me: error: cannot determine assembler branching style" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -11491,7 +11570,7 @@ echo "define(<WANT_BRANCHES>, <\`$gmp_cv_asm_m68k_branches'>)" >> $gmp_tmpconfig
;;
power*-*-*)
-echo "$as_me:11494: checking if the assembler needs r on registers" >&5
+echo "$as_me:11573: 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
@@ -11501,10 +11580,10 @@ else
mtctr 6
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11504: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11583: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11507: \$? = $ac_status" >&5
+ echo "$as_me:11586: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_powerpc_r_registers=no
@@ -11517,10 +11596,10 @@ else
mtctr r6
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11520: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11599: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11523: \$? = $ac_status" >&5
+ echo "$as_me:11602: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_powerpc_r_registers=yes
@@ -11528,7 +11607,7 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:11531: error: neither \"mtctr 6\" nor \"mtctr r6\" works" >&5
+ { { echo "$as_me:11610: 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
@@ -11538,7 +11617,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:11541: result: $gmp_cv_asm_powerpc_r_registers" >&5
+echo "$as_me:11620: 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
@@ -11557,7 +11636,7 @@ echo "include_mpn(\`powerpc32/aix.m4')" >> $gmp_tmpconfigm4i
i?86*-*-* | k[5-8]*-*-* | pentium*-*-* | athlon-*-*)
-echo "$as_me:11560: checking if the .align directive accepts an 0x90 fill in .text" >&5
+echo "$as_me:11639: 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
@@ -11569,10 +11648,10 @@ else
.align 4, 0x90
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11572: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11651: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11575: \$? = $ac_status" >&5
+ echo "$as_me:11654: \$? = $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
@@ -11590,12 +11669,12 @@ fi
rm -f conftest*
fi
-echo "$as_me:11593: result: $gmp_cv_asm_align_fill_0x90" >&5
+echo "$as_me:11672: 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:11598: checking if the assembler takes cl with shldl" >&5
+echo "$as_me:11677: 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
@@ -11605,10 +11684,10 @@ else
shldl %cl, %eax, %ebx
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11608: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11687: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11611: \$? = $ac_status" >&5
+ echo "$as_me:11690: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_shldl_cl=yes
@@ -11621,7 +11700,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:11624: result: $gmp_cv_asm_x86_shldl_cl" >&5
+echo "$as_me:11703: 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
@@ -11635,7 +11714,7 @@ fi
if test "$enable_profiling" != no; then
-echo "$as_me:11638: checking how to call x86 mcount" >&5
+echo "$as_me:11717: 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();}
@@ -11643,10 +11722,10 @@ EOF
if test "$enable_static" = yes; then
gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c 1>&5"
- if { (eval echo "$as_me:11646: \"$gmp_asmout_compile\"") >&5
+ if { (eval echo "$as_me:11725: \"$gmp_asmout_compile\"") >&5
(eval $gmp_asmout_compile) 2>&5
ac_status=$?
- echo "$as_me:11649: \$? = $ac_status" >&5
+ echo "$as_me:11728: \$? = $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`
@@ -11655,12 +11734,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:11658: error: Cannot find mcount call for non-PIC" >&5
+ { { echo "$as_me:11737: 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:11663: error: Cannot compile test program for non-PIC" >&5
+ { { echo "$as_me:11742: 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
@@ -11668,10 +11747,10 @@ fi
if test "$enable_shared" = yes; then
gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS $ac_cv_prog_cc_pic -S conftest.c 1>&5"
- if { (eval echo "$as_me:11671: \"$gmp_asmout_compile\"") >&5
+ if { (eval echo "$as_me:11750: \"$gmp_asmout_compile\"") >&5
(eval $gmp_asmout_compile) 2>&5
ac_status=$?
- echo "$as_me:11674: \$? = $ac_status" >&5
+ echo "$as_me:11753: \$? = $ac_status" >&5
(exit $ac_status); }; then
if grep '\.data' conftest.s >/dev/null; then
mcount_pic_reg=`sed -n 's/.*GOTOFF.*,\(%[a-z]*\).*$/\1/p' conftest.s`
@@ -11680,12 +11759,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:11683: error: Cannot find mcount call for PIC" >&5
+ { { echo "$as_me:11762: 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:11688: error: Cannot compile test program for PIC" >&5
+ { { echo "$as_me:11767: error: Cannot compile test program for PIC" >&5
echo "$as_me: error: Cannot compile test program for PIC" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -11700,7 +11779,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:11703: result: determined" >&5
+echo "$as_me:11782: result: determined" >&5
echo "${ECHO_T}determined" >&6
fi
@@ -11722,7 +11801,7 @@ for tmp_dir in $path; do
fi
done
if test -z "$gmp_mparam_source"; then
- { { echo "$as_me:11725: error: no version of gmp-mparam.h found in path: $path" >&5
+ { { echo "$as_me:11804: 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
@@ -11741,13 +11820,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:11744: checking for mp_limb_t" >&5
+ echo "$as_me:11823: 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 11750 "configure"
+#line 11829 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11767,16 +11846,16 @@ if (sizeof (mp_limb_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11770: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11849: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11773: \$? = $ac_status" >&5
+ echo "$as_me:11852: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11776: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11855: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11779: \$? = $ac_status" >&5
+ echo "$as_me:11858: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_mp_limb_t=yes
else
@@ -11786,10 +11865,10 @@ ac_cv_type_mp_limb_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:11789: result: $ac_cv_type_mp_limb_t" >&5
+echo "$as_me:11868: result: $ac_cv_type_mp_limb_t" >&5
echo "${ECHO_T}$ac_cv_type_mp_limb_t" >&6
-echo "$as_me:11792: checking size of mp_limb_t" >&5
+echo "$as_me:11871: 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
@@ -11798,7 +11877,7 @@ else
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 11801 "configure"
+#line 11880 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11815,21 +11894,21 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= 0)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11818: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11897: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11821: \$? = $ac_status" >&5
+ echo "$as_me:11900: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11824: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11903: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11827: \$? = $ac_status" >&5
+ echo "$as_me:11906: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 11832 "configure"
+#line 11911 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11846,16 +11925,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11849: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11928: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11852: \$? = $ac_status" >&5
+ echo "$as_me:11931: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11855: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11934: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11858: \$? = $ac_status" >&5
+ echo "$as_me:11937: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -11871,7 +11950,7 @@ cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 11874 "configure"
+#line 11953 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11888,16 +11967,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11891: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11970: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11894: \$? = $ac_status" >&5
+ echo "$as_me:11973: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11897: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11976: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11900: \$? = $ac_status" >&5
+ echo "$as_me:11979: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -11913,7 +11992,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 11916 "configure"
+#line 11995 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11930,16 +12009,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11933: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12012: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11936: \$? = $ac_status" >&5
+ echo "$as_me:12015: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11939: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12018: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11942: \$? = $ac_status" >&5
+ echo "$as_me:12021: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -11952,12 +12031,12 @@ done
ac_cv_sizeof_mp_limb_t=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:11955: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:12034: 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 11960 "configure"
+#line 12039 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11978,15 +12057,15 @@ fclose (f);
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:11981: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12060: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:11984: \$? = $ac_status" >&5
+ echo "$as_me:12063: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:11986: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12065: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11989: \$? = $ac_status" >&5
+ echo "$as_me:12068: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_mp_limb_t=`cat conftest.val`
else
@@ -12002,14 +12081,14 @@ else
ac_cv_sizeof_mp_limb_t=0
fi
fi
-echo "$as_me:12005: result: $ac_cv_sizeof_mp_limb_t" >&5
+echo "$as_me:12084: 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:12012: error: some sort of compiler problem, mp_limb_t doesn't seem to work" >&5
+ { { echo "$as_me:12091: 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
@@ -12030,13 +12109,13 @@ if grep "^#define BITS_PER_ULONG" $gmp_mparam_source >/dev/null; then : ;
else
case $limb_chosen in
longlong)
- echo "$as_me:12033: checking for unsigned long" >&5
+ echo "$as_me:12112: 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 12039 "configure"
+#line 12118 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12051,16 +12130,16 @@ if (sizeof (unsigned long))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12054: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12133: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12057: \$? = $ac_status" >&5
+ echo "$as_me:12136: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12060: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12139: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12063: \$? = $ac_status" >&5
+ echo "$as_me:12142: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_unsigned_long=yes
else
@@ -12070,10 +12149,10 @@ ac_cv_type_unsigned_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:12073: result: $ac_cv_type_unsigned_long" >&5
+echo "$as_me:12152: result: $ac_cv_type_unsigned_long" >&5
echo "${ECHO_T}$ac_cv_type_unsigned_long" >&6
-echo "$as_me:12076: checking size of unsigned long" >&5
+echo "$as_me:12155: 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
@@ -12082,7 +12161,7 @@ else
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 12085 "configure"
+#line 12164 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12094,21 +12173,21 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= 0)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12097: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12176: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12100: \$? = $ac_status" >&5
+ echo "$as_me:12179: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12103: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12182: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12106: \$? = $ac_status" >&5
+ echo "$as_me:12185: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 12111 "configure"
+#line 12190 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12120,16 +12199,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12123: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12202: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12126: \$? = $ac_status" >&5
+ echo "$as_me:12205: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12129: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12208: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12132: \$? = $ac_status" >&5
+ echo "$as_me:12211: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -12145,7 +12224,7 @@ cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 12148 "configure"
+#line 12227 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12157,16 +12236,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12160: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12239: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12163: \$? = $ac_status" >&5
+ echo "$as_me:12242: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12166: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12245: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12169: \$? = $ac_status" >&5
+ echo "$as_me:12248: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -12182,7 +12261,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 12185 "configure"
+#line 12264 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12194,16 +12273,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12197: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12276: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12200: \$? = $ac_status" >&5
+ echo "$as_me:12279: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12203: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12282: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12206: \$? = $ac_status" >&5
+ echo "$as_me:12285: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -12216,12 +12295,12 @@ done
ac_cv_sizeof_unsigned_long=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:12219: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:12298: 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 12224 "configure"
+#line 12303 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12237,15 +12316,15 @@ fclose (f);
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:12240: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12319: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:12243: \$? = $ac_status" >&5
+ echo "$as_me:12322: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:12245: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12324: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12248: \$? = $ac_status" >&5
+ echo "$as_me:12327: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_unsigned_long=`cat conftest.val`
else
@@ -12261,7 +12340,7 @@ else
ac_cv_sizeof_unsigned_long=0
fi
fi
-echo "$as_me:12264: result: $ac_cv_sizeof_unsigned_long" >&5
+echo "$as_me:12343: 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
@@ -12443,7 +12522,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:12446: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:12525: creating $CONFIG_STATUS" >&5
echo "$as_me: creating $CONFIG_STATUS" >&6;}
cat >$CONFIG_STATUS <<_ACEOF
#! $SHELL
@@ -12622,7 +12701,7 @@ cat >>$CONFIG_STATUS <<\EOF
echo "$ac_cs_version"; exit 0 ;;
--he | --h)
# Conflict between --help and --header
- { { echo "$as_me:12625: error: ambiguous option: $1
+ { { echo "$as_me:12704: 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;}
@@ -12641,7 +12720,7 @@ Try \`$0 --help' for more information." >&2;}
ac_need_defaults=false;;
# This is an error.
- -*) { { echo "$as_me:12644: error: unrecognized option: $1
+ -*) { { echo "$as_me:12723: 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;}
@@ -12715,7 +12794,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:12718: error: invalid argument: $ac_config_target" >&5
+ *) { { echo "$as_me:12797: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
@@ -12835,6 +12914,8 @@ s,@WANT_MPBSD_FALSE@,$WANT_MPBSD_FALSE,;t t
s,@WANT_MPFR_TRUE@,$WANT_MPFR_TRUE,;t t
s,@WANT_MPFR_FALSE@,$WANT_MPFR_FALSE,;t t
s,@ABI@,$ABI,;t t
+s,@__GMP_HAVE_HOST_CPU_FAMILY_power@,$__GMP_HAVE_HOST_CPU_FAMILY_power,;t t
+s,@__GMP_HAVE_HOST_CPU_FAMILY_powerpc@,$__GMP_HAVE_HOST_CPU_FAMILY_powerpc,;t t
s,@GMP_LDFLAGS@,$GMP_LDFLAGS,;t t
s,@SPEED_CYCLECOUNTER_OBJ@,$SPEED_CYCLECOUNTER_OBJ,;t t
s,@CALLING_CONVENTIONS_OBJS@,$CALLING_CONVENTIONS_OBJS,;t t
@@ -12994,7 +13075,7 @@ done; }
esac
if test x"$ac_file" != x-; then
- { echo "$as_me:12997: creating $ac_file" >&5
+ { echo "$as_me:13078: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
rm -f "$ac_file"
fi
@@ -13012,7 +13093,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:13015: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:13096: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -13025,7 +13106,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:13028: error: cannot find input file: $f" >&5
+ { { echo "$as_me:13109: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -13086,7 +13167,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:13089: creating $ac_file" >&5
+ test x"$ac_file" != x- && { echo "$as_me:13170: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
# First look for the input files in the build tree, otherwise in the
@@ -13097,7 +13178,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:13100: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:13181: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -13110,7 +13191,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:13113: error: cannot find input file: $f" >&5
+ { { echo "$as_me:13194: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -13227,7 +13308,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:13230: $ac_file is unchanged" >&5
+ { echo "$as_me:13311: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
@@ -13284,11 +13365,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:13287: linking $srcdir/$ac_source to $ac_dest" >&5
+ { echo "$as_me:13368: 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:13291: error: $srcdir/$ac_source: File not found" >&5
+ { { echo "$as_me:13372: error: $srcdir/$ac_source: File not found" >&5
echo "$as_me: error: $srcdir/$ac_source: File not found" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -13338,7 +13419,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:13341: error: cannot link $ac_dest to $srcdir/$ac_source" >&5
+ { { echo "$as_me:13422: 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