summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aclocal.m435
-rw-r--r--config.in3
-rwxr-xr-xconfigure540
3 files changed, 311 insertions, 267 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index a1b795b21..eee85297b 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1907,14 +1907,29 @@ BEGIN {
exit
}
- if (got[15] == "000" && \
- got[14] == "000" && \
+ # ARM style little endian but with the two 4-byte halves swapped
+ if (got[8] == "064" && \
+ got[9] == "157" && \
+ got[10] == "235" && \
+ got[11] == "301" && \
+ got[12] == "000" && \
got[13] == "000" && \
- got[12] == "124" && \
- got[11] == "064" && \
- got[10] == "157" && \
+ got[14] == "000" && \
+ got[15] == "124")
+ {
+ print "IEEE little endian, swapped halves"
+ found = 1
+ exit
+ }
+
+ if (got[8] == "301" && \
got[9] == "235" && \
- got[8] == "301")
+ got[10] == "157" && \
+ got[11] == "064" && \
+ got[12] == "124" && \
+ got[13] == "000" && \
+ got[14] == "000" && \
+ got[15] == "000")
{
print "IEEE big endian"
found = 1
@@ -1986,11 +2001,15 @@ fi
case $gmp_cv_c_double_format in
"IEEE big endian")
AC_DEFINE(HAVE_DOUBLE_IEEE_BIG_ENDIAN, 1,
- [Define if `double' is IEEE format, big endian])
+ [Define if `double' is IEEE format, big endian])
;;
"IEEE little endian")
AC_DEFINE(HAVE_DOUBLE_IEEE_LITTLE_ENDIAN, 1,
- [Define if `double' is IEEE format, little endian])
+ [Define if `double' is IEEE format, little endian])
+ ;;
+ "IEEE little endian, swapped halves")
+ AC_DEFINE(HAVE_DOUBLE_IEEE_LITTLE_SWAPPED, 1,
+ [Define if `double' is IEEE format, little endian, with halves swapped])
;;
"VAX D")
AC_DEFINE(HAVE_DOUBLE_VAX_D, 1, [Define if `double' is VAX D format])
diff --git a/config.in b/config.in
index dbe08de99..62d9f9650 100644
--- a/config.in
+++ b/config.in
@@ -232,6 +232,9 @@ MA 02111-1307, USA. */
/* Define if `double' is IEEE format, little endian */
#undef HAVE_DOUBLE_IEEE_LITTLE_ENDIAN
+/* Define if `double' is IEEE format, little endian, with halves swapped */
+#undef HAVE_DOUBLE_IEEE_LITTLE_SWAPPED
+
/* Define if `double' is VAX D format */
#undef HAVE_DOUBLE_VAX_D
diff --git a/configure b/configure
index c0bd819b6..660da8b65 100755
--- a/configure
+++ b/configure
@@ -18393,14 +18393,29 @@ BEGIN {
exit
}
- if (got[15] == "000" && \
- got[14] == "000" && \
+ # ARM style little endian but with the two 4-byte halves swapped
+ if (got[8] == "064" && \
+ got[9] == "157" && \
+ got[10] == "235" && \
+ got[11] == "301" && \
+ got[12] == "000" && \
got[13] == "000" && \
- got[12] == "124" && \
- got[11] == "064" && \
- got[10] == "157" && \
+ got[14] == "000" && \
+ got[15] == "124")
+ {
+ print "IEEE little endian, swapped halves"
+ found = 1
+ exit
+ }
+
+ if (got[8] == "301" && \
got[9] == "235" && \
- got[8] == "301")
+ got[10] == "157" && \
+ got[11] == "064" && \
+ got[12] == "124" && \
+ got[13] == "000" && \
+ got[14] == "000" && \
+ got[15] == "000")
{
print "IEEE big endian"
found = 1
@@ -18465,12 +18480,12 @@ EOF
;;
esac
else
- { echo "$as_me:18468: WARNING: oops, cannot compile test program" >&5
+ { echo "$as_me:18483: WARNING: oops, cannot compile test program" >&5
echo "$as_me: WARNING: oops, cannot compile test program" >&2;}
fi
fi
-echo "$as_me:18473: result: $gmp_cv_c_double_format" >&5
+echo "$as_me:18488: result: $gmp_cv_c_double_format" >&5
echo "${ECHO_T}$gmp_cv_c_double_format" >&6
case $gmp_cv_c_double_format in
@@ -18488,6 +18503,13 @@ cat >>confdefs.h <<\EOF
EOF
;;
+ "IEEE little endian, swapped halves")
+
+cat >>confdefs.h <<\EOF
+#define HAVE_DOUBLE_IEEE_LITTLE_SWAPPED 1
+EOF
+
+ ;;
"VAX D")
cat >>confdefs.h <<\EOF
@@ -18512,7 +18534,7 @@ EOF
unknown*)
;;
*)
- { echo "$as_me:18515: WARNING: oops, unrecognised float format: $gmp_cv_c_double_format" >&5
+ { echo "$as_me:18537: WARNING: oops, unrecognised float format: $gmp_cv_c_double_format" >&5
echo "$as_me: WARNING: oops, unrecognised float format: $gmp_cv_c_double_format" >&2;}
;;
esac
@@ -18552,13 +18574,13 @@ esac
for ac_func in alarm clock clock_gettime cputime getpagesize getrusage gettimeofday localeconv memset mmap mprotect obstack_vprintf popen processor_info read_real_time sigaction sigaltstack sigstack strchr strnlen strtoul sysconf sysctl sysctlbyname times
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:18555: checking for $ac_func" >&5
+echo "$as_me:18577: 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 18561 "configure"
+#line 18583 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -18589,16 +18611,16 @@ f = $ac_func;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18592: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18614: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:18595: \$? = $ac_status" >&5
+ echo "$as_me:18617: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:18598: \"$ac_try\"") >&5
+ { (eval echo "$as_me:18620: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:18601: \$? = $ac_status" >&5
+ echo "$as_me:18623: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -18608,7 +18630,7 @@ eval "$as_ac_var=no"
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:18611: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:18633: 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
@@ -18621,13 +18643,13 @@ done
# FIXME: Would have done this with an AM_CONDITIONAL, but automake 1.5
# doesn't like that under libgmp_la_DEPENDENCIES.
-echo "$as_me:18624: checking for vsnprintf" >&5
+echo "$as_me:18646: 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 18630 "configure"
+#line 18652 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char vsnprintf (); below. */
@@ -18658,16 +18680,16 @@ f = vsnprintf;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18661: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18683: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:18664: \$? = $ac_status" >&5
+ echo "$as_me:18686: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:18667: \"$ac_try\"") >&5
+ { (eval echo "$as_me:18689: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:18670: \$? = $ac_status" >&5
+ echo "$as_me:18692: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_vsnprintf=yes
else
@@ -18677,7 +18699,7 @@ ac_cv_func_vsnprintf=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:18680: result: $ac_cv_func_vsnprintf" >&5
+echo "$as_me:18702: 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
@@ -18688,7 +18710,7 @@ fi
if test "$gmp_vsnprintf_exists" = no; then
gmp_cv_func_vsnprintf=no
else
- echo "$as_me:18691: checking whether vsnprintf works" >&5
+ echo "$as_me:18713: 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
@@ -18699,7 +18721,7 @@ else
gmp_cv_func_vsnprintf=probably; break
else
cat >conftest.$ac_ext <<_ACEOF
-#line 18702 "configure"
+#line 18724 "configure"
#include "confdefs.h"
#include <string.h> /* for strcmp */
@@ -18752,15 +18774,15 @@ $i
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:18755: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18777: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:18758: \$? = $ac_status" >&5
+ echo "$as_me:18780: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:18760: \"$ac_try\"") >&5
+ { (eval echo "$as_me:18782: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:18763: \$? = $ac_status" >&5
+ echo "$as_me:18785: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -18774,10 +18796,10 @@ fi
done
fi
-echo "$as_me:18777: result: $gmp_cv_func_vsnprintf" >&5
+echo "$as_me:18799: 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:18780: WARNING: cannot check for properly working vsnprintf when cross compiling, will assume it's ok" >&5
+ { echo "$as_me:18802: 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
@@ -18796,7 +18818,7 @@ if test "$gmp_cv_func_vsnprintf" = no; then
fi
-echo "$as_me:18799: checking whether sscanf needs writable input" >&5
+echo "$as_me:18821: checking whether sscanf needs writable input" >&5
echo $ECHO_N "checking whether sscanf needs writable input... $ECHO_C" >&6
if test "${gmp_cv_func_sscanf_writable_input+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -18808,7 +18830,7 @@ else
esac
fi
-echo "$as_me:18811: result: $gmp_cv_func_sscanf_writable_input" >&5
+echo "$as_me:18833: result: $gmp_cv_func_sscanf_writable_input" >&5
echo "${ECHO_T}$gmp_cv_func_sscanf_writable_input" >&6
case $gmp_cv_func_sscanf_writable_input in
yes)
@@ -18817,7 +18839,7 @@ cat >>confdefs.h <<\EOF
EOF
;;
no) ;;
- *) { { echo "$as_me:18820: error: unrecognised \$gmp_cv_func_sscanf_writable_input" >&5
+ *) { { echo "$as_me:18842: error: unrecognised \$gmp_cv_func_sscanf_writable_input" >&5
echo "$as_me: error: unrecognised \$gmp_cv_func_sscanf_writable_input" >&2;}
{ (exit 1); exit 1; }; } ;;
esac
@@ -18947,7 +18969,7 @@ EOF
fi
done
if test $found = no; then
- { { echo "$as_me:18950: error: no version of $tmp_fn found in path: $path" >&5
+ { { echo "$as_me:18972: 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
@@ -18962,7 +18984,7 @@ fi
# Don't demand an m4 unless it's actually needed.
if test $found_asm = yes; then
-echo "$as_me:18965: checking for suitable m4" >&5
+echo "$as_me:18987: 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
@@ -18998,7 +19020,7 @@ EOF
done
IFS="$ac_save_ifs"
if test -z "$gmp_cv_prog_m4"; then
- { { echo "$as_me:19001: error: No usable m4 in \$PATH or /usr/5bin (see config.log for reasons)." >&5
+ { { echo "$as_me:19023: 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
@@ -19006,11 +19028,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:19009: result: $gmp_cv_prog_m4" >&5
+echo "$as_me:19031: result: $gmp_cv_prog_m4" >&5
echo "${ECHO_T}$gmp_cv_prog_m4" >&6
M4="$gmp_cv_prog_m4"
-echo "$as_me:19013: checking if m4wrap produces spurious output" >&5
+echo "$as_me:19035: 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
@@ -19032,7 +19054,7 @@ else
fi
fi
-echo "$as_me:19035: result: $gmp_cv_m4_m4wrap_spurious" >&5
+echo "$as_me:19057: 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
@@ -19047,7 +19069,7 @@ if test $found_asm = no && test $found_S = no; then
fi
if test "$gmp_asm_syntax_testing" != no; then
- echo "$as_me:19050: checking how to switch to text section" >&5
+ echo "$as_me:19072: 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
@@ -19059,11 +19081,11 @@ else
esac
fi
-echo "$as_me:19062: result: $gmp_cv_asm_text" >&5
+echo "$as_me:19084: 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:19066: checking how to switch to data section" >&5
+ echo "$as_me:19088: 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
@@ -19074,11 +19096,11 @@ else
esac
fi
-echo "$as_me:19077: result: $gmp_cv_asm_data" >&5
+echo "$as_me:19099: 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:19081: checking what assembly label suffix to use" >&5
+ echo "$as_me:19103: 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
@@ -19090,11 +19112,11 @@ else
esac
fi
-echo "$as_me:19093: result: $gmp_cv_asm_label_suffix" >&5
+echo "$as_me:19115: 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:19097: checking how to export a symbol" >&5
+ echo "$as_me:19119: 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
@@ -19105,11 +19127,11 @@ else
esac
fi
-echo "$as_me:19108: result: $gmp_cv_asm_globl" >&5
+echo "$as_me:19130: 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:19112: checking if globals are prefixed by underscore" >&5
+echo "$as_me:19134: 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
@@ -19135,10 +19157,10 @@ EOF
;;
esac
gmp_compile="$CC $CFLAGS $CPPFLAGS -c conftes1.c >&5 && $CCAS $CFLAGS conftes2.s >&5 && $CC $CFLAGS conftes1.$OBJEXT conftes2.$OBJEXT >&5"
- if { (eval echo "$as_me:19138: \"$gmp_compile\"") >&5
+ if { (eval echo "$as_me:19160: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:19141: \$? = $ac_status" >&5
+ echo "$as_me:19163: \$? = $ac_status" >&5
(exit $ac_status); }; then
eval tmp_result$tmp_underscore=yes
else
@@ -19148,7 +19170,7 @@ done
if test $tmp_result_ = yes; then
if test $tmp_result = yes; then
- { { echo "$as_me:19151: error: Test program unexpectedly links both with and without underscore." >&5
+ { { echo "$as_me:19173: 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
@@ -19158,7 +19180,7 @@ else
if test $tmp_result = yes; then
gmp_cv_asm_underscore=no
else
- { { echo "$as_me:19161: error: Test program links neither with nor without underscore." >&5
+ { { echo "$as_me:19183: 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
@@ -19166,7 +19188,7 @@ fi
rm -f conftes1* conftes2* a.out
fi
-echo "$as_me:19169: result: $gmp_cv_asm_underscore" >&5
+echo "$as_me:19191: result: $gmp_cv_asm_underscore" >&5
echo "${ECHO_T}$gmp_cv_asm_underscore" >&6
if test "$gmp_cv_asm_underscore" = "yes"; then
@@ -19178,7 +19200,7 @@ echo 'define(<GSYM_PREFIX>, <>)' >>$gmp_tmpconfigm4
fi
-echo "$as_me:19181: checking how to switch to read-only data section" >&5
+echo "$as_me:19203: 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
@@ -19195,10 +19217,10 @@ EOF
echo "Test program:" >&5
cat conftest.c >&5
gmp_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c >&5"
-if { (eval echo "$as_me:19198: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:19220: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:19201: \$? = $ac_status" >&5
+ echo "$as_me:19223: \$? = $ac_status" >&5
(exit $ac_status); }; then
echo "Compiler output:" >&5
cat conftest.s >&5
@@ -19228,11 +19250,11 @@ if { (eval echo "$as_me:19198: \"$gmp_compile\"") >&5
fi
fi
-echo "$as_me:19231: result: $gmp_cv_asm_rodata" >&5
+echo "$as_me:19253: 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:19235: checking if the export directive needs an attribute" >&5
+ echo "$as_me:19257: 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
@@ -19243,11 +19265,11 @@ else
esac
fi
-echo "$as_me:19246: result: $gmp_cv_asm_globl_attr" >&5
+echo "$as_me:19268: 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:19250: checking for assembler .type directive" >&5
+ echo "$as_me:19272: checking for assembler .type directive" >&5
echo $ECHO_N "checking for assembler .type directive... $ECHO_C" >&6
if test "${gmp_cv_asm_type+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -19258,10 +19280,10 @@ for gmp_tmp_prefix in @ \# %; do
.type sym,${gmp_tmp_prefix}function
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19261: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19283: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19264: \$? = $ac_status" >&5
+ echo "$as_me:19286: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
if grep "\.type pseudo-op used outside of \.def/\.endef ignored" conftest.out >/dev/null; then : ;
@@ -19281,11 +19303,11 @@ done
rm -f conftest*
fi
-echo "$as_me:19284: result: $gmp_cv_asm_type" >&5
+echo "$as_me:19306: 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:19288: checking for assembler .size directive" >&5
+ echo "$as_me:19310: checking for assembler .size directive" >&5
echo $ECHO_N "checking for assembler .size directive... $ECHO_C" >&6
if test "${gmp_cv_asm_size+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -19295,10 +19317,10 @@ cat >conftest.s <<EOF
.size sym,1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19298: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19320: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19301: \$? = $ac_status" >&5
+ echo "$as_me:19323: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
if grep "\.size pseudo-op used outside of \.def/\.endef ignored" conftest.out >/dev/null; then : ;
@@ -19314,11 +19336,11 @@ fi
rm -f conftest*
fi
-echo "$as_me:19317: result: $gmp_cv_asm_size" >&5
+echo "$as_me:19339: 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:19321: checking what prefix to use for a local label" >&5
+echo "$as_me:19343: 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
@@ -19330,15 +19352,15 @@ dummy${gmp_cv_asm_label_suffix}
${gmp_tmp_pre}gurkmacka${gmp_cv_asm_label_suffix}
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19333: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19355: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19336: \$? = $ac_status" >&5
+ echo "$as_me:19358: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
if $NM conftest.$OBJEXT >conftest.nm 2>&5; then : ; else
cat conftest.nm >&5
- { echo "$as_me:19341: WARNING: \"$NM\" failure" >&5
+ { echo "$as_me:19363: WARNING: \"$NM\" failure" >&5
echo "$as_me: WARNING: \"$NM\" failure" >&2;}
break
fi
@@ -19367,12 +19389,12 @@ done
rm -f conftest*
if test -z "$gmp_cv_asm_lsym_prefix"; then
gmp_cv_asm_lsym_prefix=L
- { echo "$as_me:19370: WARNING: cannot determine local label, using default $gmp_cv_asm_lsym_prefix" >&5
+ { echo "$as_me:19392: 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:19375: result: $gmp_cv_asm_lsym_prefix" >&5
+echo "$as_me:19397: 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
@@ -19380,7 +19402,7 @@ cat >>confdefs.h <<EOF
#define LSYM_PREFIX "$gmp_cv_asm_lsym_prefix"
EOF
-echo "$as_me:19383: checking how to define a 32-bit word" >&5
+echo "$as_me:19405: 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
@@ -19405,10 +19427,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:19408: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19430: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19411: \$? = $ac_status" >&5
+ echo "$as_me:19433: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_tmp_val=`$NM conftest.$OBJEXT | grep foo | \
@@ -19430,17 +19452,17 @@ rm -f conftest*
;;
esac
if test -z "$gmp_cv_asm_w32"; then
- { { echo "$as_me:19433: error: cannot determine how to define a 32-bit word" >&5
+ { { echo "$as_me:19455: 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:19439: result: $gmp_cv_asm_w32" >&5
+echo "$as_me:19461: 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:19443: checking if .align assembly directive is logarithmic" >&5
+echo "$as_me:19465: 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
@@ -19455,10 +19477,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:19458: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19480: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19461: \$? = $ac_status" >&5
+ echo "$as_me:19483: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_tmp_val=`$NM conftest.$OBJEXT | grep foo | \
@@ -19472,14 +19494,14 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:19475: error: cannot assemble alignment test" >&5
+ { { echo "$as_me:19497: 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:19482: result: $gmp_cv_asm_align_log" >&5
+echo "$as_me:19504: 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
@@ -19487,7 +19509,7 @@ echo "define(<ALIGN_LOGARITHMIC>,<$gmp_cv_asm_align_log>)" >> $gmp_tmpconfigm4
case $host in
m68*-*-*)
-echo "$as_me:19490: checking assembler instruction and register style" >&5
+echo "$as_me:19512: 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
@@ -19499,10 +19521,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:19502: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19524: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19505: \$? = $ac_status" >&5
+ echo "$as_me:19527: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_instruction=$i
@@ -19519,14 +19541,14 @@ rm -f conftest*
done
fi
-echo "$as_me:19522: result: $gmp_cv_asm_m68k_instruction" >&5
+echo "$as_me:19544: 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:19529: error: cannot determine assembler instruction and register style" >&5
+*) { { echo "$as_me:19551: 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
@@ -19535,7 +19557,7 @@ echo "define(<WANT_REGISTER_PERCENT>, <\`$want_register_percent'>)" >> $gmp_tmpc
echo "define(<WANT_DOT_SIZE>, <\`$want_dot_size'>)" >> $gmp_tmpconfigm4
-echo "$as_me:19538: checking assembler addressing style" >&5
+echo "$as_me:19560: 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
@@ -19543,14 +19565,14 @@ else
case $gmp_cv_asm_m68k_instruction in
addl*) movel=movel ;;
add.l*) movel=move.l ;;
-*) { { echo "$as_me:19546: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5
+*) { { echo "$as_me:19568: 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:19553: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5
+*) { { echo "$as_me:19575: 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
@@ -19559,10 +19581,10 @@ cat >conftest.s <<EOF
$movel $dreg, $areg@-
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19562: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19584: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19565: \$? = $ac_status" >&5
+ echo "$as_me:19587: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_addressing=mit
@@ -19575,10 +19597,10 @@ else
$movel $dreg, -($areg)
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19578: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19600: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19581: \$? = $ac_status" >&5
+ echo "$as_me:19603: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_addressing=motorola
@@ -19586,7 +19608,7 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:19589: error: cannot determine assembler addressing style" >&5
+ { { echo "$as_me:19611: error: cannot determine assembler addressing style" >&5
echo "$as_me: error: cannot determine assembler addressing style" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -19596,12 +19618,12 @@ fi
rm -f conftest*
fi
-echo "$as_me:19599: result: $gmp_cv_asm_m68k_addressing" >&5
+echo "$as_me:19621: 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:19604: checking assembler shortest branches" >&5
+echo "$as_me:19626: 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
@@ -19614,10 +19636,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:19617: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19639: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19620: \$? = $ac_status" >&5
+ echo "$as_me:19642: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_branches=$i
@@ -19634,10 +19656,10 @@ rm -f conftest*
done
fi
-echo "$as_me:19637: result: $gmp_cv_asm_m68k_branches" >&5
+echo "$as_me:19659: 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:19640: error: cannot determine assembler branching style" >&5
+ { { echo "$as_me:19662: error: cannot determine assembler branching style" >&5
echo "$as_me: error: cannot determine assembler branching style" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -19647,7 +19669,7 @@ echo "define(<WANT_BRANCHES>, <\`$gmp_cv_asm_m68k_branches'>)" >> $gmp_tmpconfig
;;
powerpc*-*-*)
-echo "$as_me:19650: checking if the assembler needs r on registers" >&5
+echo "$as_me:19672: 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
@@ -19657,10 +19679,10 @@ else
mtctr 6
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19660: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19682: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19663: \$? = $ac_status" >&5
+ echo "$as_me:19685: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_powerpc_r_registers=no
@@ -19673,10 +19695,10 @@ else
mtctr r6
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19676: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19698: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19679: \$? = $ac_status" >&5
+ echo "$as_me:19701: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_powerpc_r_registers=yes
@@ -19684,7 +19706,7 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:19687: error: neither \"mtctr 6\" nor \"mtctr r6\" works" >&5
+ { { echo "$as_me:19709: 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
@@ -19694,7 +19716,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:19697: result: $gmp_cv_asm_powerpc_r_registers" >&5
+echo "$as_me:19719: 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
@@ -19721,7 +19743,7 @@ echo "include_mpn(\`powerpc32/aix.m4')" >> $gmp_tmpconfigm4i
;;
i?86*-*-* | k[5-8]*-*-* | pentium*-*-* | athlon-*-*)
-echo "$as_me:19724: checking if the .align directive accepts an 0x90 fill in .text" >&5
+echo "$as_me:19746: 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
@@ -19733,10 +19755,10 @@ else
.align 4, 0x90
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19736: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19758: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19739: \$? = $ac_status" >&5
+ echo "$as_me:19761: \$? = $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
@@ -19754,12 +19776,12 @@ fi
rm -f conftest*
fi
-echo "$as_me:19757: result: $gmp_cv_asm_align_fill_0x90" >&5
+echo "$as_me:19779: 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:19762: checking if the assembler takes cl with shldl" >&5
+echo "$as_me:19784: 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
@@ -19769,10 +19791,10 @@ else
shldl %cl, %eax, %ebx
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:19772: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:19794: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:19775: \$? = $ac_status" >&5
+ echo "$as_me:19797: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_shldl_cl=yes
@@ -19785,7 +19807,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:19788: result: $gmp_cv_asm_x86_shldl_cl" >&5
+echo "$as_me:19810: 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
@@ -19799,7 +19821,7 @@ fi
if test "$enable_profiling" != no; then
-echo "$as_me:19802: checking how to call x86 mcount" >&5
+echo "$as_me:19824: 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();}
@@ -19807,10 +19829,10 @@ EOF
if test "$enable_static" = yes; then
gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c 1>&5"
- if { (eval echo "$as_me:19810: \"$gmp_asmout_compile\"") >&5
+ if { (eval echo "$as_me:19832: \"$gmp_asmout_compile\"") >&5
(eval $gmp_asmout_compile) 2>&5
ac_status=$?
- echo "$as_me:19813: \$? = $ac_status" >&5
+ echo "$as_me:19835: \$? = $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`
@@ -19819,12 +19841,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:19822: error: Cannot find mcount call for non-PIC" >&5
+ { { echo "$as_me:19844: 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:19827: error: Cannot compile test program for non-PIC" >&5
+ { { echo "$as_me:19849: 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
@@ -19832,10 +19854,10 @@ fi
if test "$enable_shared" = yes; then
gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS $lt_prog_compiler_pic -S conftest.c 1>&5"
- if { (eval echo "$as_me:19835: \"$gmp_asmout_compile\"") >&5
+ if { (eval echo "$as_me:19857: \"$gmp_asmout_compile\"") >&5
(eval $gmp_asmout_compile) 2>&5
ac_status=$?
- echo "$as_me:19838: \$? = $ac_status" >&5
+ echo "$as_me:19860: \$? = $ac_status" >&5
(exit $ac_status); }; then
if grep '\.data' conftest.s >/dev/null; then
case $lt_prog_compiler_pic in
@@ -19852,12 +19874,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:19855: error: Cannot find mcount call for PIC" >&5
+ { { echo "$as_me:19877: 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:19860: error: Cannot compile test program for PIC" >&5
+ { { echo "$as_me:19882: error: Cannot compile test program for PIC" >&5
echo "$as_me: error: Cannot compile test program for PIC" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -19872,7 +19894,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:19875: result: determined" >&5
+echo "$as_me:19897: result: determined" >&5
echo "${ECHO_T}determined" >&6
fi
@@ -19894,7 +19916,7 @@ for gmp_mparam_dir in $path; do
fi
done
if test -z "$gmp_mparam_source"; then
- { { echo "$as_me:19897: error: no version of gmp-mparam.h found in path: $path" >&5
+ { { echo "$as_me:19919: 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
@@ -19926,13 +19948,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:19929: checking for mp_limb_t" >&5
+ echo "$as_me:19951: 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 19935 "configure"
+#line 19957 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -19952,16 +19974,16 @@ if (sizeof (mp_limb_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:19955: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:19977: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:19958: \$? = $ac_status" >&5
+ echo "$as_me:19980: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:19961: \"$ac_try\"") >&5
+ { (eval echo "$as_me:19983: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:19964: \$? = $ac_status" >&5
+ echo "$as_me:19986: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_mp_limb_t=yes
else
@@ -19971,10 +19993,10 @@ ac_cv_type_mp_limb_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:19974: result: $ac_cv_type_mp_limb_t" >&5
+echo "$as_me:19996: result: $ac_cv_type_mp_limb_t" >&5
echo "${ECHO_T}$ac_cv_type_mp_limb_t" >&6
-echo "$as_me:19977: checking size of mp_limb_t" >&5
+echo "$as_me:19999: 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
@@ -19983,7 +20005,7 @@ else
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 19986 "configure"
+#line 20008 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -20000,21 +20022,21 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= 0)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20003: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20025: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20006: \$? = $ac_status" >&5
+ echo "$as_me:20028: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20009: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20031: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20012: \$? = $ac_status" >&5
+ echo "$as_me:20034: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 20017 "configure"
+#line 20039 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -20031,16 +20053,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20034: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20056: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20037: \$? = $ac_status" >&5
+ echo "$as_me:20059: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20040: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20062: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20043: \$? = $ac_status" >&5
+ echo "$as_me:20065: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -20056,7 +20078,7 @@ cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 20059 "configure"
+#line 20081 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -20073,16 +20095,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20076: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20098: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20079: \$? = $ac_status" >&5
+ echo "$as_me:20101: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20082: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20104: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20085: \$? = $ac_status" >&5
+ echo "$as_me:20107: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -20098,7 +20120,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 20101 "configure"
+#line 20123 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -20115,16 +20137,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20118: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20140: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20121: \$? = $ac_status" >&5
+ echo "$as_me:20143: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20124: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20146: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20127: \$? = $ac_status" >&5
+ echo "$as_me:20149: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -20137,12 +20159,12 @@ done
ac_cv_sizeof_mp_limb_t=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:20140: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:20162: 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 20145 "configure"
+#line 20167 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -20163,15 +20185,15 @@ fclose (f);
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:20166: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20188: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20169: \$? = $ac_status" >&5
+ echo "$as_me:20191: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:20171: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20193: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20174: \$? = $ac_status" >&5
+ echo "$as_me:20196: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_mp_limb_t=`cat conftest.val`
else
@@ -20187,14 +20209,14 @@ else
ac_cv_sizeof_mp_limb_t=0
fi
fi
-echo "$as_me:20190: result: $ac_cv_sizeof_mp_limb_t" >&5
+echo "$as_me:20212: 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:20197: error: some sort of compiler problem, mp_limb_t doesn't seem to work" >&5
+ { { echo "$as_me:20219: 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
@@ -20215,13 +20237,13 @@ if grep "^#define BITS_PER_ULONG" $gmp_mparam_source >/dev/null; then : ;
else
case $limb_chosen in
longlong)
- echo "$as_me:20218: checking for unsigned long" >&5
+ echo "$as_me:20240: 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 20224 "configure"
+#line 20246 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -20236,16 +20258,16 @@ if (sizeof (unsigned long))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20239: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20261: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20242: \$? = $ac_status" >&5
+ echo "$as_me:20264: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20245: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20267: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20248: \$? = $ac_status" >&5
+ echo "$as_me:20270: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_unsigned_long=yes
else
@@ -20255,10 +20277,10 @@ ac_cv_type_unsigned_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:20258: result: $ac_cv_type_unsigned_long" >&5
+echo "$as_me:20280: result: $ac_cv_type_unsigned_long" >&5
echo "${ECHO_T}$ac_cv_type_unsigned_long" >&6
-echo "$as_me:20261: checking size of unsigned long" >&5
+echo "$as_me:20283: 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
@@ -20267,7 +20289,7 @@ else
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 20270 "configure"
+#line 20292 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -20279,21 +20301,21 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= 0)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20282: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20304: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20285: \$? = $ac_status" >&5
+ echo "$as_me:20307: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20288: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20310: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20291: \$? = $ac_status" >&5
+ echo "$as_me:20313: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 20296 "configure"
+#line 20318 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -20305,16 +20327,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20308: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20330: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20311: \$? = $ac_status" >&5
+ echo "$as_me:20333: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20314: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20336: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20317: \$? = $ac_status" >&5
+ echo "$as_me:20339: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -20330,7 +20352,7 @@ cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 20333 "configure"
+#line 20355 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -20342,16 +20364,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20345: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20367: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20348: \$? = $ac_status" >&5
+ echo "$as_me:20370: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20351: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20373: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20354: \$? = $ac_status" >&5
+ echo "$as_me:20376: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -20367,7 +20389,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 20370 "configure"
+#line 20392 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -20379,16 +20401,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:20382: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:20404: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:20385: \$? = $ac_status" >&5
+ echo "$as_me:20407: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:20388: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20410: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20391: \$? = $ac_status" >&5
+ echo "$as_me:20413: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -20401,12 +20423,12 @@ done
ac_cv_sizeof_unsigned_long=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:20404: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:20426: 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 20409 "configure"
+#line 20431 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -20422,15 +20444,15 @@ fclose (f);
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:20425: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20447: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20428: \$? = $ac_status" >&5
+ echo "$as_me:20450: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:20430: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20452: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20433: \$? = $ac_status" >&5
+ echo "$as_me:20455: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_unsigned_long=`cat conftest.val`
else
@@ -20446,7 +20468,7 @@ else
ac_cv_sizeof_unsigned_long=0
fi
fi
-echo "$as_me:20449: result: $ac_cv_sizeof_unsigned_long" >&5
+echo "$as_me:20471: 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
@@ -20499,13 +20521,13 @@ if test $enable_mpfr = yes; then
for ac_func in __setfpucw
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:20502: checking for $ac_func" >&5
+echo "$as_me:20524: 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 20508 "configure"
+#line 20530 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -20536,16 +20558,16 @@ f = $ac_func;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20539: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20561: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20542: \$? = $ac_status" >&5
+ echo "$as_me:20564: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:20545: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20567: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20548: \$? = $ac_status" >&5
+ echo "$as_me:20570: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -20555,7 +20577,7 @@ eval "$as_ac_var=no"
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:20558: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:20580: 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
@@ -20668,7 +20690,7 @@ ac_config_files="$ac_config_files demos/calc/calc-config.h:demos/calc/calc-confi
use_readline=$with_readline
if test $with_readline = detect; then
- echo "$as_me:20671: checking for readline in -lreadline" >&5
+ echo "$as_me:20693: checking for readline in -lreadline" >&5
echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6
if test "${ac_cv_lib_readline_readline+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20676,7 +20698,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lreadline $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 20679 "configure"
+#line 20701 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -20695,16 +20717,16 @@ readline ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20698: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20720: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20701: \$? = $ac_status" >&5
+ echo "$as_me:20723: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:20704: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20726: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20707: \$? = $ac_status" >&5
+ echo "$as_me:20729: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_readline_readline=yes
else
@@ -20715,7 +20737,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:20718: result: $ac_cv_lib_readline_readline" >&5
+echo "$as_me:20740: result: $ac_cv_lib_readline_readline" >&5
echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6
if test $ac_cv_lib_readline_readline = yes; then
use_readline=yes
@@ -20734,7 +20756,7 @@ for ac_prog in 'bison -y' byacc
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:20737: checking for $ac_word" >&5
+echo "$as_me:20759: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_YACC+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20749,7 +20771,7 @@ for ac_dir in $ac_dummy; do
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_YACC="$ac_prog"
-echo "$as_me:20752: found $ac_dir/$ac_word" >&5
+echo "$as_me:20774: found $ac_dir/$ac_word" >&5
break
done
@@ -20757,10 +20779,10 @@ fi
fi
YACC=$ac_cv_prog_YACC
if test -n "$YACC"; then
- echo "$as_me:20760: result: $YACC" >&5
+ echo "$as_me:20782: result: $YACC" >&5
echo "${ECHO_T}$YACC" >&6
else
- echo "$as_me:20763: result: no" >&5
+ echo "$as_me:20785: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -20772,7 +20794,7 @@ for ac_prog in flex lex
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
-echo "$as_me:20775: checking for $ac_word" >&5
+echo "$as_me:20797: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_LEX+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20787,7 +20809,7 @@ for ac_dir in $ac_dummy; do
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_LEX="$ac_prog"
-echo "$as_me:20790: found $ac_dir/$ac_word" >&5
+echo "$as_me:20812: found $ac_dir/$ac_word" >&5
break
done
@@ -20795,10 +20817,10 @@ fi
fi
LEX=$ac_cv_prog_LEX
if test -n "$LEX"; then
- echo "$as_me:20798: result: $LEX" >&5
+ echo "$as_me:20820: result: $LEX" >&5
echo "${ECHO_T}$LEX" >&6
else
- echo "$as_me:20801: result: no" >&5
+ echo "$as_me:20823: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -20808,7 +20830,7 @@ test -n "$LEX" || LEX=":"
if test -z "$LEXLIB"
then
- echo "$as_me:20811: checking for yywrap in -lfl" >&5
+ echo "$as_me:20833: checking for yywrap in -lfl" >&5
echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6
if test "${ac_cv_lib_fl_yywrap+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20816,7 +20838,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lfl $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 20819 "configure"
+#line 20841 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -20835,16 +20857,16 @@ yywrap ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20838: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20860: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20841: \$? = $ac_status" >&5
+ echo "$as_me:20863: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:20844: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20866: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20847: \$? = $ac_status" >&5
+ echo "$as_me:20869: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_fl_yywrap=yes
else
@@ -20855,12 +20877,12 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:20858: result: $ac_cv_lib_fl_yywrap" >&5
+echo "$as_me:20880: result: $ac_cv_lib_fl_yywrap" >&5
echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6
if test $ac_cv_lib_fl_yywrap = yes; then
LEXLIB="-lfl"
else
- echo "$as_me:20863: checking for yywrap in -ll" >&5
+ echo "$as_me:20885: checking for yywrap in -ll" >&5
echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6
if test "${ac_cv_lib_l_yywrap+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20868,7 +20890,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ll $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 20871 "configure"
+#line 20893 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -20887,16 +20909,16 @@ yywrap ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20890: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20912: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20893: \$? = $ac_status" >&5
+ echo "$as_me:20915: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:20896: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20918: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20899: \$? = $ac_status" >&5
+ echo "$as_me:20921: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_l_yywrap=yes
else
@@ -20907,7 +20929,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:20910: result: $ac_cv_lib_l_yywrap" >&5
+echo "$as_me:20932: result: $ac_cv_lib_l_yywrap" >&5
echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6
if test $ac_cv_lib_l_yywrap = yes; then
LEXLIB="-ll"
@@ -20918,7 +20940,7 @@ fi
fi
if test "x$LEX" != "x:"; then
- echo "$as_me:20921: checking lex output file root" >&5
+ echo "$as_me:20943: checking lex output file root" >&5
echo $ECHO_N "checking lex output file root... $ECHO_C" >&6
if test "${ac_cv_prog_lex_root+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20932,16 +20954,16 @@ if test -f lex.yy.c; then
elif test -f lexyy.c; then
ac_cv_prog_lex_root=lexyy
else
- { { echo "$as_me:20935: error: cannot find output from $LEX; giving up" >&5
+ { { echo "$as_me:20957: error: cannot find output from $LEX; giving up" >&5
echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
{ (exit 1); exit 1; }; }
fi
fi
-echo "$as_me:20940: result: $ac_cv_prog_lex_root" >&5
+echo "$as_me:20962: result: $ac_cv_prog_lex_root" >&5
echo "${ECHO_T}$ac_cv_prog_lex_root" >&6
LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
-echo "$as_me:20944: checking whether yytext is a pointer" >&5
+echo "$as_me:20966: checking whether yytext is a pointer" >&5
echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6
if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -20957,16 +20979,16 @@ cat >conftest.$ac_ext <<_ACEOF
`cat $LEX_OUTPUT_ROOT.c`
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:20960: \"$ac_link\"") >&5
+if { (eval echo "$as_me:20982: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:20963: \$? = $ac_status" >&5
+ echo "$as_me:20985: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:20966: \"$ac_try\"") >&5
+ { (eval echo "$as_me:20988: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:20969: \$? = $ac_status" >&5
+ echo "$as_me:20991: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_lex_yytext_pointer=yes
else
@@ -20978,7 +21000,7 @@ LIBS=$ac_save_LIBS
rm -f "${LEX_OUTPUT_ROOT}.c"
fi
-echo "$as_me:20981: result: $ac_cv_prog_lex_yytext_pointer" >&5
+echo "$as_me:21003: result: $ac_cv_prog_lex_yytext_pointer" >&5
echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6
if test $ac_cv_prog_lex_yytext_pointer = yes; then
@@ -21112,7 +21134,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:21115: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:21137: creating $CONFIG_STATUS" >&5
echo "$as_me: creating $CONFIG_STATUS" >&6;}
cat >$CONFIG_STATUS <<_ACEOF
#! $SHELL
@@ -21291,7 +21313,7 @@ cat >>$CONFIG_STATUS <<\EOF
echo "$ac_cs_version"; exit 0 ;;
--he | --h)
# Conflict between --help and --header
- { { echo "$as_me:21294: error: ambiguous option: $1
+ { { echo "$as_me:21316: 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;}
@@ -21310,7 +21332,7 @@ Try \`$0 --help' for more information." >&2;}
ac_need_defaults=false;;
# This is an error.
- -*) { { echo "$as_me:21313: error: unrecognized option: $1
+ -*) { { echo "$as_me:21335: 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;}
@@ -21389,7 +21411,7 @@ do
"gmp-mparam.h" ) CONFIG_LINKS="$CONFIG_LINKS gmp-mparam.h:mpn/$gmp_mparam_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:21392: error: invalid argument: $ac_config_target" >&5
+ *) { { echo "$as_me:21414: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
@@ -21692,7 +21714,7 @@ done; }
esac
if test x"$ac_file" != x-; then
- { echo "$as_me:21695: creating $ac_file" >&5
+ { echo "$as_me:21717: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
rm -f "$ac_file"
fi
@@ -21710,7 +21732,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:21713: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:21735: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -21723,7 +21745,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:21726: error: cannot find input file: $f" >&5
+ { { echo "$as_me:21748: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -21784,7 +21806,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:21787: creating $ac_file" >&5
+ test x"$ac_file" != x- && { echo "$as_me:21809: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
# First look for the input files in the build tree, otherwise in the
@@ -21795,7 +21817,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:21798: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:21820: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -21808,7 +21830,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:21811: error: cannot find input file: $f" >&5
+ { { echo "$as_me:21833: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -21925,7 +21947,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:21928: $ac_file is unchanged" >&5
+ { echo "$as_me:21950: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
@@ -21982,11 +22004,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:21985: linking $srcdir/$ac_source to $ac_dest" >&5
+ { echo "$as_me:22007: 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:21989: error: $srcdir/$ac_source: File not found" >&5
+ { { echo "$as_me:22011: error: $srcdir/$ac_source: File not found" >&5
echo "$as_me: error: $srcdir/$ac_source: File not found" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -22036,7 +22058,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:22039: error: cannot link $ac_dest to $srcdir/$ac_source" >&5
+ { { echo "$as_me:22061: 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