summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.in81
-rw-r--r--aclocal.m439
-rw-r--r--config.in3
-rwxr-xr-xconfigure2297
-rw-r--r--cxx/Makefile.in5
-rw-r--r--demos/Makefile.in1
-rw-r--r--demos/calc/Makefile.in1
-rw-r--r--demos/expr/Makefile.in1
-rw-r--r--mpbsd/Makefile.in1
-rw-r--r--mpf/Makefile.in1
-rw-r--r--mpfr/Makefile.in1
-rw-r--r--mpfr/tests/Makefile.in1
-rw-r--r--mpn/Makefile.in1
-rw-r--r--mpq/Makefile.in1
-rw-r--r--mpz/Makefile.in1
-rw-r--r--printf/Makefile.in37
-rw-r--r--tests/Makefile.in1
-rw-r--r--tests/devel/Makefile.in1
-rw-r--r--tests/mpbsd/Makefile.in1
-rw-r--r--tests/mpf/Makefile.in1
-rw-r--r--tests/mpn/Makefile.in1
-rw-r--r--tests/mpq/Makefile.in1
-rw-r--r--tests/mpz/Makefile.in1
-rw-r--r--tests/printf/Makefile.in1
-rw-r--r--tests/rand/Makefile.in1
-rw-r--r--tune/Makefile.in1
26 files changed, 1541 insertions, 941 deletions
diff --git a/Makefile.in b/Makefile.in
index 4fab88982..03f2e7702 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -46,13 +46,13 @@
# Do this separately for libgmp and libmp, and only for releases.
#
# GMP -version-info
-# release libgmp libmp
-# 2.0.x - -
-# 3.0 3:0:0 3:0:0
-# 3.0.1 3:1:0 3:0:0
-# 3.1 4:0:1 4:0:1
-# 3.1.1 4:1:1 4:1:1
-# 3.2 5:0:2 4:2:1
+# release libgmp libgmpxx libmp
+# 2.0.x - - -
+# 3.0 3:0:0 - 3:0:0
+# 3.0.1 3:1:0 - 3:0:0
+# 3.1 4:0:1 - 4:0:1
+# 3.1.1 4:1:1 - 4:1:1
+# 4.0 5:0:2 3:0:0 4:2:1
#
# Starting at 3:0:0 is a slight abuse of the versioning system, but it
# ensures we're past soname libgmp.so.2, which was used on Debian GNU/Linux
@@ -113,6 +113,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
@@ -153,6 +154,10 @@ LIBGMP_LT_CURRENT = 5
LIBGMP_LT_REVISION = 0
LIBGMP_LT_AGE = 2
+LIBGMPXX_LT_CURRENT = 3
+LIBGMPXX_LT_REVISION = 0
+LIBGMPXX_LT_AGE = 0
+
LIBMP_LT_CURRENT = 4
LIBMP_LT_REVISION = 2
LIBMP_LT_AGE = 1
@@ -169,10 +174,10 @@ AUTOMAKE_OPTIONS = gnu check-news no-dependencies ansi2knr
# "tests" ahead of "mpfr" ensures tests/t-constants is run before the
# mpfr/tests programs.
#
-SUBDIRS = tests mpn mpz mpq mpf printf mpbsd $(MPFR_DIR) demos tune
+SUBDIRS = tests mpn mpz mpq mpf printf cxx mpbsd $(MPFR_DIR) demos tune
nodist_include_HEADERS = gmp.h $(MPBSD_HEADERS_OPTION)
-lib_LTLIBRARIES = libgmp.la $(MPBSD_LTLIBRARIES_OPTION)
+lib_LTLIBRARIES = libgmp.la $(GMPXX_LTLIBRARIES_OPTION) $(MPBSD_LTLIBRARIES_OPTION)
EXTRA_DIST = doc macos \
configfsf.guess configfsf.sub .gdbinit INSTALL.autoconf libmp.sym
@@ -269,7 +274,7 @@ MPQ_OBJECTS = mpq/abs$U.lo mpq/aors$U.lo \
MPN_OBJECTS = @mpn_objs_in_libgmp@
PRINTF_OBJECTS = \
- printf/asprintf$U.lo \
+ printf/asprintf$U.lo printf/asprntffuns$U.lo \
printf/doprnt$U.lo printf/doprntf$U.lo printf/doprnti$U.lo \
printf/fprintf$U.lo \
printf/obprintf$U.lo printf/obvprintf$U.lo printf/obprntffuns$U.lo \
@@ -280,6 +285,10 @@ PRINTF_OBJECTS = \
printf/vsnprintf$U.lo printf/vsprintf$U.lo
+CXX_OBJECTS = \
+ cxx/osdoprnti$U.lo cxx/osmpf$U.lo cxx/osmpq$U.lo cxx/osmpz$U.lo
+
+
MPBSD_OBJECTS = mpbsd/add$U.lo mpbsd/tdiv_qr$U.lo mpbsd/set$U.lo \
mpbsd/powm$U.lo mpbsd/sub$U.lo mpbsd/cmp$U.lo mpbsd/mfree$U.lo \
mpbsd/mtox$U.lo mpbsd/realloc$U.lo mpbsd/gcd$U.lo mpbsd/itom$U.lo \
@@ -315,6 +324,18 @@ libgmp_la_LDFLAGS = $(GMP_LDFLAGS) \
+# We need at least one .cc file in $(libgmpxx_la_SOURCES) so automake will
+# use $(CXXLINK) rather than the plain C $(LINK). cxx/osfuns.cc is an
+# arbitrary choice for that.
+@WANT_CXX_TRUE@GMPXX_LTLIBRARIES_OPTION = libgmpxx.la
+libgmpxx_la_SOURCES = cxx/osfuns.cc
+libgmpxx_la_DEPENDENCIES = $(CXX_OBJECTS)
+libgmpxx_la_LIBADD = $(libgmpxx_la_DEPENDENCIES) libgmp.la
+libgmpxx_la_LDFLAGS = $(GMP_LDFLAGS) \
+ -version-info $(LIBGMPXX_LT_CURRENT):$(LIBGMPXX_LT_REVISION):$(LIBGMPXX_LT_AGE)
+
+
+
# The selected mpz objects here support mpz/powm.c (built as mpbsd/powm.lo)
# and can probably be removed when that switches to an mpn implementation.
# (Apart from mpz/n_pow_ui$U.lo, which supports mpbsd/rpow.c)
@@ -362,6 +383,8 @@ am_libgmp_la_OBJECTS = assert$U.lo compat$U.lo errno$U.lo \
randclr$U.lo randlc$U.lo randlc2x$U.lo randraw$U.lo rands$U.lo \
randsd$U.lo randsdui$U.lo version$U.lo
libgmp_la_OBJECTS = $(am_libgmp_la_OBJECTS)
+am_libgmpxx_la_OBJECTS = osfuns.lo
+libgmpxx_la_OBJECTS = $(am_libgmpxx_la_OBJECTS)
am_libmp_la_OBJECTS = assert$U.lo errno$U.lo memory$U.lo mp_bpl$U.lo \
mp_clz_tab$U.lo mp_minv_tab$U.lo mp_set_fns$U.lo
libmp_la_OBJECTS = $(am_libmp_la_OBJECTS)
@@ -380,8 +403,17 @@ CCLD = $(CC)
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
CFLAGS = @CFLAGS@
+CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+ $(AM_CXXFLAGS) $(CXXFLAGS)
+CXXLD = $(CXX)
+CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
+CXXFLAGS = @CXXFLAGS@
DIST_SOURCES = $(libdummy_la_SOURCES) $(libgmp_la_SOURCES) \
- $(libmp_la_SOURCES)
+ $(libgmpxx_la_SOURCES) $(libmp_la_SOURCES)
INFO_DEPS = gmp.info
DVIS = gmp.dvi
TEXINFOS = gmp.texi
@@ -398,14 +430,14 @@ DIST_COMMON = README $(gmp_TEXINFOS) ./stamp-h.in AUTHORS COPYING \
config.guess config.in config.sub configure configure.in \
gmp-h.in install-sh ltmain.sh mdate-sh missing mkinstalldirs \
mp-h.in stamp-vti texinfo.tex version.texi
-DIST_SUBDIRS = tests mpn mpz mpq mpf printf mpbsd mpfr demos tune
-SOURCES = $(libdummy_la_SOURCES) $(libgmp_la_SOURCES) $(libmp_la_SOURCES)
+DIST_SUBDIRS = tests mpn mpz mpq mpf printf cxx mpbsd mpfr demos tune
+SOURCES = $(libdummy_la_SOURCES) $(libgmp_la_SOURCES) $(libgmpxx_la_SOURCES) $(libmp_la_SOURCES)
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
.SUFFIXES:
-.SUFFIXES: .c .dvi .info .lo .o .obj .ps .texi
+.SUFFIXES: .c .cc .dvi .info .lo .o .obj .ps .texi
mostlyclean-libtool:
-rm -f *.lo
@@ -482,6 +514,9 @@ libdummy.la: $(libdummy_la_OBJECTS) $(libdummy_la_DEPENDENCIES)
$(LINK) $(libdummy_la_LDFLAGS) $(libdummy_la_OBJECTS) $(libdummy_la_LIBADD) $(LIBS)
libgmp.la: $(libgmp_la_OBJECTS) $(libgmp_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libgmp_la_LDFLAGS) $(libgmp_la_OBJECTS) $(libgmp_la_LIBADD) $(LIBS)
+osfuns.lo: cxx/osfuns.cc
+libgmpxx.la: $(libgmpxx_la_OBJECTS) $(libgmpxx_la_DEPENDENCIES)
+ $(CXXLINK) -rpath $(libdir) $(libgmpxx_la_LDFLAGS) $(libgmpxx_la_OBJECTS) $(libgmpxx_la_LIBADD) $(LIBS)
libmp.la: $(libmp_la_OBJECTS) $(libmp_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libmp_la_LDFLAGS) $(libmp_la_OBJECTS) $(libmp_la_LIBADD) $(LIBS)
@@ -567,6 +602,24 @@ stack-alloc_.$(OBJEXT) stack-alloc_.lo tal-debug_.$(OBJEXT) \
tal-debug_.lo tal-reent_.$(OBJEXT) tal-reent_.lo version_.$(OBJEXT) \
version_.lo : $(ANSI2KNR)
+.cc.o:
+ $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
+
+.cc.obj:
+ $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
+
+.cc.lo:
+ $(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
+
+osfuns.o: cxx/osfuns.cc
+ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o osfuns.o `test -f cxx/osfuns.cc || echo '$(srcdir)/'`cxx/osfuns.cc
+
+osfuns.obj: cxx/osfuns.cc
+ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o osfuns.obj `cygpath -w cxx/osfuns.cc`
+
+osfuns.lo: cxx/osfuns.cc
+ $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o osfuns.lo `test -f cxx/osfuns.cc || echo '$(srcdir)/'`cxx/osfuns.cc
+
$(srcdir)/version.texi: @MAINTAINER_MODE_TRUE@ $(srcdir)/stamp-vti
@:
$(srcdir)/stamp-vti: gmp.texi $(top_srcdir)/configure.in
diff --git a/aclocal.m4 b/aclocal.m4
index c16e315c9..7b7dac20d 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -312,13 +312,13 @@ void *f() { return g(); }
int main () { return 0; }
EOF
-gmp_compile="$1 conftest.c >&AC_FD_CC"
+gmp_compile="$1 conftest.c -o conftest >&AC_FD_CC"
if AC_TRY_EVAL(gmp_compile); then
- rm -f conftest* a.out
+ rm -f conftest*
AC_MSG_RESULT(yes)
ifelse([$2],,:,[$2])
else
- rm -f conftest* a.out
+ rm -f conftest*
AC_MSG_RESULT(no)
ifelse([$3],,:,[$3])
fi
@@ -557,6 +557,39 @@ fi
])
+dnl GMP_PROG_CXX_WORKS(cxx/cxxflags [, ACTION-YES [,ACTION-NO]])
+dnl ------------------------------------------------------------
+dnl Check whether cxx/cxxflags can compile and link.
+dnl
+dnl This test is designed to be run repeatedly with different cxx/cxxflags
+dnl selections, so the result is not cached.
+
+AC_DEFUN(GMP_PROG_CXX_WORKS,
+[AC_MSG_CHECKING([C++ compiler $1])
+cat >conftest.cc <<EOF
+#include <iostream.h>
+int
+main (void)
+{
+ cout.setf (ios::hex);
+ cout << 123;
+ return 0;
+}
+EOF
+
+gmp_cxxcompile="$1 conftest.cc -o conftest"
+if AC_TRY_EVAL(gmp_cxxcompile); then
+ rm -f conftest*
+ AC_MSG_RESULT(yes)
+ ifelse([$2],,:,[$2])
+else
+ rm -f conftest*
+ AC_MSG_RESULT(no)
+ ifelse([$3],,:,[$3])
+fi
+])
+
+
dnl GMP_INIT([M4-DEF-FILE])
dnl -----------------------
dnl Initializations for GMP config.m4 generation.
diff --git a/config.in b/config.in
index df9422fdd..42915e325 100644
--- a/config.in
+++ b/config.in
@@ -351,6 +351,9 @@ MA 02111-1307, USA. */
/* ./configure --enable-assert option, to enable some ASSERT()s */
#undef WANT_ASSERT
+/* Define if C++ support is wanted */
+#undef WANT_CXX
+
/* ./configure --enable-fft option, to enable FFTs for multiplication */
#undef WANT_FFT
diff --git a/configure b/configure
index bdadfc037..0746bb6ec 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.321 .
+# From configure.in Revision: 1.324 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by Autoconf 2.52.
#
@@ -753,6 +753,14 @@ ac_env_CPP_set=${CPP+set}
ac_env_CPP_value=$CPP
ac_cv_env_CPP_set=${CPP+set}
ac_cv_env_CPP_value=$CPP
+ac_env_CXX_set=${CXX+set}
+ac_env_CXX_value=$CXX
+ac_cv_env_CXX_set=${CXX+set}
+ac_cv_env_CXX_value=$CXX
+ac_env_CXXFLAGS_set=${CXXFLAGS+set}
+ac_env_CXXFLAGS_value=$CXXFLAGS
+ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set}
+ac_cv_env_CXXFLAGS_value=$CXXFLAGS
ac_env_M4_set=${M4+set}
ac_env_M4_value=$M4
ac_cv_env_M4_set=${M4+set}
@@ -842,6 +850,7 @@ Optional Features:
(and sometimes confusing) to the casual installer
--enable-assert enable ASSERT checking default=no
--enable-alloca how to get temp memory default=reentrant
+ --enable-cxx enable C++ support default=detect
--enable-fft enable FFTs for multiplication default=no
--enable-mpbsd build Berkley MP compatibility library default=no
--enable-mpfr build MPFR default=no
@@ -866,6 +875,8 @@ Some influential environment variables:
CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
headers in a nonstandard directory <include dir>
CPP C preprocessor
+ CXX C++ compiler command
+ CXXFLAGS C++ compiler flags
M4 m4 macro processor
Use these variables to override the choices made by `configure' or to help
@@ -1051,7 +1062,7 @@ if test -z "$CONFIG_SITE"; then
fi
for ac_site_file in $CONFIG_SITE; do
if test -r "$ac_site_file"; then
- { echo "$as_me:1054: loading site script $ac_site_file" >&5
+ { echo "$as_me:1065: loading site script $ac_site_file" >&5
echo "$as_me: loading site script $ac_site_file" >&6;}
cat "$ac_site_file" >&5
. "$ac_site_file"
@@ -1062,7 +1073,7 @@ if test -r "$cache_file"; then
# Some versions of bash will fail to source /dev/null (special
# files actually), so we avoid doing that.
if test -f "$cache_file"; then
- { echo "$as_me:1065: loading cache $cache_file" >&5
+ { echo "$as_me:1076: loading cache $cache_file" >&5
echo "$as_me: loading cache $cache_file" >&6;}
case $cache_file in
[\\/]* | ?:[\\/]* ) . $cache_file;;
@@ -1070,7 +1081,7 @@ echo "$as_me: loading cache $cache_file" >&6;}
esac
fi
else
- { echo "$as_me:1073: creating cache $cache_file" >&5
+ { echo "$as_me:1084: creating cache $cache_file" >&5
echo "$as_me: creating cache $cache_file" >&6;}
>$cache_file
fi
@@ -1086,21 +1097,21 @@ for ac_var in `(set) 2>&1 |
eval ac_new_val="\$ac_env_${ac_var}_value"
case $ac_old_set,$ac_new_set in
set,)
- { echo "$as_me:1089: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+ { echo "$as_me:1100: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
ac_cache_corrupted=: ;;
,set)
- { echo "$as_me:1093: error: \`$ac_var' was not set in the previous run" >&5
+ { echo "$as_me:1104: error: \`$ac_var' was not set in the previous run" >&5
echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
ac_cache_corrupted=: ;;
,);;
*)
if test "x$ac_old_val" != "x$ac_new_val"; then
- { echo "$as_me:1099: error: \`$ac_var' has changed since the previous run:" >&5
+ { echo "$as_me:1110: error: \`$ac_var' has changed since the previous run:" >&5
echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
- { echo "$as_me:1101: former value: $ac_old_val" >&5
+ { echo "$as_me:1112: former value: $ac_old_val" >&5
echo "$as_me: former value: $ac_old_val" >&2;}
- { echo "$as_me:1103: current value: $ac_new_val" >&5
+ { echo "$as_me:1114: current value: $ac_new_val" >&5
echo "$as_me: current value: $ac_new_val" >&2;}
ac_cache_corrupted=:
fi;;
@@ -1119,9 +1130,9 @@ echo "$as_me: current value: $ac_new_val" >&2;}
fi
done
if $ac_cache_corrupted; then
- { echo "$as_me:1122: error: changes in the environment can compromise the build" >&5
+ { echo "$as_me:1133: error: changes in the environment can compromise the build" >&5
echo "$as_me: error: changes in the environment can compromise the build" >&2;}
- { { echo "$as_me:1124: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
+ { { echo "$as_me:1135: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -1141,10 +1152,10 @@ esac
echo "#! $SHELL" >conftest.sh
echo "exit 0" >>conftest.sh
chmod +x conftest.sh
-if { (echo "$as_me:1144: PATH=\".;.\"; conftest.sh") >&5
+if { (echo "$as_me:1155: PATH=\".;.\"; conftest.sh") >&5
(PATH=".;."; conftest.sh) 2>&5
ac_status=$?
- echo "$as_me:1147: \$? = $ac_status" >&5
+ echo "$as_me:1158: \$? = $ac_status" >&5
(exit $ac_status); }; then
ac_path_separator=';'
else
@@ -1159,7 +1170,7 @@ rm -f conftest.sh
# "athlon-pc-freebsd3.5".
#
if test -n "$target_alias" && test "$target_alias" != "$host_alias"; then
- { { echo "$as_me:1162: error: --target is not appropriate for GMP
+ { { echo "$as_me:1173: error: --target is not appropriate for GMP
Use --build=CPU-VENDOR-OS if you need to specify your CPU and/or system
explicitly. Use --host if cross-compiling (see \"Installing GMP\" in the
manual for more on this)." >&5
@@ -1205,7 +1216,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
fi
done
if test -z "$ac_aux_dir"; then
- { { echo "$as_me:1208: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
+ { { echo "$as_me:1219: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -1215,11 +1226,11 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
# Make sure we can run config.sub.
$ac_config_sub sun4 >/dev/null 2>&1 ||
- { { echo "$as_me:1218: error: cannot run $ac_config_sub" >&5
+ { { echo "$as_me:1229: error: cannot run $ac_config_sub" >&5
echo "$as_me: error: cannot run $ac_config_sub" >&2;}
{ (exit 1); exit 1; }; }
-echo "$as_me:1222: checking build system type" >&5
+echo "$as_me:1233: checking build system type" >&5
echo $ECHO_N "checking build system type... $ECHO_C" >&6
if test "${ac_cv_build+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1228,23 +1239,23 @@ else
test -z "$ac_cv_build_alias" &&
ac_cv_build_alias=`$ac_config_guess`
test -z "$ac_cv_build_alias" &&
- { { echo "$as_me:1231: error: cannot guess build type; you must specify one" >&5
+ { { echo "$as_me:1242: error: cannot guess build type; you must specify one" >&5
echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
{ (exit 1); exit 1; }; }
ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
- { { echo "$as_me:1235: error: $ac_config_sub $ac_cv_build_alias failed." >&5
+ { { echo "$as_me:1246: error: $ac_config_sub $ac_cv_build_alias failed." >&5
echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
{ (exit 1); exit 1; }; }
fi
-echo "$as_me:1240: result: $ac_cv_build" >&5
+echo "$as_me:1251: result: $ac_cv_build" >&5
echo "${ECHO_T}$ac_cv_build" >&6
build=$ac_cv_build
build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
-echo "$as_me:1247: checking host system type" >&5
+echo "$as_me:1258: checking host system type" >&5
echo $ECHO_N "checking host system type... $ECHO_C" >&6
if test "${ac_cv_host+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1253,12 +1264,12 @@ else
test -z "$ac_cv_host_alias" &&
ac_cv_host_alias=$ac_cv_build_alias
ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
- { { echo "$as_me:1256: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+ { { echo "$as_me:1267: error: $ac_config_sub $ac_cv_host_alias failed" >&5
echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
{ (exit 1); exit 1; }; }
fi
-echo "$as_me:1261: result: $ac_cv_host" >&5
+echo "$as_me:1272: result: $ac_cv_host" >&5
echo "${ECHO_T}$ac_cv_host" >&6
host=$ac_cv_host
host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
@@ -1284,7 +1295,7 @@ echo "define_not_for_expansion(\`HAVE_HOST_CPU_$tmp_host')" >> $gmp_tmpconfigm4p
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
# ./install, which can be erroneously created by make from ./install.sh.
-echo "$as_me:1287: checking for a BSD compatible install" >&5
+echo "$as_me:1298: checking for a BSD compatible install" >&5
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
if test -z "$INSTALL"; then
if test "${ac_cv_path_install+set}" = set; then
@@ -1333,7 +1344,7 @@ fi
INSTALL=$ac_install_sh
fi
fi
-echo "$as_me:1336: result: $INSTALL" >&5
+echo "$as_me:1347: result: $INSTALL" >&5
echo "${ECHO_T}$INSTALL" >&6
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
@@ -1344,7 +1355,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-echo "$as_me:1347: checking whether build environment is sane" >&5
+echo "$as_me:1358: checking whether build environment is sane" >&5
echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
# Just in case
sleep 1
@@ -1368,7 +1379,7 @@ if (
# if, for instance, CONFIG_SHELL is bash and it inherits a
# broken ls alias from the environment. This has actually
# happened. Such a system could not be considered "sane".
- { { echo "$as_me:1371: error: ls -t appears to fail. Make sure there is not a broken
+ { { echo "$as_me:1382: error: ls -t appears to fail. Make sure there is not a broken
alias in your environment" >&5
echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
alias in your environment" >&2;}
@@ -1381,13 +1392,13 @@ then
# Ok.
:
else
- { { echo "$as_me:1384: error: newly created file is older than distributed files!
+ { { echo "$as_me:1395: error: newly created file is older than distributed files!
Check your system clock" >&5
echo "$as_me: error: newly created file is older than distributed files!
Check your system clock" >&2;}
{ (exit 1); exit 1; }; }
fi
-echo "$as_me:1390: result: yes" >&5
+echo "$as_me:1401: result: yes" >&5
echo "${ECHO_T}yes" >&6
test "$program_prefix" != NONE &&
program_transform_name="s,^,$program_prefix,;$program_transform_name"
@@ -1412,7 +1423,7 @@ if eval "$MISSING --run true"; then
else
am_missing_run=
am_backtick='`'
- { echo "$as_me:1415: WARNING: ${am_backtick}missing' script is too old or missing" >&5
+ { echo "$as_me:1426: WARNING: ${am_backtick}missing' script is too old or missing" >&5
echo "$as_me: WARNING: ${am_backtick}missing' script is too old or missing" >&2;}
fi
@@ -1420,7 +1431,7 @@ for ac_prog in mawk gawk nawk awk
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:1423: checking for $ac_word" >&5
+echo "$as_me:1434: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_AWK+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1435,7 +1446,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_AWK="$ac_prog"
-echo "$as_me:1438: found $ac_dir/$ac_word" >&5
+echo "$as_me:1449: found $ac_dir/$ac_word" >&5
break
done
@@ -1443,17 +1454,17 @@ fi
fi
AWK=$ac_cv_prog_AWK
if test -n "$AWK"; then
- echo "$as_me:1446: result: $AWK" >&5
+ echo "$as_me:1457: result: $AWK" >&5
echo "${ECHO_T}$AWK" >&6
else
- echo "$as_me:1449: result: no" >&5
+ echo "$as_me:1460: result: no" >&5
echo "${ECHO_T}no" >&6
fi
test -n "$AWK" && break
done
-echo "$as_me:1456: checking whether ${MAKE-make} sets \${MAKE}" >&5
+echo "$as_me:1467: checking whether ${MAKE-make} sets \${MAKE}" >&5
echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
@@ -1473,11 +1484,11 @@ fi
rm -f conftest.make
fi
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
- echo "$as_me:1476: result: yes" >&5
+ echo "$as_me:1487: result: yes" >&5
echo "${ECHO_T}yes" >&6
SET_MAKE=
else
- echo "$as_me:1480: result: no" >&5
+ echo "$as_me:1491: result: no" >&5
echo "${ECHO_T}no" >&6
SET_MAKE="MAKE=${MAKE-make}"
fi
@@ -1513,14 +1524,14 @@ rmdir .deps 2>/dev/null
# test to see if srcdir already configured
if test "`CDPATH=:; cd $srcdir && pwd`" != "`pwd`" &&
test -f $srcdir/config.status; then
- { { echo "$as_me:1516: error: source directory already configured; run \"make distclean\" there first" >&5
+ { { echo "$as_me:1527: error: source directory already configured; run \"make distclean\" there first" >&5
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
{ (exit 1); exit 1; }; }
fi
# Define the identity of the package.
PACKAGE=gmp
-VERSION=3.2
+VERSION=4.0
cat >>confdefs.h <<EOF
#define PACKAGE "$PACKAGE"
@@ -1564,7 +1575,7 @@ INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
ac_config_headers="$ac_config_headers config.h:config.in"
-echo "$as_me:1567: checking whether to enable maintainer-specific portions of Makefiles" >&5
+echo "$as_me:1578: checking whether to enable maintainer-specific portions of Makefiles" >&5
echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
if test "${enable_maintainer_mode+set}" = set; then
@@ -1573,7 +1584,7 @@ if test "${enable_maintainer_mode+set}" = set; then
else
USE_MAINTAINER_MODE=no
fi;
- echo "$as_me:1576: result: $USE_MAINTAINER_MODE" >&5
+ echo "$as_me:1587: result: $USE_MAINTAINER_MODE" >&5
echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
if test $USE_MAINTAINER_MODE = yes; then
@@ -1590,7 +1601,7 @@ if test "${enable_assert+set}" = set; then
enableval="$enable_assert"
case $enableval in
yes|no) ;;
-*) { { echo "$as_me:1593: error: bad value $enableval for --enable-assert, need yes or no" >&5
+*) { { echo "$as_me:1604: error: bad value $enableval for --enable-assert, need yes or no" >&5
echo "$as_me: error: bad value $enableval for --enable-assert, need yes or no" >&2;}
{ (exit 1); exit 1; }; } ;;
esac
@@ -1614,7 +1625,7 @@ alloca|malloc-reentrant|malloc-notreentrant) ;;
yes|no|reentrant|notreentrant) ;;
debug) ;;
*)
- { { echo "$as_me:1617: error: bad value $enableval for --enable-alloca, need one of:
+ { { echo "$as_me:1628: error: bad value $enableval for --enable-alloca, need one of:
yes no reentrant notreentrant alloca malloc-reentrant malloc-notreentrant debug" >&5
echo "$as_me: error: bad value $enableval for --enable-alloca, need one of:
yes no reentrant notreentrant alloca malloc-reentrant malloc-notreentrant debug" >&2;}
@@ -1624,12 +1635,25 @@ else
enable_alloca=reentrant
fi;
+# Check whether --enable-cxx or --disable-cxx was given.
+if test "${enable_cxx+set}" = set; then
+ enableval="$enable_cxx"
+ case $enableval in
+yes|no|detect) ;;
+*) { { echo "$as_me:1643: error: bad value $enableval for --enable-cxx, need yes/no/detect" >&5
+echo "$as_me: error: bad value $enableval for --enable-cxx, need yes/no/detect" >&2;}
+ { (exit 1); exit 1; }; } ;;
+esac
+else
+ enable_cxx=detect
+fi;
+
# Check whether --enable-fft or --disable-fft was given.
if test "${enable_fft+set}" = set; then
enableval="$enable_fft"
case $enableval in
yes|no) ;;
-*) { { echo "$as_me:1632: error: bad value $enableval for --enable-fft, need yes or no" >&5
+*) { { echo "$as_me:1656: error: bad value $enableval for --enable-fft, need yes or no" >&5
echo "$as_me: error: bad value $enableval for --enable-fft, need yes or no" >&2;}
{ (exit 1); exit 1; }; } ;;
esac
@@ -1650,7 +1674,7 @@ if test "${enable_mpbsd+set}" = set; then
enableval="$enable_mpbsd"
case $enableval in
yes|no) ;;
-*) { { echo "$as_me:1653: error: bad value $enableval for --enable-mpbsd, need yes or no" >&5
+*) { { echo "$as_me:1677: error: bad value $enableval for --enable-mpbsd, need yes or no" >&5
echo "$as_me: error: bad value $enableval for --enable-mpbsd, need yes or no" >&2;}
{ (exit 1); exit 1; }; } ;;
esac
@@ -1671,7 +1695,7 @@ if test "${enable_mpfr+set}" = set; then
enableval="$enable_mpfr"
case $enableval in
yes|no) ;;
-*) { { echo "$as_me:1674: error: bad value $enableval for --enable-mpfr, need yes or no" >&5
+*) { { echo "$as_me:1698: error: bad value $enableval for --enable-mpfr, need yes or no" >&5
echo "$as_me: error: bad value $enableval for --enable-mpfr, need yes or no" >&2;}
{ (exit 1); exit 1; }; } ;;
esac
@@ -1692,7 +1716,7 @@ if test "${enable_profiling+set}" = set; then
enableval="$enable_profiling"
case $enableval in
no|prof|gprof) ;;
-*) { { echo "$as_me:1695: error: bad value $enableval for --enable-profiling, need no/prof/gprof" >&5
+*) { { echo "$as_me:1719: error: bad value $enableval for --enable-profiling, need no/prof/gprof" >&5
echo "$as_me: error: bad value $enableval for --enable-profiling, need no/prof/gprof" >&2;}
{ (exit 1); exit 1; }; } ;;
esac
@@ -2010,7 +2034,7 @@ echo "include_mpn(\`m68k/m68k-defs.m4')" >> $gmp_tmpconfigm4i
esac
# FIXME: m68k/mc68020 looks like it's ok for cpu32, but this wants to be
- # tested. Will need to introduce an m68k/cpu32 if m68/mc62020 ever uses
+ # tested. Will need to introduce an m68k/cpu32 if m68k/mc62020 ever uses
# the bitfield instructions.
case $host in
m680[2346]0-*-* | m68360-*-*) path="m68k/mc68020 m68k"
@@ -2252,9 +2276,9 @@ EOF
# VAX
vax*-*-*)
- # Believe that vax gcc always accepts -fomit-frame-pointer, though it
- # might not do anything. Cf. gcc/config/vax/vax.h which has
- # FRAME_POINTER_REQUIRED=1 always.
+ # Currently (version 3.0) gcc on vax always uses a frame pointer
+ # (config/vax/vax.h FRAME_POINTER_REQUIRED=1), so -fomit-frame-pointer
+ # will be ignored.
#
gcc_cflags="-g -O2 $fomit_frame_pointer"
path="vax"
@@ -2347,7 +2371,8 @@ echo "include_mpn(\`x86/x86-defs.m4')" >> $gmp_tmpconfigm4i
esac
;;
- # FIXME: z8kx won't get through config.sub.
+ # FIXME: z8kx won't get through config.sub. Could make 16 versus 32 bit
+ # limb an ABI option perhaps.
z8kx*-*-*)
path="z8000x"
extra_functions="udiv_w_sdiv"
@@ -2376,13 +2401,13 @@ CFLAGS_or_unset=${CFLAGS-'(unset)'}
CPPFLAGS_or_unset=${CPPFLAGS-'(unset)'}
cat >&5 <<EOF
-configure:805: User:
+configure:815: User:
ABI=$ABI
CC=$CC
CFLAGS=$CFLAGS_or_unset
CPPFLAGS=$CPPFLAGS_or_unset
MPN_PATH=$MPN_PATH
-configure:811: GMP:
+configure:821: GMP:
abilist=$abilist
cclist=$cclist
EOF
@@ -2403,7 +2428,7 @@ if test -n "$ABI"; then
if test $abi = "$ABI"; then found=yes; break; fi
done
if test $found = no; then
- { { echo "$as_me:2406: error: ABI=$ABI is not among the following valid choices: $abilist" >&5
+ { { echo "$as_me:2431: 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
@@ -2493,15 +2518,15 @@ for abi in $abilist; do
#endif
EOF
gmp_compile="$cc -c conftest.c"
-if { (eval echo "$as_me:2496: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:2521: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2499: \$? = $ac_status" >&5
+ echo "$as_me:2524: \$? = $ac_status" >&5
(exit $ac_status); }; then
rm -f conftest*
- echo "$as_me:2502: checking whether $cc is gcc" >&5
+ echo "$as_me:2527: checking whether $cc is gcc" >&5
echo $ECHO_N "checking whether $cc is gcc... $ECHO_C" >&6
- echo "$as_me:2504: result: yes" >&5
+ echo "$as_me:2529: result: yes" >&5
echo "${ECHO_T}yes" >&6
ccbase=gcc
else
@@ -2511,18 +2536,18 @@ fi
fi
- # Similarly if the compiler is xlc but invoked as cc or whatever then
- # change $ccbase and make the default xlc flags available.
+ # Similarly if the compiler is IBM 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:2518: \"$gmp_command\"") >&5
+if { (eval echo "$as_me:2543: \"$gmp_command\"") >&5
(eval $gmp_command) 2>&5
ac_status=$?
- echo "$as_me:2521: \$? = $ac_status" >&5
+ echo "$as_me:2546: \$? = $ac_status" >&5
(exit $ac_status); }; then
- echo "$as_me:2523: checking whether $cc is xlc" >&5
+ echo "$as_me:2548: checking whether $cc is xlc" >&5
echo $ECHO_N "checking whether $cc is xlc... $ECHO_C" >&6
- echo "$as_me:2525: result: yes" >&5
+ echo "$as_me:2550: result: yes" >&5
echo "${ECHO_T}yes" >&6
ccbase=xlc
else
@@ -2541,13 +2566,15 @@ fi
test -n "$cppflags" || eval cppflags=\"\$${ccbase}${abi2}_cppflags\"
if test "$test_CPPFLAGS" = set; then cppflags=$CPPFLAGS; fi
- # --enable-profiling adds -p/-pg even to user-specified CFLAGS
+ # --enable-profiling adds -p/-pg even to user-specified CFLAGS.
+ # This is convenient, but it's perhaps a bit naughty to modify user
+ # CFLAGS.
case "$enable_profiling" in
prof) cflags="$cflags -p" ;;
gprof) cflags="$cflags -pg" ;;
esac
- echo "$as_me:2550: checking compiler $cc $cflags $cppflags" >&5
+ echo "$as_me:2577: 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
@@ -2557,19 +2584,19 @@ void *f() { return g(); }
int main () { return 0; }
EOF
-gmp_compile="$cc $cflags $cppflags conftest.c >&5"
-if { (eval echo "$as_me:2561: \"$gmp_compile\"") >&5
+gmp_compile="$cc $cflags $cppflags conftest.c -o conftest >&5"
+if { (eval echo "$as_me:2588: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2564: \$? = $ac_status" >&5
+ echo "$as_me:2591: \$? = $ac_status" >&5
(exit $ac_status); }; then
- rm -f conftest* a.out
- echo "$as_me:2567: result: yes" >&5
+ rm -f conftest*
+ echo "$as_me:2594: result: yes" >&5
echo "${ECHO_T}yes" >&6
:
else
- rm -f conftest* a.out
- echo "$as_me:2572: result: no" >&5
+ rm -f conftest*
+ echo "$as_me:2599: result: no" >&5
echo "${ECHO_T}no" >&6
continue
fi
@@ -2581,7 +2608,7 @@ fi
testlist_pass=yes
for tst in $testlist; do
case $tst in
- hpc-hppa-2-0) echo "$as_me:2584: checking whether HP compiler $cc is good for 64-bits" >&5
+ hpc-hppa-2-0) echo "$as_me:2611: 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
@@ -2622,7 +2649,7 @@ fi
gmp_hpc_64bit=$gmp_compare_ge
fi
-echo "$as_me:2625: result: $gmp_hpc_64bit" >&5
+echo "$as_me:2652: result: $gmp_hpc_64bit" >&5
echo "${ECHO_T}$gmp_hpc_64bit" >&6
if test $gmp_hpc_64bit = yes; then
:
@@ -2630,7 +2657,7 @@ else
testlist_pass=no
fi
;;
- gcc-arm-umodsi) echo "$as_me:2633: checking whether gcc unsigned division works" >&5
+ gcc-arm-umodsi) echo "$as_me:2660: 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
@@ -2645,7 +2672,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:2648: WARNING: unrecognised gcc version string: $tmp_version" >&5
+ { echo "$as_me:2675: WARNING: unrecognised gcc version string: $tmp_version" >&5
echo "$as_me: WARNING: unrecognised gcc version string: $tmp_version" >&2;}
gmp_compare_ge=error
else
@@ -2682,7 +2709,7 @@ yes)
testlist_pass=no
gmp_gcc_arm_umodsi_result="no, gcc <= 2.95.3" ;;
esac
-echo "$as_me:2685: result: $gmp_gcc_arm_umodsi_result" >&5
+echo "$as_me:2712: result: $gmp_gcc_arm_umodsi_result" >&5
echo "${ECHO_T}$gmp_gcc_arm_umodsi_result" >&6
;;
esac
@@ -2715,7 +2742,7 @@ done
# C on MS-DOS systems).
#
if test $found_compiler = no && test -n "$path"; then
- { { echo "$as_me:2718: error: could not find a working compiler" >&5
+ { { echo "$as_me:2745: error: could not find a working compiler" >&5
echo "$as_me: error: could not find a working compiler" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -2738,7 +2765,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:2741: checking whether gcc -march=pentiumpro is good" >&5
+ echo "$as_me:2768: 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
@@ -2756,7 +2783,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:2759: WARNING: unrecognised gcc version string: $tmp_version" >&5
+ { echo "$as_me:2786: WARNING: unrecognised gcc version string: $tmp_version" >&5
echo "$as_me: WARNING: unrecognised gcc version string: $tmp_version" >&2;}
gmp_compare_ge=error
else
@@ -2790,7 +2817,7 @@ yes|no) gmp_cv_gcc_march_pentiumpro=$gmp_compare_ge ;;
error|*) gmp_cv_gcc_march_pentiumpro=no ;;
esac
fi
-echo "$as_me:2793: result: $gmp_cv_gcc_march_pentiumpro" >&5
+echo "$as_me:2820: 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
:
@@ -2815,17 +2842,17 @@ esac
-no-cpp-precomp)
# special check, avoiding a warning
if test "$ccbase" = gcc; then
- echo "$as_me:2818: checking compiler $cc $cflags -no-cpp-precomp" >&5
+ echo "$as_me:2845: checking compiler $cc $cflags -no-cpp-precomp" >&5
echo $ECHO_N "checking compiler $cc $cflags -no-cpp-precomp... $ECHO_C" >&6
result=no
cat >conftest.c <<EOF
int main () { return 0; }
EOF
gmp_compile="$cc $cflags -no-cpp-precomp conftest.c >conftest.out 2>&1"
- if { (eval echo "$as_me:2825: \"$gmp_compile\"") >&5
+ if { (eval echo "$as_me:2852: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2828: \$? = $ac_status" >&5
+ echo "$as_me:2855: \$? = $ac_status" >&5
(exit $ac_status); }; then
if grep "unrecognized option.*-no-cpp-precomp" conftest.out >/dev/null; then : ;
else
@@ -2834,7 +2861,7 @@ EOF
fi
cat conftest.out >&5
rm -f conftest* a.out
- echo "$as_me:2837: result: $result" >&5
+ echo "$as_me:2864: result: $result" >&5
echo "${ECHO_T}$result" >&6
if test "$result" = yes; then
cflags="$cflags $flag"
@@ -2847,7 +2874,7 @@ fi
;;
esac
- echo "$as_me:2850: checking compiler $cc $cflags $cppflags $flag" >&5
+ echo "$as_me:2877: 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
@@ -2857,20 +2884,20 @@ void *f() { return g(); }
int main () { return 0; }
EOF
-gmp_compile="$cc $cflags $cppflags $flag conftest.c >&5"
-if { (eval echo "$as_me:2861: \"$gmp_compile\"") >&5
+gmp_compile="$cc $cflags $cppflags $flag conftest.c -o conftest >&5"
+if { (eval echo "$as_me:2888: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:2864: \$? = $ac_status" >&5
+ echo "$as_me:2891: \$? = $ac_status" >&5
(exit $ac_status); }; then
- rm -f conftest* a.out
- echo "$as_me:2867: result: yes" >&5
+ rm -f conftest*
+ echo "$as_me:2894: result: yes" >&5
echo "${ECHO_T}yes" >&6
cflags="$cflags $flag"
break
else
- rm -f conftest* a.out
- echo "$as_me:2873: result: no" >&5
+ rm -f conftest*
+ echo "$as_me:2900: result: no" >&5
echo "${ECHO_T}no" >&6
:
fi
@@ -2953,17 +2980,6 @@ longlong) DEFN_LONG_LONG_LIMB="#define _LONG_LONG_LIMB 1" ;;
*) DEFN_LONG_LONG_LIMB="/* #undef _LONG_LONG_LIMB */" ;;
esac
-cat >&5 <<EOF
-configure:1105: Decided:
-ABI=$ABI
-CC=$CC
-CFLAGS=$CFLAGS
-CPPFLAGS=$CPPFLAGS
-GMP_LDFLAGS=$GMP_LDFLAGS
-path=$path
-EOF
-echo using ABI=\"$ABI\" CC=\"$CC\" CFLAGS=\"$CFLAGS\" CPPFLAGS=\"$CPPFLAGS\"
-
# The C compiler and preprocessor, put into ANSI mode if possible.
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
@@ -2973,7 +2989,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:2976: checking for $ac_word" >&5
+echo "$as_me:2992: 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
@@ -2988,7 +3004,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:2991: found $ac_dir/$ac_word" >&5
+echo "$as_me:3007: found $ac_dir/$ac_word" >&5
break
done
@@ -2996,10 +3012,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:2999: result: $CC" >&5
+ echo "$as_me:3015: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3002: result: no" >&5
+ echo "$as_me:3018: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3008,7 +3024,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:3011: checking for $ac_word" >&5
+echo "$as_me:3027: 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
@@ -3023,7 +3039,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:3026: found $ac_dir/$ac_word" >&5
+echo "$as_me:3042: found $ac_dir/$ac_word" >&5
break
done
@@ -3031,10 +3047,10 @@ fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- echo "$as_me:3034: result: $ac_ct_CC" >&5
+ echo "$as_me:3050: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
- echo "$as_me:3037: result: no" >&5
+ echo "$as_me:3053: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3047,7 +3063,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:3050: checking for $ac_word" >&5
+echo "$as_me:3066: 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
@@ -3062,7 +3078,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:3065: found $ac_dir/$ac_word" >&5
+echo "$as_me:3081: found $ac_dir/$ac_word" >&5
break
done
@@ -3070,10 +3086,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:3073: result: $CC" >&5
+ echo "$as_me:3089: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3076: result: no" >&5
+ echo "$as_me:3092: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3082,7 +3098,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:3085: checking for $ac_word" >&5
+echo "$as_me:3101: 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
@@ -3097,7 +3113,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:3100: found $ac_dir/$ac_word" >&5
+echo "$as_me:3116: found $ac_dir/$ac_word" >&5
break
done
@@ -3105,10 +3121,10 @@ fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- echo "$as_me:3108: result: $ac_ct_CC" >&5
+ echo "$as_me:3124: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
- echo "$as_me:3111: result: no" >&5
+ echo "$as_me:3127: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3121,7 +3137,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:3124: 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
@@ -3141,7 +3157,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
continue
fi
ac_cv_prog_CC="cc"
-echo "$as_me:3144: found $ac_dir/$ac_word" >&5
+echo "$as_me:3160: found $ac_dir/$ac_word" >&5
break
done
@@ -3163,10 +3179,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:3166: result: $CC" >&5
+ echo "$as_me:3182: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3169: result: no" >&5
+ echo "$as_me:3185: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3177,7 +3193,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:3180: checking for $ac_word" >&5
+echo "$as_me:3196: 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
@@ -3192,7 +3208,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:3195: found $ac_dir/$ac_word" >&5
+echo "$as_me:3211: found $ac_dir/$ac_word" >&5
break
done
@@ -3200,10 +3216,10 @@ fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
- echo "$as_me:3203: result: $CC" >&5
+ echo "$as_me:3219: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
- echo "$as_me:3206: result: no" >&5
+ echo "$as_me:3222: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3216,7 +3232,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:3219: checking for $ac_word" >&5
+echo "$as_me:3235: 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
@@ -3231,7 +3247,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:3234: found $ac_dir/$ac_word" >&5
+echo "$as_me:3250: found $ac_dir/$ac_word" >&5
break
done
@@ -3239,10 +3255,10 @@ fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
- echo "$as_me:3242: result: $ac_ct_CC" >&5
+ echo "$as_me:3258: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
- echo "$as_me:3245: result: no" >&5
+ echo "$as_me:3261: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -3254,32 +3270,32 @@ fi
fi
-test -z "$CC" && { { echo "$as_me:3257: error: no acceptable cc found in \$PATH" >&5
+test -z "$CC" && { { echo "$as_me:3273: 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:3262:" \
+echo "$as_me:3278:" \
"checking for C compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
-{ (eval echo "$as_me:3265: \"$ac_compiler --version </dev/null >&5\"") >&5
+{ (eval echo "$as_me:3281: \"$ac_compiler --version </dev/null >&5\"") >&5
(eval $ac_compiler --version </dev/null >&5) 2>&5
ac_status=$?
- echo "$as_me:3268: \$? = $ac_status" >&5
+ echo "$as_me:3284: \$? = $ac_status" >&5
(exit $ac_status); }
-{ (eval echo "$as_me:3270: \"$ac_compiler -v </dev/null >&5\"") >&5
+{ (eval echo "$as_me:3286: \"$ac_compiler -v </dev/null >&5\"") >&5
(eval $ac_compiler -v </dev/null >&5) 2>&5
ac_status=$?
- echo "$as_me:3273: \$? = $ac_status" >&5
+ echo "$as_me:3289: \$? = $ac_status" >&5
(exit $ac_status); }
-{ (eval echo "$as_me:3275: \"$ac_compiler -V </dev/null >&5\"") >&5
+{ (eval echo "$as_me:3291: \"$ac_compiler -V </dev/null >&5\"") >&5
(eval $ac_compiler -V </dev/null >&5) 2>&5
ac_status=$?
- echo "$as_me:3278: \$? = $ac_status" >&5
+ echo "$as_me:3294: \$? = $ac_status" >&5
(exit $ac_status); }
cat >conftest.$ac_ext <<_ACEOF
-#line 3282 "configure"
+#line 3298 "configure"
#include "confdefs.h"
int
@@ -3295,13 +3311,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:3298: checking for C compiler default output" >&5
+echo "$as_me:3314: 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:3301: \"$ac_link_default\"") >&5
+if { (eval echo "$as_me:3317: \"$ac_link_default\"") >&5
(eval $ac_link_default) 2>&5
ac_status=$?
- echo "$as_me:3304: \$? = $ac_status" >&5
+ echo "$as_me:3320: \$? = $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
@@ -3324,34 +3340,34 @@ done
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ { echo "$as_me:3327: error: C compiler cannot create executables" >&5
+{ { echo "$as_me:3343: 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:3333: result: $ac_file" >&5
+echo "$as_me:3349: 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:3338: checking whether the C compiler works" >&5
+echo "$as_me:3354: 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:3344: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3360: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3347: \$? = $ac_status" >&5
+ echo "$as_me:3363: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cross_compiling=no
else
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
- { { echo "$as_me:3354: error: cannot run C compiled programs.
+ { { echo "$as_me:3370: 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;}
@@ -3359,24 +3375,24 @@ If you meant to cross compile, use \`--host'." >&2;}
fi
fi
fi
-echo "$as_me:3362: result: yes" >&5
+echo "$as_me:3378: 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:3369: checking whether we are cross compiling" >&5
+echo "$as_me:3385: checking whether we are cross compiling" >&5
echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
-echo "$as_me:3371: result: $cross_compiling" >&5
+echo "$as_me:3387: result: $cross_compiling" >&5
echo "${ECHO_T}$cross_compiling" >&6
-echo "$as_me:3374: checking for executable suffix" >&5
+echo "$as_me:3390: checking for executable suffix" >&5
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
-if { (eval echo "$as_me:3376: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3392: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:3379: \$? = $ac_status" >&5
+ echo "$as_me:3395: \$? = $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
@@ -3392,25 +3408,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
esac
done
else
- { { echo "$as_me:3395: error: cannot compute EXEEXT: cannot compile and link" >&5
+ { { echo "$as_me:3411: 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:3401: result: $ac_cv_exeext" >&5
+echo "$as_me:3417: 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:3407: checking for object suffix" >&5
+echo "$as_me:3423: 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 3413 "configure"
+#line 3429 "configure"
#include "confdefs.h"
int
@@ -3422,10 +3438,10 @@ main ()
}
_ACEOF
rm -f conftest.o conftest.obj
-if { (eval echo "$as_me:3425: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3441: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3428: \$? = $ac_status" >&5
+ echo "$as_me:3444: \$? = $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
@@ -3437,24 +3453,24 @@ done
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ { echo "$as_me:3440: error: cannot compute OBJEXT: cannot compile" >&5
+{ { echo "$as_me:3456: 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:3447: result: $ac_cv_objext" >&5
+echo "$as_me:3463: result: $ac_cv_objext" >&5
echo "${ECHO_T}$ac_cv_objext" >&6
OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
-echo "$as_me:3451: checking whether we are using the GNU C compiler" >&5
+echo "$as_me:3467: 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 3457 "configure"
+#line 3473 "configure"
#include "confdefs.h"
int
@@ -3469,16 +3485,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3472: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3488: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3475: \$? = $ac_status" >&5
+ echo "$as_me:3491: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3478: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3494: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3481: \$? = $ac_status" >&5
+ echo "$as_me:3497: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_compiler_gnu=yes
else
@@ -3490,19 +3506,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext
ac_cv_c_compiler_gnu=$ac_compiler_gnu
fi
-echo "$as_me:3493: result: $ac_cv_c_compiler_gnu" >&5
+echo "$as_me:3509: 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:3499: checking whether $CC accepts -g" >&5
+echo "$as_me:3515: 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 3505 "configure"
+#line 3521 "configure"
#include "confdefs.h"
int
@@ -3514,16 +3530,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3517: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3533: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3520: \$? = $ac_status" >&5
+ echo "$as_me:3536: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3523: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3539: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3526: \$? = $ac_status" >&5
+ echo "$as_me:3542: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_cc_g=yes
else
@@ -3533,7 +3549,7 @@ ac_cv_prog_cc_g=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:3536: result: $ac_cv_prog_cc_g" >&5
+echo "$as_me:3552: 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
@@ -3560,16 +3576,16 @@ cat >conftest.$ac_ext <<_ACEOF
#endif
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3563: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3579: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3566: \$? = $ac_status" >&5
+ echo "$as_me:3582: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3569: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3585: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3572: \$? = $ac_status" >&5
+ echo "$as_me:3588: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
for ac_declaration in \
''\
@@ -3581,7 +3597,7 @@ if { (eval echo "$as_me:3563: \"$ac_compile\"") >&5
'void exit (int);'
do
cat >conftest.$ac_ext <<_ACEOF
-#line 3584 "configure"
+#line 3600 "configure"
#include "confdefs.h"
#include <stdlib.h>
$ac_declaration
@@ -3594,16 +3610,16 @@ exit (42);
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3597: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3613: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3600: \$? = $ac_status" >&5
+ echo "$as_me:3616: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3603: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3619: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3606: \$? = $ac_status" >&5
+ echo "$as_me:3622: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -3613,7 +3629,7 @@ continue
fi
rm -f conftest.$ac_objext conftest.$ac_ext
cat >conftest.$ac_ext <<_ACEOF
-#line 3616 "configure"
+#line 3632 "configure"
#include "confdefs.h"
$ac_declaration
int
@@ -3625,16 +3641,16 @@ exit (42);
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3628: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3644: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3631: \$? = $ac_status" >&5
+ echo "$as_me:3647: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3634: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3650: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3637: \$? = $ac_status" >&5
+ echo "$as_me:3653: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
@@ -3669,7 +3685,7 @@ doit:
@echo done
END
# If we don't find an include directive, just comment out the code.
-echo "$as_me:3672: checking for style of include used by $am_make" >&5
+echo "$as_me:3688: 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=
@@ -3696,13 +3712,13 @@ if test "$am__include" = "#"; then
fi
fi
-echo "$as_me:3699: result: $_am_result" >&5
+echo "$as_me:3715: result: $_am_result" >&5
echo "${ECHO_T}$_am_result" >&6
rm -f confinc confmf
depcc="$CC" am_compiler_list=
-echo "$as_me:3705: checking dependency style of $depcc" >&5
+echo "$as_me:3721: 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
@@ -3764,11 +3780,11 @@ else
fi
fi
-echo "$as_me:3767: result: $am_cv_CC_dependencies_compiler_type" >&5
+echo "$as_me:3783: 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:3771: checking for $CC option to accept ANSI C" >&5
+echo "$as_me:3787: 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
@@ -3776,7 +3792,7 @@ else
ac_cv_prog_cc_stdc=no
ac_save_CC=$CC
cat >conftest.$ac_ext <<_ACEOF
-#line 3779 "configure"
+#line 3795 "configure"
#include "confdefs.h"
#include <stdarg.h>
#include <stdio.h>
@@ -3825,16 +3841,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:3828: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3844: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:3831: \$? = $ac_status" >&5
+ echo "$as_me:3847: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:3834: \"$ac_try\"") >&5
+ { (eval echo "$as_me:3850: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:3837: \$? = $ac_status" >&5
+ echo "$as_me:3853: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_prog_cc_stdc=$ac_arg
break
@@ -3851,10 +3867,10 @@ fi
case "x$ac_cv_prog_cc_stdc" in
x|xno)
- echo "$as_me:3854: result: none needed" >&5
+ echo "$as_me:3870: result: none needed" >&5
echo "${ECHO_T}none needed" >&6 ;;
*)
- echo "$as_me:3857: result: $ac_cv_prog_cc_stdc" >&5
+ echo "$as_me:3873: result: $ac_cv_prog_cc_stdc" >&5
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
CC="$CC $ac_cv_prog_cc_stdc" ;;
esac
@@ -3864,7 +3880,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:3867: checking how to run the C preprocessor" >&5
+echo "$as_me:3883: 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
@@ -3885,18 +3901,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 3888 "configure"
+#line 3904 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax error
_ACEOF
-if { (eval echo "$as_me:3893: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3909: \"$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:3899: \$? = $ac_status" >&5
+ echo "$as_me:3915: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3919,17 +3935,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 3922 "configure"
+#line 3938 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
-if { (eval echo "$as_me:3926: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3942: \"$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:3932: \$? = $ac_status" >&5
+ echo "$as_me:3948: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3966,7 +3982,7 @@ fi
else
ac_cv_prog_CPP=$CPP
fi
-echo "$as_me:3969: result: $CPP" >&5
+echo "$as_me:3985: result: $CPP" >&5
echo "${ECHO_T}$CPP" >&6
ac_preproc_ok=false
for ac_c_preproc_warn_flag in '' yes
@@ -3976,18 +3992,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 3979 "configure"
+#line 3995 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax error
_ACEOF
-if { (eval echo "$as_me:3984: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4000: \"$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:3990: \$? = $ac_status" >&5
+ echo "$as_me:4006: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4010,17 +4026,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 4013 "configure"
+#line 4029 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
-if { (eval echo "$as_me:4017: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4033: \"$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:4023: \$? = $ac_status" >&5
+ echo "$as_me:4039: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4048,7 +4064,7 @@ rm -f conftest.err conftest.$ac_ext
if $ac_preproc_ok; then
:
else
- { { echo "$as_me:4051: error: C preprocessor \"$CPP\" fails sanity check" >&5
+ { { echo "$as_me:4067: error: C preprocessor \"$CPP\" fails sanity check" >&5
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -4064,7 +4080,7 @@ case $ac_cv_prog_cc_stdc in
;;
*)
cat >conftest.$ac_ext <<_ACEOF
-#line 4067 "configure"
+#line 4083 "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 */
@@ -4084,33 +4100,495 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4087: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4103: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4090: \$? = $ac_status" >&5
+ echo "$as_me:4106: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4093: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4109: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4096: \$? = $ac_status" >&5
+ echo "$as_me:4112: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ echo "$as_me:4102: WARNING: gmp.h doesnt recognise compiler as ANSI, prototypes and \"const\" will be unavailable" >&5
+{ echo "$as_me:4118: 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
+# The C++ compiler, if desired.
+want_cxx=no
+if test $enable_cxx != no; then
+ test_CXXFLAGS=${CXXFLAGS+set}
+ ac_ext=cc
+ac_cpp='$CXXCPP $CPPFLAGS'
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
+if test -n "$ac_tool_prefix"; then
+ for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
+ 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:4139: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_CXX+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$CXX"; then
+ ac_cv_prog_CXX="$CXX" # Let the user override the test.
+else
+ ac_save_IFS=$IFS; IFS=$ac_path_separator
+ac_dummy="$PATH"
+for ac_dir in $ac_dummy; do
+ IFS=$ac_save_IFS
+ test -z "$ac_dir" && ac_dir=.
+ $as_executable_p "$ac_dir/$ac_word" || continue
+ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
+echo "$as_me:4154: found $ac_dir/$ac_word" >&5
+break
+done
+
+fi
+fi
+CXX=$ac_cv_prog_CXX
+if test -n "$CXX"; then
+ echo "$as_me:4162: result: $CXX" >&5
+echo "${ECHO_T}$CXX" >&6
+else
+ echo "$as_me:4165: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ test -n "$CXX" && break
+ done
+fi
+if test -z "$CXX"; then
+ ac_ct_CXX=$CXX
+ for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
+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:4178: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$ac_ct_CXX"; then
+ ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
+else
+ ac_save_IFS=$IFS; IFS=$ac_path_separator
+ac_dummy="$PATH"
+for ac_dir in $ac_dummy; do
+ IFS=$ac_save_IFS
+ test -z "$ac_dir" && ac_dir=.
+ $as_executable_p "$ac_dir/$ac_word" || continue
+ac_cv_prog_ac_ct_CXX="$ac_prog"
+echo "$as_me:4193: found $ac_dir/$ac_word" >&5
+break
+done
+
+fi
+fi
+ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
+if test -n "$ac_ct_CXX"; then
+ echo "$as_me:4201: result: $ac_ct_CXX" >&5
+echo "${ECHO_T}$ac_ct_CXX" >&6
+else
+ echo "$as_me:4204: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ test -n "$ac_ct_CXX" && break
+done
+test -n "$ac_ct_CXX" || ac_ct_CXX="g++"
+
+ CXX=$ac_ct_CXX
+fi
+
+# Provide some information about the compiler.
+echo "$as_me:4216:" \
+ "checking for C++ compiler version" >&5
+ac_compiler=`set X $ac_compile; echo $2`
+{ (eval echo "$as_me:4219: \"$ac_compiler --version </dev/null >&5\"") >&5
+ (eval $ac_compiler --version </dev/null >&5) 2>&5
+ ac_status=$?
+ echo "$as_me:4222: \$? = $ac_status" >&5
+ (exit $ac_status); }
+{ (eval echo "$as_me:4224: \"$ac_compiler -v </dev/null >&5\"") >&5
+ (eval $ac_compiler -v </dev/null >&5) 2>&5
+ ac_status=$?
+ echo "$as_me:4227: \$? = $ac_status" >&5
+ (exit $ac_status); }
+{ (eval echo "$as_me:4229: \"$ac_compiler -V </dev/null >&5\"") >&5
+ (eval $ac_compiler -V </dev/null >&5) 2>&5
+ ac_status=$?
+ echo "$as_me:4232: \$? = $ac_status" >&5
+ (exit $ac_status); }
+
+echo "$as_me:4235: checking whether we are using the GNU C++ compiler" >&5
+echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6
+if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line 4241 "configure"
+#include "confdefs.h"
+
+int
+main ()
+{
+#ifndef __GNUC__
+ choke me
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:4256: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:4259: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:4262: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:4265: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_compiler_gnu=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_compiler_gnu=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
+
+fi
+echo "$as_me:4277: result: $ac_cv_cxx_compiler_gnu" >&5
+echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
+GXX=`test $ac_compiler_gnu = yes && echo yes`
+ac_test_CXXFLAGS=${CXXFLAGS+set}
+ac_save_CXXFLAGS=$CXXFLAGS
+CXXFLAGS="-g"
+echo "$as_me:4283: checking whether $CXX accepts -g" >&5
+echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6
+if test "${ac_cv_prog_cxx_g+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line 4289 "configure"
+#include "confdefs.h"
+
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:4301: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:4304: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:4307: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:4310: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_prog_cxx_g=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_prog_cxx_g=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:4320: result: $ac_cv_prog_cxx_g" >&5
+echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
+if test "$ac_test_CXXFLAGS" = set; then
+ CXXFLAGS=$ac_save_CXXFLAGS
+elif test $ac_cv_prog_cxx_g = yes; then
+ if test "$GXX" = yes; then
+ CXXFLAGS="-g -O2"
+ else
+ CXXFLAGS="-g"
+ fi
+else
+ if test "$GXX" = yes; then
+ CXXFLAGS="-O2"
+ else
+ CXXFLAGS=
+ fi
+fi
+for ac_declaration in \
+ ''\
+ '#include <stdlib.h>' \
+ 'extern "C" void std::exit (int) throw (); using std::exit;' \
+ 'extern "C" void std::exit (int); using std::exit;' \
+ 'extern "C" void exit (int) throw ();' \
+ 'extern "C" void exit (int);' \
+ 'void exit (int);'
+do
+ cat >conftest.$ac_ext <<_ACEOF
+#line 4347 "configure"
+#include "confdefs.h"
+#include <stdlib.h>
+$ac_declaration
+int
+main ()
+{
+exit (42);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:4360: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:4363: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:4366: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:4369: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ :
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+continue
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ cat >conftest.$ac_ext <<_ACEOF
+#line 4379 "configure"
+#include "confdefs.h"
+$ac_declaration
+int
+main ()
+{
+exit (42);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:4391: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:4394: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:4397: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:4400: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ break
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+done
+rm -f conftest*
+if test -n "$ac_declaration"; then
+ echo '#ifdef __cplusplus' >>confdefs.h
+ echo $ac_declaration >>confdefs.h
+ echo '#endif' >>confdefs.h
+fi
+
+ac_ext=c
+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
+
+depcc="$CXX" am_compiler_list=
+
+echo "$as_me:4424: checking dependency style of $depcc" >&5
+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
+if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+ # We make a subdir and do the tests there. Otherwise we can end up
+ # making bogus files that we don't know about and never remove. For
+ # instance it was reported that on HP-UX the gcc test will end up
+ # making a dummy file named `D' -- because `-MD' means `put the output
+ # in D'.
+ mkdir conftest.dir
+ # Copy depcomp to subdir because otherwise we won't find it if we're
+ # using a relative directory.
+ cp "$am_depcomp" conftest.dir
+ cd conftest.dir
+
+ am_cv_CXX_dependencies_compiler_type=none
+ if test "$am_compiler_list" = ""; then
+ am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
+ fi
+ for depmode in $am_compiler_list; do
+ # We need to recreate these files for each test, as the compiler may
+ # overwrite some of them when testing with obscure command lines.
+ # This happens at least with the AIX C compiler.
+ echo '#include "conftest.h"' > conftest.c
+ echo 'int i;' > conftest.h
+ echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
+
+ case $depmode in
+ nosideeffect)
+ # after this tag, mechanisms are not by side-effect, so they'll
+ # only be used when explicitly requested
+ if test "x$enable_dependency_tracking" = xyes; then
+ continue
+ else
+ break
+ fi
+ ;;
+ none) break ;;
+ esac
+ # We check with `-c' and `-o' for the sake of the "dashmstdout"
+ # mode. It turns out that the SunPro C++ compiler does not properly
+ # handle `-M -o', and we need to detect this.
+ if depmode=$depmode \
+ source=conftest.c object=conftest.o \
+ depfile=conftest.Po tmpdepfile=conftest.TPo \
+ $SHELL ./depcomp $depcc -c conftest.c -o conftest.o >/dev/null 2>&1 &&
+ grep conftest.h conftest.Po > /dev/null 2>&1 &&
+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
+ am_cv_CXX_dependencies_compiler_type=$depmode
+ break
+ fi
+ done
+
+ cd ..
+ rm -rf conftest.dir
+else
+ am_cv_CXX_dependencies_compiler_type=none
+fi
+
+fi
+echo "$as_me:4486: result: $am_cv_CXX_dependencies_compiler_type" >&5
+echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6
+CXXDEPMODE="depmode=$am_cv_CXX_dependencies_compiler_type"
+
+ echo "CXXFLAGS chosen by autoconf: $CXXFLAGS" >&5
+ cxxflags_ac_prog_cxx=$CXXFLAGS
+ cxxflags_list=ac_prog_cxx
+
+ # If the user didn't specify $CXXFLAGS, then try $CFLAGS, with -g removed
+ # if AC_PROG_CXX thinks that doesn't work. $CFLAGS stands a good chance
+ # of working, eg. on a GNU system where CC=gcc and CXX=g++.
+ #
+ if test "$test_CXXFLAGS" != set; then
+ cxxflags_cflags=$CFLAGS
+ cxxflags_list="cflags $cxxflags_list"
+ if test "$ac_prog_cxx_g" = no; then
+ cxxflags_cflags=`echo "$cxxflags_cflags" | sed -e 's/ -g //' -e 's/^-g //' -e 's/ -g$//'`
+ fi
+ fi
+
+ # See if the C++ compiler works. If the user specified CXXFLAGS then all
+ # we're doing is checking whether AC_PROG_CXX succeeded, since it doesn't
+ # give a fatal error, just leaves CXX set to a default g++. If on the
+ # other hand the user didn't specify CXXFLAGS then we get to try here our
+ # $cxxflags_list alternatives.
+ #
+ for cxxflags_choice in $cxxflags_list; do
+ eval CXXFLAGS=\"\$cxxflags_$cxxflags_choice\"
+ echo "$as_me:4514: checking C++ compiler $CXX $CXXFLAGS" >&5
+echo $ECHO_N "checking C++ compiler $CXX $CXXFLAGS... $ECHO_C" >&6
+cat >conftest.cc <<EOF
+#include <iostream.h>
+int
+main (void)
+{
+ cout.setf (ios::hex);
+ cout << 123;
+ return 0;
+}
+EOF
+
+gmp_cxxcompile="$CXX $CXXFLAGS conftest.cc -o conftest"
+if { (eval echo "$as_me:4528: \"$gmp_cxxcompile\"") >&5
+ (eval $gmp_cxxcompile) 2>&5
+ ac_status=$?
+ echo "$as_me:4531: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ rm -f conftest*
+ echo "$as_me:4534: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+ want_cxx=yes
+ break
+else
+ rm -f conftest*
+ echo "$as_me:4540: result: no" >&5
+echo "${ECHO_T}no" >&6
+ :
+fi
+
+ done
+
+ # If --enable-cxx=yes but a C++ compiler can't be found, then abort.
+ if test $want_cxx = no && test $enable_cxx = yes; then
+ { { echo "$as_me:4549: error: C++ compiler not available" >&5
+echo "$as_me: error: C++ compiler not available" >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+fi
+
+if test $want_cxx = yes; then
+ WANT_CXX_TRUE=
+ WANT_CXX_FALSE='#'
+else
+ WANT_CXX_TRUE='#'
+ WANT_CXX_FALSE=
+fi
+
+cat >>confdefs.h <<\EOF
+#define WANT_CXX 1
+EOF
+
+cat >&5 <<EOF
+configure:1168: Decided:
+ABI=$ABI
+CC=$CC
+CFLAGS=$CFLAGS
+CPPFLAGS=$CPPFLAGS
+GMP_LDFLAGS=$GMP_LDFLAGS
+CXX=$CXX
+CXXFLAGS=$CXXFLAGS
+path=$path
+EOF
+echo "using ABI=\"$ABI\""
+echo " CC=\"$CC\""
+echo " CFLAGS=\"$CFLAGS\""
+echo " CPPFLAGS=\"$CPPFLAGS\""
+if test $want_cxx = yes; then
+ echo " CXX=\"$CXX\""
+ echo " CXXFLAGS=\"$CXXFLAGS\""
+fi
+
case $host_cpu in
c90 | t90)
cat >conftest.$ac_ext <<_ACEOF
-#line 4113 "configure"
+#line 4591 "configure"
#include "confdefs.h"
#ifdef _CRAYIEEE
yes
@@ -4126,7 +4604,7 @@ rm -f conftest*
;;
j90 | sv1)
extra_functions="mulwwj90"
- add_path="cray/cfp $path" ;;
+ add_path="cray/cfp" ;;
esac
if test -z "$MPN_PATH"; then
@@ -4135,7 +4613,7 @@ fi
# Automake ansi2knr support.
-echo "$as_me:4138: checking for ${CC-cc} option to accept ANSI C" >&5
+echo "$as_me:4616: 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
@@ -4153,7 +4631,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 4156 "configure"
+#line 4634 "configure"
#include "confdefs.h"
#include <stdarg.h>
#include <stdio.h>
@@ -4195,16 +4673,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:4198: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4676: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:4201: \$? = $ac_status" >&5
+ echo "$as_me:4679: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:4204: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4682: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4207: \$? = $ac_status" >&5
+ echo "$as_me:4685: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
am_cv_prog_cc_stdc="$ac_arg"; break
else
@@ -4218,10 +4696,10 @@ CC="$ac_save_CC"
fi
if test -z "$am_cv_prog_cc_stdc"; then
- echo "$as_me:4221: result: none needed" >&5
+ echo "$as_me:4699: result: none needed" >&5
echo "${ECHO_T}none needed" >&6
else
- echo "$as_me:4224: result: $am_cv_prog_cc_stdc" >&5
+ echo "$as_me:4702: 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
@@ -4229,10 +4707,10 @@ case "x$am_cv_prog_cc_stdc" in
*) CC="$CC $am_cv_prog_cc_stdc" ;;
esac
-echo "$as_me:4232: checking for function prototypes" >&5
+echo "$as_me:4710: 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:4235: result: yes" >&5
+ echo "$as_me:4713: result: yes" >&5
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
@@ -4241,18 +4719,18 @@ EOF
U= ANSI2KNR=
else
- echo "$as_me:4244: result: no" >&5
+ echo "$as_me:4722: result: no" >&5
echo "${ECHO_T}no" >&6
U=_ ANSI2KNR=./ansi2knr
fi
# Ensure some checks needed by ansi2knr itself.
-echo "$as_me:4249: checking for ANSI C header files" >&5
+echo "$as_me:4727: 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 4255 "configure"
+#line 4733 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
@@ -4260,13 +4738,13 @@ else
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:4263: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4741: \"$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:4269: \$? = $ac_status" >&5
+ echo "$as_me:4747: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4288,7 +4766,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 4291 "configure"
+#line 4769 "configure"
#include "confdefs.h"
#include <string.h>
@@ -4306,7 +4784,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 4309 "configure"
+#line 4787 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -4327,7 +4805,7 @@ if test $ac_cv_header_stdc = yes; then
:
else
cat >conftest.$ac_ext <<_ACEOF
-#line 4330 "configure"
+#line 4808 "configure"
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
@@ -4353,15 +4831,15 @@ main ()
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:4356: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4834: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:4359: \$? = $ac_status" >&5
+ echo "$as_me:4837: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:4361: \"$ac_try\"") >&5
+ { (eval echo "$as_me:4839: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:4364: \$? = $ac_status" >&5
+ echo "$as_me:4842: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -4374,7 +4852,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
fi
-echo "$as_me:4377: result: $ac_cv_header_stdc" >&5
+echo "$as_me:4855: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
@@ -4387,23 +4865,23 @@ fi
for ac_header in string.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4390: checking for $ac_header" >&5
+echo "$as_me:4868: 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 4396 "configure"
+#line 4874 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:4400: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4878: \"$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:4406: \$? = $ac_status" >&5
+ echo "$as_me:4884: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4422,7 +4900,7 @@ else
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:4425: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4903: 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
@@ -4436,7 +4914,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:4439: checking for $ac_word" >&5
+echo "$as_me:4917: 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
@@ -4451,7 +4929,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:4454: found $ac_dir/$ac_word" >&5
+echo "$as_me:4932: found $ac_dir/$ac_word" >&5
break
done
@@ -4459,10 +4937,10 @@ fi
fi
AR=$ac_cv_prog_AR
if test -n "$AR"; then
- echo "$as_me:4462: result: $AR" >&5
+ echo "$as_me:4940: result: $AR" >&5
echo "${ECHO_T}$AR" >&6
else
- echo "$as_me:4465: result: no" >&5
+ echo "$as_me:4943: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -4471,7 +4949,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:4474: checking for $ac_word" >&5
+echo "$as_me:4952: 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
@@ -4486,7 +4964,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:4489: found $ac_dir/$ac_word" >&5
+echo "$as_me:4967: found $ac_dir/$ac_word" >&5
break
done
@@ -4495,10 +4973,10 @@ fi
fi
ac_ct_AR=$ac_cv_prog_ac_ct_AR
if test -n "$ac_ct_AR"; then
- echo "$as_me:4498: result: $ac_ct_AR" >&5
+ echo "$as_me:4976: result: $ac_ct_AR" >&5
echo "${ECHO_T}$ac_ct_AR" >&6
else
- echo "$as_me:4501: result: no" >&5
+ echo "$as_me:4979: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -4511,16 +4989,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:4514: checking for extra ar flags" >&5
+ echo "$as_me:4992: checking for extra ar flags" >&5
echo $ECHO_N "checking for extra ar flags... $ECHO_C" >&6
AR="$AR $arflags"
- echo "$as_me:4517: result: $arflags" >&5
+ echo "$as_me:4995: result: $arflags" >&5
echo "${ECHO_T}$arflags" >&6
fi
fi
gmp_user_NM=$NM
-echo "$as_me:4523: checking for BSD-compatible nm" >&5
+echo "$as_me:5001: 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
@@ -4556,17 +5034,17 @@ fi
fi
NM="$lt_cv_path_NM"
-echo "$as_me:4559: result: $NM" >&5
+echo "$as_me:5037: 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:4566: checking for extra nm flags" >&5
+ echo "$as_me:5044: checking for extra nm flags" >&5
echo $ECHO_N "checking for extra nm flags... $ECHO_C" >&6
NM="$NM $nmflags"
- echo "$as_me:4569: result: $nmflags" >&5
+ echo "$as_me:5047: result: $nmflags" >&5
echo "${ECHO_T}$nmflags" >&6
fi
fi
@@ -4595,7 +5073,7 @@ case $host in
enable_shared=no
fi
if test "$enable_shared" != no && test "$enable_static" != no; then
- { { echo "$as_me:4598: error: cannot build both static and DLL, since gmp.h is different for each.
+ { { echo "$as_me:5076: 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;}
@@ -4712,7 +5190,7 @@ fi;
ac_prog=ld
if test "$GCC" = yes; then
# Check if gcc -print-prog-name=ld gives a path.
- echo "$as_me:4715: checking for ld used by GCC" >&5
+ echo "$as_me:5193: checking for ld used by GCC" >&5
echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
case $host in
*-*-mingw*)
@@ -4742,10 +5220,10 @@ echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
;;
esac
elif test "$with_gnu_ld" = yes; then
- echo "$as_me:4745: checking for GNU ld" >&5
+ echo "$as_me:5223: checking for GNU ld" >&5
echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
else
- echo "$as_me:4748: checking for non-GNU ld" >&5
+ echo "$as_me:5226: 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
@@ -4775,16 +5253,16 @@ fi
LD="$lt_cv_path_LD"
if test -n "$LD"; then
- echo "$as_me:4778: result: $LD" >&5
+ echo "$as_me:5256: result: $LD" >&5
echo "${ECHO_T}$LD" >&6
else
- echo "$as_me:4781: result: no" >&5
+ echo "$as_me:5259: result: no" >&5
echo "${ECHO_T}no" >&6
fi
-test -z "$LD" && { { echo "$as_me:4784: error: no acceptable ld found in \$PATH" >&5
+test -z "$LD" && { { echo "$as_me:5262: 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:4787: checking if the linker ($LD) is GNU ld" >&5
+echo "$as_me:5265: 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
@@ -4796,34 +5274,34 @@ else
lt_cv_prog_gnu_ld=no
fi
fi
-echo "$as_me:4799: result: $lt_cv_prog_gnu_ld" >&5
+echo "$as_me:5277: 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:4803: checking for $LD option to reload object files" >&5
+echo "$as_me:5281: 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:4810: result: $lt_cv_ld_reload_flag" >&5
+echo "$as_me:5288: 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:4815: checking whether ln -s works" >&5
+echo "$as_me:5293: 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:4819: result: yes" >&5
+ echo "$as_me:5297: result: yes" >&5
echo "${ECHO_T}yes" >&6
else
- echo "$as_me:4822: result: no, using $LN_S" >&5
+ echo "$as_me:5300: result: no, using $LN_S" >&5
echo "${ECHO_T}no, using $LN_S" >&6
fi
-echo "$as_me:4826: checking how to recognise dependant libraries" >&5
+echo "$as_me:5304: 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
@@ -5001,13 +5479,13 @@ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
esac
fi
-echo "$as_me:5004: result: $lt_cv_deplibs_check_method" >&5
+echo "$as_me:5482: 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:5010: checking command to parse $NM output" >&5
+echo "$as_me:5488: 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
@@ -5088,17 +5566,17 @@ void nm_test_func(){}
int main(){nm_test_var='a';nm_test_func();return(0);}
EOF
- if { (eval echo "$as_me:5091: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:5569: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:5094: \$? = $ac_status" >&5
+ echo "$as_me:5572: \$? = $ac_status" >&5
(exit $ac_status); }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { (eval echo "$as_me:5098: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5
+ if { (eval echo "$as_me:5576: \"$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:5101: \$? = $ac_status" >&5
+ echo "$as_me:5579: \$? = $ac_status" >&5
(exit $ac_status); } && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
@@ -5150,10 +5628,10 @@ EOF
save_CFLAGS="$CFLAGS"
LIBS="conftstm.$ac_objext"
CFLAGS="$CFLAGS$no_builtin_flag"
- if { (eval echo "$as_me:5153: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:5631: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5156: \$? = $ac_status" >&5
+ echo "$as_me:5634: \$? = $ac_status" >&5
(exit $ac_status); } && test -s conftest; then
pipe_works=yes
fi
@@ -5194,33 +5672,33 @@ else
fi
if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address";
then
- echo "$as_me:5197: result: failed" >&5
+ echo "$as_me:5675: result: failed" >&5
echo "${ECHO_T}failed" >&6
else
- echo "$as_me:5200: result: ok" >&5
+ echo "$as_me:5678: 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:5207: checking for $ac_header" >&5
+echo "$as_me:5685: 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 5213 "configure"
+#line 5691 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:5217: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5695: \"$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:5223: \$? = $ac_status" >&5
+ echo "$as_me:5701: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5239,7 +5717,7 @@ else
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:5242: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:5720: 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
@@ -5253,7 +5731,7 @@ done
case $deplibs_check_method in
file_magic*)
if test "$file_magic_cmd" = '$MAGIC_CMD'; then
- echo "$as_me:5256: checking for ${ac_tool_prefix}file" >&5
+ echo "$as_me:5734: 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
@@ -5308,16 +5786,16 @@ fi
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
if test -n "$MAGIC_CMD"; then
- echo "$as_me:5311: result: $MAGIC_CMD" >&5
+ echo "$as_me:5789: result: $MAGIC_CMD" >&5
echo "${ECHO_T}$MAGIC_CMD" >&6
else
- echo "$as_me:5314: result: no" >&5
+ echo "$as_me:5792: 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:5320: checking for file" >&5
+ echo "$as_me:5798: 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
@@ -5372,10 +5850,10 @@ fi
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
if test -n "$MAGIC_CMD"; then
- echo "$as_me:5375: result: $MAGIC_CMD" >&5
+ echo "$as_me:5853: result: $MAGIC_CMD" >&5
echo "${ECHO_T}$MAGIC_CMD" >&6
else
- echo "$as_me:5378: result: no" >&5
+ echo "$as_me:5856: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5391,7 +5869,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:5394: checking for $ac_word" >&5
+echo "$as_me:5872: 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
@@ -5406,7 +5884,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:5409: found $ac_dir/$ac_word" >&5
+echo "$as_me:5887: found $ac_dir/$ac_word" >&5
break
done
@@ -5414,10 +5892,10 @@ fi
fi
RANLIB=$ac_cv_prog_RANLIB
if test -n "$RANLIB"; then
- echo "$as_me:5417: result: $RANLIB" >&5
+ echo "$as_me:5895: result: $RANLIB" >&5
echo "${ECHO_T}$RANLIB" >&6
else
- echo "$as_me:5420: result: no" >&5
+ echo "$as_me:5898: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5426,7 +5904,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:5429: checking for $ac_word" >&5
+echo "$as_me:5907: 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
@@ -5441,7 +5919,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:5444: found $ac_dir/$ac_word" >&5
+echo "$as_me:5922: found $ac_dir/$ac_word" >&5
break
done
@@ -5450,10 +5928,10 @@ fi
fi
ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
if test -n "$ac_ct_RANLIB"; then
- echo "$as_me:5453: result: $ac_ct_RANLIB" >&5
+ echo "$as_me:5931: result: $ac_ct_RANLIB" >&5
echo "${ECHO_T}$ac_ct_RANLIB" >&6
else
- echo "$as_me:5456: result: no" >&5
+ echo "$as_me:5934: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5465,7 +5943,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:5468: checking for $ac_word" >&5
+echo "$as_me:5946: 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
@@ -5480,7 +5958,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:5483: found $ac_dir/$ac_word" >&5
+echo "$as_me:5961: found $ac_dir/$ac_word" >&5
break
done
@@ -5488,10 +5966,10 @@ fi
fi
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
- echo "$as_me:5491: result: $STRIP" >&5
+ echo "$as_me:5969: result: $STRIP" >&5
echo "${ECHO_T}$STRIP" >&6
else
- echo "$as_me:5494: result: no" >&5
+ echo "$as_me:5972: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5500,7 +5978,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:5503: checking for $ac_word" >&5
+echo "$as_me:5981: 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
@@ -5515,7 +5993,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:5518: found $ac_dir/$ac_word" >&5
+echo "$as_me:5996: found $ac_dir/$ac_word" >&5
break
done
@@ -5524,10 +6002,10 @@ fi
fi
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
- echo "$as_me:5527: result: $ac_ct_STRIP" >&5
+ echo "$as_me:6005: result: $ac_ct_STRIP" >&5
echo "${ECHO_T}$ac_ct_STRIP" >&6
else
- echo "$as_me:5530: result: no" >&5
+ echo "$as_me:6008: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5551,11 +6029,11 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
case $host in
*-*-irix6*)
# Find out which ABI we are using.
- echo '#line 5554 "configure"' > conftest.$ac_ext
- if { (eval echo "$as_me:5555: \"$ac_compile\"") >&5
+ echo '#line 6032 "configure"' > conftest.$ac_ext
+ if { (eval echo "$as_me:6033: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:5558: \$? = $ac_status" >&5
+ echo "$as_me:6036: \$? = $ac_status" >&5
(exit $ac_status); }; then
case `/usr/bin/file conftest.$ac_objext` in
*32-bit*)
@@ -5576,7 +6054,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:5579: checking whether the C compiler needs -belf" >&5
+ echo "$as_me:6057: 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
@@ -5589,7 +6067,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 5592 "configure"
+#line 6070 "configure"
#include "confdefs.h"
int
@@ -5601,16 +6079,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5604: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6082: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5607: \$? = $ac_status" >&5
+ echo "$as_me:6085: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5610: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6088: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5613: \$? = $ac_status" >&5
+ echo "$as_me:6091: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_cc_needs_belf=yes
else
@@ -5626,7 +6104,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:5629: result: $lt_cv_cc_needs_belf" >&5
+echo "$as_me:6107: 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
@@ -5638,7 +6116,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:5641: checking for $ac_word" >&5
+echo "$as_me:6119: 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
@@ -5653,7 +6131,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:5656: found $ac_dir/$ac_word" >&5
+echo "$as_me:6134: found $ac_dir/$ac_word" >&5
break
done
@@ -5661,10 +6139,10 @@ fi
fi
DLLTOOL=$ac_cv_prog_DLLTOOL
if test -n "$DLLTOOL"; then
- echo "$as_me:5664: result: $DLLTOOL" >&5
+ echo "$as_me:6142: result: $DLLTOOL" >&5
echo "${ECHO_T}$DLLTOOL" >&6
else
- echo "$as_me:5667: result: no" >&5
+ echo "$as_me:6145: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5673,7 +6151,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:5676: checking for $ac_word" >&5
+echo "$as_me:6154: 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
@@ -5688,7 +6166,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:5691: found $ac_dir/$ac_word" >&5
+echo "$as_me:6169: found $ac_dir/$ac_word" >&5
break
done
@@ -5697,10 +6175,10 @@ fi
fi
ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL
if test -n "$ac_ct_DLLTOOL"; then
- echo "$as_me:5700: result: $ac_ct_DLLTOOL" >&5
+ echo "$as_me:6178: result: $ac_ct_DLLTOOL" >&5
echo "${ECHO_T}$ac_ct_DLLTOOL" >&6
else
- echo "$as_me:5703: result: no" >&5
+ echo "$as_me:6181: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5712,7 +6190,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:5715: checking for $ac_word" >&5
+echo "$as_me:6193: 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
@@ -5727,7 +6205,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:5730: found $ac_dir/$ac_word" >&5
+echo "$as_me:6208: found $ac_dir/$ac_word" >&5
break
done
@@ -5735,10 +6213,10 @@ fi
fi
AS=$ac_cv_prog_AS
if test -n "$AS"; then
- echo "$as_me:5738: result: $AS" >&5
+ echo "$as_me:6216: result: $AS" >&5
echo "${ECHO_T}$AS" >&6
else
- echo "$as_me:5741: result: no" >&5
+ echo "$as_me:6219: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5747,7 +6225,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:5750: checking for $ac_word" >&5
+echo "$as_me:6228: 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
@@ -5762,7 +6240,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:5765: found $ac_dir/$ac_word" >&5
+echo "$as_me:6243: found $ac_dir/$ac_word" >&5
break
done
@@ -5771,10 +6249,10 @@ fi
fi
ac_ct_AS=$ac_cv_prog_ac_ct_AS
if test -n "$ac_ct_AS"; then
- echo "$as_me:5774: result: $ac_ct_AS" >&5
+ echo "$as_me:6252: result: $ac_ct_AS" >&5
echo "${ECHO_T}$ac_ct_AS" >&6
else
- echo "$as_me:5777: result: no" >&5
+ echo "$as_me:6255: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5786,7 +6264,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:5789: checking for $ac_word" >&5
+echo "$as_me:6267: 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
@@ -5801,7 +6279,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:5804: found $ac_dir/$ac_word" >&5
+echo "$as_me:6282: found $ac_dir/$ac_word" >&5
break
done
@@ -5809,10 +6287,10 @@ fi
fi
OBJDUMP=$ac_cv_prog_OBJDUMP
if test -n "$OBJDUMP"; then
- echo "$as_me:5812: result: $OBJDUMP" >&5
+ echo "$as_me:6290: result: $OBJDUMP" >&5
echo "${ECHO_T}$OBJDUMP" >&6
else
- echo "$as_me:5815: result: no" >&5
+ echo "$as_me:6293: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5821,7 +6299,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:5824: checking for $ac_word" >&5
+echo "$as_me:6302: 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
@@ -5836,7 +6314,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:5839: found $ac_dir/$ac_word" >&5
+echo "$as_me:6317: found $ac_dir/$ac_word" >&5
break
done
@@ -5845,10 +6323,10 @@ fi
fi
ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP
if test -n "$ac_ct_OBJDUMP"; then
- echo "$as_me:5848: result: $ac_ct_OBJDUMP" >&5
+ echo "$as_me:6326: result: $ac_ct_OBJDUMP" >&5
echo "${ECHO_T}$ac_ct_OBJDUMP" >&6
else
- echo "$as_me:5851: result: no" >&5
+ echo "$as_me:6329: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -5859,13 +6337,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:5862: checking if libtool should supply DllMain function" >&5
+ echo "$as_me:6340: 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 5868 "configure"
+#line 6346 "configure"
#include "confdefs.h"
int
@@ -5878,16 +6356,16 @@ extern int __attribute__((__stdcall__)) DllMain(void*, int, void*);
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5881: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6359: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5884: \$? = $ac_status" >&5
+ echo "$as_me:6362: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5887: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6365: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5890: \$? = $ac_status" >&5
+ echo "$as_me:6368: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_need_dllmain=no
else
@@ -5897,7 +6375,7 @@ lt_cv_need_dllmain=yes
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5900: result: $lt_cv_need_dllmain" >&5
+echo "$as_me:6378: result: $lt_cv_need_dllmain" >&5
echo "${ECHO_T}$lt_cv_need_dllmain" >&6
case $host/$CC in
@@ -5906,13 +6384,13 @@ echo "${ECHO_T}$lt_cv_need_dllmain" >&6
# require "-mdll"
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -mdll"
- echo "$as_me:5909: checking how to link DLLs" >&5
+ echo "$as_me:6387: 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 5915 "configure"
+#line 6393 "configure"
#include "confdefs.h"
int
@@ -5924,16 +6402,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5927: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6405: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:5930: \$? = $ac_status" >&5
+ echo "$as_me:6408: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:5933: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6411: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:5936: \$? = $ac_status" >&5
+ echo "$as_me:6414: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_cc_dll_switch=-mdll
else
@@ -5943,7 +6421,7 @@ lt_cv_cc_dll_switch=-dll
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:5946: result: $lt_cv_cc_dll_switch" >&5
+echo "$as_me:6424: result: $lt_cv_cc_dll_switch" >&5
echo "${ECHO_T}$lt_cv_cc_dll_switch" >&6
CFLAGS="$SAVE_CFLAGS" ;;
*-*-cygwin* | *-*-pw32*)
@@ -6045,7 +6523,7 @@ fi
set dummy $CC
compiler="$2"
-echo "$as_me:6048: checking for objdir" >&5
+echo "$as_me:6526: checking for objdir" >&5
echo $ECHO_N "checking for objdir... $ECHO_C" >&6
rm -f .libs 2>/dev/null
mkdir .libs 2>/dev/null
@@ -6056,7 +6534,7 @@ else
objdir=_libs
fi
rmdir .libs 2>/dev/null
-echo "$as_me:6059: result: $objdir" >&5
+echo "$as_me:6537: result: $objdir" >&5
echo "${ECHO_T}$objdir" >&6
# Check whether --with-pic or --without-pic was given.
@@ -6071,7 +6549,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:6074: checking for $compiler option to produce PIC" >&5
+echo "$as_me:6552: 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
@@ -6218,14 +6696,14 @@ else
fi
if test -z "$lt_cv_prog_cc_pic"; then
- echo "$as_me:6221: result: none" >&5
+ echo "$as_me:6699: result: none" >&5
echo "${ECHO_T}none" >&6
else
- echo "$as_me:6224: result: $lt_cv_prog_cc_pic" >&5
+ echo "$as_me:6702: 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:6228: checking if $compiler PIC flag $lt_cv_prog_cc_pic works" >&5
+ echo "$as_me:6706: 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
@@ -6233,7 +6711,7 @@ else
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
cat >conftest.$ac_ext <<_ACEOF
-#line 6236 "configure"
+#line 6714 "configure"
#include "confdefs.h"
int
@@ -6245,16 +6723,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6248: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6726: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6251: \$? = $ac_status" >&5
+ echo "$as_me:6729: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6254: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6732: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6257: \$? = $ac_status" >&5
+ echo "$as_me:6735: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
case $host_os in
hpux9* | hpux10* | hpux11*)
@@ -6290,23 +6768,23 @@ fi
lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic"
fi
- echo "$as_me:6293: result: $lt_cv_prog_cc_pic_works" >&5
+ echo "$as_me:6771: 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:6299: WARNING: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" >&5
+ { echo "$as_me:6777: 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:6303: WARNING: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5
+ { echo "$as_me:6781: 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:6309: checking if $compiler static flag $lt_cv_prog_cc_static works" >&5
+echo "$as_me:6787: 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
@@ -6315,7 +6793,7 @@ else
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
cat >conftest.$ac_ext <<_ACEOF
-#line 6318 "configure"
+#line 6796 "configure"
#include "confdefs.h"
int
@@ -6327,16 +6805,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6330: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6808: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:6333: \$? = $ac_status" >&5
+ echo "$as_me:6811: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:6336: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6814: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6339: \$? = $ac_status" >&5
+ echo "$as_me:6817: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
lt_cv_prog_cc_static_works=yes
else
@@ -6350,7 +6828,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:6353: result: $lt_cv_prog_cc_static_works" >&5
+echo "$as_me:6831: 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"
@@ -6361,7 +6839,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:6364: checking if $compiler supports -c -o file.$ac_objext" >&5
+echo "$as_me:6842: 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
@@ -6381,7 +6859,7 @@ chmod -w .
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
compiler_c_o=no
-if { (eval echo configure:6384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
+if { (eval echo configure:6862: \"$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
@@ -6405,12 +6883,12 @@ $rm -r conftest 2>/dev/null
fi
compiler_c_o=$lt_cv_compiler_c_o
-echo "$as_me:6408: result: $compiler_c_o" >&5
+echo "$as_me:6886: 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:6413: checking if $compiler supports -c -o file.lo" >&5
+ echo "$as_me:6891: 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
@@ -6422,7 +6900,7 @@ else
save_objext="$ac_objext"
ac_objext=lo
cat >conftest.$ac_ext <<_ACEOF
-#line 6425 "configure"
+#line 6903 "configure"
#include "confdefs.h"
int
@@ -6434,16 +6912,16 @@ int some_variable = 0;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6437: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6915: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6440: \$? = $ac_status" >&5
+ echo "$as_me:6918: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6443: \"$ac_try\"") >&5
+ { (eval echo "$as_me:6921: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6446: \$? = $ac_status" >&5
+ echo "$as_me:6924: \$? = $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
@@ -6464,7 +6942,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
fi
compiler_o_lo=$lt_cv_compiler_o_lo
- echo "$as_me:6467: result: $compiler_o_lo" >&5
+ echo "$as_me:6945: result: $compiler_o_lo" >&5
echo "${ECHO_T}$compiler_o_lo" >&6
else
compiler_o_lo=no
@@ -6474,7 +6952,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:6477: checking if we can lock with hard links" >&5
+ echo "$as_me:6955: 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*
@@ -6482,10 +6960,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:6485: result: $hard_links" >&5
+ echo "$as_me:6963: result: $hard_links" >&5
echo "${ECHO_T}$hard_links" >&6
if test "$hard_links" = no; then
- { echo "$as_me:6488: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
+ { echo "$as_me:6966: 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
@@ -6495,14 +6973,14 @@ fi
if test "$GCC" = yes; then
# Check to see if options -fno-rtti -fno-exceptions are supported by compiler
- echo "$as_me:6498: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
+ echo "$as_me:6976: 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 6505 "configure"
+#line 6983 "configure"
#include "confdefs.h"
int
@@ -6514,16 +6992,16 @@ int some_variable = 0;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6517: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6995: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:6520: \$? = $ac_status" >&5
+ echo "$as_me:6998: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:6523: \"$ac_try\"") >&5
+ { (eval echo "$as_me:7001: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:6526: \$? = $ac_status" >&5
+ echo "$as_me:7004: \$? = $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
@@ -6539,7 +7017,7 @@ cat conftest.$ac_ext >&5
fi
rm -f conftest.$ac_objext conftest.$ac_ext
CFLAGS="$save_CFLAGS"
- echo "$as_me:6542: result: $compiler_rtti_exceptions" >&5
+ echo "$as_me:7020: result: $compiler_rtti_exceptions" >&5
echo "${ECHO_T}$compiler_rtti_exceptions" >&6
if test "$compiler_rtti_exceptions" = "yes"; then
@@ -6550,7 +7028,7 @@ echo "${ECHO_T}$compiler_rtti_exceptions" >&6
fi
# See if the linker supports building shared libraries.
-echo "$as_me:6553: checking whether the linker ($LD) supports shared libraries" >&5
+echo "$as_me:7031: 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=
@@ -7202,12 +7680,12 @@ else
;;
esac
fi
-echo "$as_me:7205: result: $ld_shlibs" >&5
+echo "$as_me:7683: result: $ld_shlibs" >&5
echo "${ECHO_T}$ld_shlibs" >&6
test "$ld_shlibs" = no && can_build_shared=no
# Check hardcoding attributes.
-echo "$as_me:7210: checking how to hardcode library paths into programs" >&5
+echo "$as_me:7688: 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" || \
@@ -7231,20 +7709,20 @@ else
# directories.
hardcode_action=unsupported
fi
-echo "$as_me:7234: result: $hardcode_action" >&5
+echo "$as_me:7712: result: $hardcode_action" >&5
echo "${ECHO_T}$hardcode_action" >&6
striplib=
old_striplib=
-echo "$as_me:7239: checking whether stripping libraries is possible" >&5
+echo "$as_me:7717: 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:7244: result: yes" >&5
+ echo "$as_me:7722: result: yes" >&5
echo "${ECHO_T}yes" >&6
else
- echo "$as_me:7247: result: no" >&5
+ echo "$as_me:7725: result: no" >&5
echo "${ECHO_T}no" >&6
fi
@@ -7252,7 +7730,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:7255: checking dynamic linker characteristics" >&5
+echo "$as_me:7733: checking dynamic linker characteristics" >&5
echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6
library_names_spec=
libname_spec='lib$name'
@@ -7645,17 +8123,17 @@ sysv4*MP*)
dynamic_linker=no
;;
esac
-echo "$as_me:7648: result: $dynamic_linker" >&5
+echo "$as_me:8126: 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:7653: checking if libtool supports shared libraries" >&5
+echo "$as_me:8131: checking if libtool supports shared libraries" >&5
echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6
-echo "$as_me:7655: result: $can_build_shared" >&5
+echo "$as_me:8133: result: $can_build_shared" >&5
echo "${ECHO_T}$can_build_shared" >&6
-echo "$as_me:7658: checking whether to build shared libraries" >&5
+echo "$as_me:8136: 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
@@ -7676,14 +8154,14 @@ aix4*)
fi
;;
esac
-echo "$as_me:7679: result: $enable_shared" >&5
+echo "$as_me:8157: result: $enable_shared" >&5
echo "${ECHO_T}$enable_shared" >&6
-echo "$as_me:7682: checking whether to build static libraries" >&5
+echo "$as_me:8160: 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:7686: result: $enable_static" >&5
+echo "$as_me:8164: result: $enable_static" >&5
echo "${ECHO_T}$enable_static" >&6
if test "$hardcode_action" = relink; then
@@ -7721,13 +8199,13 @@ else
;;
*)
- echo "$as_me:7724: checking for shl_load" >&5
+ echo "$as_me:8202: 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 7730 "configure"
+#line 8208 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shl_load (); below. */
@@ -7758,16 +8236,16 @@ f = shl_load;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7761: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8239: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7764: \$? = $ac_status" >&5
+ echo "$as_me:8242: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7767: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8245: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7770: \$? = $ac_status" >&5
+ echo "$as_me:8248: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_shl_load=yes
else
@@ -7777,12 +8255,12 @@ ac_cv_func_shl_load=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:7780: result: $ac_cv_func_shl_load" >&5
+echo "$as_me:8258: 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:7785: checking for shl_load in -ldld" >&5
+ echo "$as_me:8263: 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
@@ -7790,7 +8268,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldld $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7793 "configure"
+#line 8271 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7809,16 +8287,16 @@ shl_load ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7812: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8290: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7815: \$? = $ac_status" >&5
+ echo "$as_me:8293: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7818: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8296: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7821: \$? = $ac_status" >&5
+ echo "$as_me:8299: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dld_shl_load=yes
else
@@ -7829,18 +8307,18 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7832: result: $ac_cv_lib_dld_shl_load" >&5
+echo "$as_me:8310: 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:7837: checking for dlopen" >&5
+ echo "$as_me:8315: 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 7843 "configure"
+#line 8321 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char dlopen (); below. */
@@ -7871,16 +8349,16 @@ f = dlopen;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7874: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8352: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7877: \$? = $ac_status" >&5
+ echo "$as_me:8355: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7880: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8358: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7883: \$? = $ac_status" >&5
+ echo "$as_me:8361: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_dlopen=yes
else
@@ -7890,12 +8368,12 @@ ac_cv_func_dlopen=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:7893: result: $ac_cv_func_dlopen" >&5
+echo "$as_me:8371: 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:7898: checking for dlopen in -ldl" >&5
+ echo "$as_me:8376: 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
@@ -7903,7 +8381,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldl $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7906 "configure"
+#line 8384 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7922,16 +8400,16 @@ dlopen ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7925: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8403: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7928: \$? = $ac_status" >&5
+ echo "$as_me:8406: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7931: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8409: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7934: \$? = $ac_status" >&5
+ echo "$as_me:8412: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dl_dlopen=yes
else
@@ -7942,12 +8420,12 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7945: result: $ac_cv_lib_dl_dlopen" >&5
+echo "$as_me:8423: 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:7950: checking for dlopen in -lsvld" >&5
+ echo "$as_me:8428: 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
@@ -7955,7 +8433,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lsvld $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 7958 "configure"
+#line 8436 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -7974,16 +8452,16 @@ dlopen ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7977: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8455: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:7980: \$? = $ac_status" >&5
+ echo "$as_me:8458: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:7983: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8461: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:7986: \$? = $ac_status" >&5
+ echo "$as_me:8464: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_svld_dlopen=yes
else
@@ -7994,12 +8472,12 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:7997: result: $ac_cv_lib_svld_dlopen" >&5
+echo "$as_me:8475: 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:8002: checking for dld_link in -ldld" >&5
+ echo "$as_me:8480: 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
@@ -8007,7 +8485,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldld $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 8010 "configure"
+#line 8488 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -8026,16 +8504,16 @@ dld_link ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8029: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8507: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8032: \$? = $ac_status" >&5
+ echo "$as_me:8510: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:8035: \"$ac_try\"") >&5
+ { (eval echo "$as_me:8513: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:8038: \$? = $ac_status" >&5
+ echo "$as_me:8516: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dld_dld_link=yes
else
@@ -8046,7 +8524,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:8049: result: $ac_cv_lib_dld_dld_link" >&5
+echo "$as_me:8527: 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"
@@ -8082,7 +8560,7 @@ fi
save_LIBS="$LIBS"
LIBS="$lt_cv_dlopen_libs $LIBS"
- echo "$as_me:8085: checking whether a program can dlopen itself" >&5
+ echo "$as_me:8563: 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
@@ -8093,7 +8571,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 8096 "configure"
+#line 8574 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -8154,10 +8632,10 @@ int main ()
exit (status);
}
EOF
- if { (eval echo "$as_me:8157: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:8635: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8160: \$? = $ac_status" >&5
+ echo "$as_me:8638: \$? = $ac_status" >&5
(exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
(./conftest; exit; ) 2>/dev/null
lt_status=$?
@@ -8174,12 +8652,12 @@ fi
rm -fr conftest*
fi
-echo "$as_me:8177: result: $lt_cv_dlopen_self" >&5
+echo "$as_me:8655: 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:8182: checking whether a statically linked program can dlopen itself" >&5
+ echo "$as_me:8660: 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
@@ -8190,7 +8668,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 8193 "configure"
+#line 8671 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -8251,10 +8729,10 @@ int main ()
exit (status);
}
EOF
- if { (eval echo "$as_me:8254: \"$ac_link\"") >&5
+ if { (eval echo "$as_me:8732: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:8257: \$? = $ac_status" >&5
+ echo "$as_me:8735: \$? = $ac_status" >&5
(exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
(./conftest; exit; ) 2>/dev/null
lt_status=$?
@@ -8271,7 +8749,7 @@ fi
rm -fr conftest*
fi
-echo "$as_me:8274: result: $lt_cv_dlopen_self_static" >&5
+echo "$as_me:8752: result: $lt_cv_dlopen_self_static" >&5
echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
fi
@@ -8301,7 +8779,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:8304: checking whether -lc should be explicitly linked in" >&5
+ echo "$as_me:8782: 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
@@ -8309,10 +8787,10 @@ else
$rm conftest*
echo 'static int dummy;' > conftest.$ac_ext
- if { (eval echo "$as_me:8312: \"$ac_compile\"") >&5
+ if { (eval echo "$as_me:8790: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:8315: \$? = $ac_status" >&5
+ echo "$as_me:8793: \$? = $ac_status" >&5
(exit $ac_status); }; then
soname=conftest
lib=conftest
@@ -8326,10 +8804,10 @@ else
libname=conftest
save_allow_undefined_flag=$allow_undefined_flag
allow_undefined_flag=
- if { (eval echo "$as_me:8329: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
+ if { (eval echo "$as_me:8807: \"$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:8332: \$? = $ac_status" >&5
+ echo "$as_me:8810: \$? = $ac_status" >&5
(exit $ac_status); }
then
lt_cv_archive_cmds_need_lc=no
@@ -8342,7 +8820,7 @@ else
fi
fi
- echo "$as_me:8345: result: $lt_cv_archive_cmds_need_lc" >&5
+ echo "$as_me:8823: result: $lt_cv_archive_cmds_need_lc" >&5
echo "${ECHO_T}$lt_cv_archive_cmds_need_lc" >&6
;;
esac
@@ -8914,7 +9392,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:8917: error: cannot create both shared and static libraries on this system, --disable one of the two" >&5
+ { { echo "$as_me:9395: 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; }; }
;;
@@ -8938,13 +9416,12 @@ esac
#
CFLAGS_PIC=$lt_cv_prog_cc_pic
-# i386 cygwin shared libraries are DLLs, and it seems they should be
-# non-PIC, certainly libtool only uses -DDLL_EXPORT, and the assembler
-# rejects ELF style _GLOBAL_OFFSET_TABLE_ expressions.
+# i386 cygwin and mingw shared libraries are DLLs, but don't use ELF style
+# _GLOBAL_OFFSET_TABLE_ things.
#
case $host in
- *-*-cygwin*) ASMFLAGS_PIC= ;;
- *) ASMFLAGS_PIC=-DPIC ;;
+ *-*-cygwin* | *-*-mingw*) ASMFLAGS_PIC= ;;
+ *) ASMFLAGS_PIC=-DPIC ;;
esac
# How to assemble, used with CFLAGS etc, see mpn/Makeasm.am.
@@ -8958,7 +9435,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:8961: checking if the assembler knows about MMX instructions" >&5
+ *mmx*) echo "$as_me:9438: 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
@@ -8968,10 +9445,10 @@ else
movq %mm0, %mm1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:8971: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:9448: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:8974: \$? = $ac_status" >&5
+ echo "$as_me:9451: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_mmx=yes
@@ -8982,7 +9459,7 @@ case $host in
gmp_cv_asm_x86_mmx=movq-bug
fi
else
- { echo "$as_me:8985: WARNING: \"dis\" not available to check for \"as\" movq bug" >&5
+ { echo "$as_me:9462: 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
@@ -8995,44 +9472,44 @@ fi
rm -f conftest*
fi
-echo "$as_me:8998: result: $gmp_cv_asm_x86_mmx" >&5
+echo "$as_me:9475: 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:9003: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9480: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
- { echo "$as_me:9005: WARNING: | WARNING WARNING WARNING" >&5
+ { echo "$as_me:9482: WARNING: | WARNING WARNING WARNING" >&5
echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;}
- { echo "$as_me:9007: WARNING: | Host CPU has MMX code, but the assembler" >&5
+ { echo "$as_me:9484: 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:9009: WARNING: | $CCAS $CFLAGS" >&5
+ { echo "$as_me:9486: WARNING: | $CCAS $CFLAGS" >&5
echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;}
- { echo "$as_me:9011: WARNING: | has the Solaris 2.6 and 2.7 bug where register to register" >&5
+ { echo "$as_me:9488: 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:9013: WARNING: | movq operands are reversed." >&5
+ { echo "$as_me:9490: WARNING: | movq operands are reversed." >&5
echo "$as_me: WARNING: | movq operands are reversed." >&2;}
- { echo "$as_me:9015: WARNING: | Non-MMX replacements will be used." >&5
+ { echo "$as_me:9492: WARNING: | Non-MMX replacements will be used." >&5
echo "$as_me: WARNING: | Non-MMX replacements will be used." >&2;}
- { echo "$as_me:9017: WARNING: | This will be an inferior build." >&5
+ { echo "$as_me:9494: WARNING: | This will be an inferior build." >&5
echo "$as_me: WARNING: | This will be an inferior build." >&2;}
- { echo "$as_me:9019: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9496: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
;;
no)
- { echo "$as_me:9023: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9500: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
- { echo "$as_me:9025: WARNING: | WARNING WARNING WARNING" >&5
+ { echo "$as_me:9502: WARNING: | WARNING WARNING WARNING" >&5
echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;}
- { echo "$as_me:9027: WARNING: | Host CPU has MMX code, but it can't be assembled by" >&5
+ { echo "$as_me:9504: 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:9029: WARNING: | $CCAS $CFLAGS" >&5
+ { echo "$as_me:9506: WARNING: | $CCAS $CFLAGS" >&5
echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;}
- { echo "$as_me:9031: WARNING: | Non-MMX replacements will be used." >&5
+ { echo "$as_me:9508: WARNING: | Non-MMX replacements will be used." >&5
echo "$as_me: WARNING: | Non-MMX replacements will be used." >&2;}
- { echo "$as_me:9033: WARNING: | This will be an inferior build." >&5
+ { echo "$as_me:9510: WARNING: | This will be an inferior build." >&5
echo "$as_me: WARNING: | This will be an inferior build." >&2;}
- { echo "$as_me:9035: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9512: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
;;
esac
@@ -9052,7 +9529,7 @@ fi
;;
esac
case "$path" in
- *sse2*) echo "$as_me:9055: checking if the assembler knows about SSE2 instructions" >&5
+ *sse2*) echo "$as_me:9532: 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
@@ -9062,10 +9539,10 @@ else
paddq %mm0, %mm1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:9065: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:9542: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:9068: \$? = $ac_status" >&5
+ echo "$as_me:9545: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_sse2=yes
@@ -9078,26 +9555,26 @@ fi
rm -f conftest*
fi
-echo "$as_me:9081: result: $gmp_cv_asm_x86_sse2" >&5
+echo "$as_me:9558: 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:9088: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9565: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
- { echo "$as_me:9090: WARNING: | WARNING WARNING WARNING" >&5
+ { echo "$as_me:9567: WARNING: | WARNING WARNING WARNING" >&5
echo "$as_me: WARNING: | WARNING WARNING WARNING" >&2;}
- { echo "$as_me:9092: WARNING: | Host CPU has SSE2 code, but it can't be assembled by" >&5
+ { echo "$as_me:9569: 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:9094: WARNING: | $CCAS $CFLAGS" >&5
+ { echo "$as_me:9571: WARNING: | $CCAS $CFLAGS" >&5
echo "$as_me: WARNING: | $CCAS $CFLAGS" >&2;}
- { echo "$as_me:9096: WARNING: | Non-SSE2 replacements will be used." >&5
+ { echo "$as_me:9573: WARNING: | Non-SSE2 replacements will be used." >&5
echo "$as_me: WARNING: | Non-SSE2 replacements will be used." >&2;}
- { echo "$as_me:9098: WARNING: | This will be an inferior build." >&5
+ { echo "$as_me:9575: WARNING: | This will be an inferior build." >&5
echo "$as_me: WARNING: | This will be an inferior build." >&2;}
- { echo "$as_me:9100: WARNING: +----------------------------------------------------------" >&5
+ { echo "$as_me:9577: WARNING: +----------------------------------------------------------" >&5
echo "$as_me: WARNING: +----------------------------------------------------------" >&2;}
tmp_path=
for i in $path; do
@@ -9118,13 +9595,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:9121: checking for ANSI C header files" >&5
+echo "$as_me:9598: 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 9127 "configure"
+#line 9604 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
@@ -9132,13 +9609,13 @@ else
#include <float.h>
_ACEOF
-if { (eval echo "$as_me:9135: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9612: \"$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:9141: \$? = $ac_status" >&5
+ echo "$as_me:9618: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -9160,7 +9637,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 9163 "configure"
+#line 9640 "configure"
#include "confdefs.h"
#include <string.h>
@@ -9178,7 +9655,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 9181 "configure"
+#line 9658 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -9199,7 +9676,7 @@ if test $ac_cv_header_stdc = yes; then
:
else
cat >conftest.$ac_ext <<_ACEOF
-#line 9202 "configure"
+#line 9679 "configure"
#include "confdefs.h"
#include <ctype.h>
#if ((' ' & 0x0FF) == 0x020)
@@ -9225,15 +9702,15 @@ main ()
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:9228: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9705: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:9231: \$? = $ac_status" >&5
+ echo "$as_me:9708: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:9233: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9710: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9236: \$? = $ac_status" >&5
+ echo "$as_me:9713: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -9246,7 +9723,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
fi
-echo "$as_me:9249: result: $ac_cv_header_stdc" >&5
+echo "$as_me:9726: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
if test $ac_cv_header_stdc = yes; then
@@ -9256,13 +9733,13 @@ EOF
fi
-echo "$as_me:9259: checking whether time.h and sys/time.h may both be included" >&5
+echo "$as_me:9736: 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 9265 "configure"
+#line 9742 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
@@ -9278,16 +9755,16 @@ return 0;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9281: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9758: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9284: \$? = $ac_status" >&5
+ echo "$as_me:9761: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9287: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9764: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9290: \$? = $ac_status" >&5
+ echo "$as_me:9767: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_header_time=yes
else
@@ -9297,7 +9774,7 @@ ac_cv_header_time=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9300: result: $ac_cv_header_time" >&5
+echo "$as_me:9777: result: $ac_cv_header_time" >&5
echo "${ECHO_T}$ac_cv_header_time" >&6
if test $ac_cv_header_time = yes; then
@@ -9313,23 +9790,23 @@ fi
for ac_header in locale.h sys/mman.h sys/param.h sys/processor.h sys/resource.h sys/sysctl.h sys/systemcfg.h sys/time.h sys/times.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:9316: checking for $ac_header" >&5
+echo "$as_me:9793: 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 9322 "configure"
+#line 9799 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
-if { (eval echo "$as_me:9326: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:9803: \"$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:9332: \$? = $ac_status" >&5
+ echo "$as_me:9809: \$? = $ac_status" >&5
(exit $ac_status); } >/dev/null; then
if test -s conftest.err; then
ac_cpp_err=$ac_c_preproc_warn_flag
@@ -9348,7 +9825,7 @@ else
fi
rm -f conftest.err conftest.$ac_ext
fi
-echo "$as_me:9351: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:9828: 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
@@ -9365,28 +9842,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:9368: checking for $ac_header" >&5
+echo "$as_me:9845: 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 9374 "configure"
+#line 9851 "configure"
#include "confdefs.h"
$ac_includes_default
#include <$ac_header>
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9380: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9857: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9383: \$? = $ac_status" >&5
+ echo "$as_me:9860: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9386: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9863: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9389: \$? = $ac_status" >&5
+ echo "$as_me:9866: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
else
@@ -9396,7 +9873,7 @@ eval "$as_ac_Header=no"
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9399: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:9876: 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
@@ -9406,13 +9883,13 @@ EOF
fi
done
-echo "$as_me:9409: checking whether optarg is declared" >&5
+echo "$as_me:9886: 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 9415 "configure"
+#line 9892 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9427,16 +9904,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9430: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9907: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9433: \$? = $ac_status" >&5
+ echo "$as_me:9910: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9436: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9913: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9439: \$? = $ac_status" >&5
+ echo "$as_me:9916: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_have_decl_optarg=yes
else
@@ -9446,7 +9923,7 @@ ac_cv_have_decl_optarg=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9449: result: $ac_cv_have_decl_optarg" >&5
+echo "$as_me:9926: 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
@@ -9460,13 +9937,13 @@ else
EOF
fi
-echo "$as_me:9463: checking whether vfprintf is declared" >&5
+echo "$as_me:9940: 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 9469 "configure"
+#line 9946 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9481,16 +9958,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9484: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9961: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9487: \$? = $ac_status" >&5
+ echo "$as_me:9964: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9490: \"$ac_try\"") >&5
+ { (eval echo "$as_me:9967: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9493: \$? = $ac_status" >&5
+ echo "$as_me:9970: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_have_decl_vfprintf=yes
else
@@ -9500,7 +9977,7 @@ ac_cv_have_decl_vfprintf=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9503: result: $ac_cv_have_decl_vfprintf" >&5
+echo "$as_me:9980: 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
@@ -9515,13 +9992,13 @@ EOF
fi
-echo "$as_me:9518: checking return type of signal handlers" >&5
+echo "$as_me:9995: 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 9524 "configure"
+#line 10001 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
@@ -9543,16 +10020,16 @@ int i;
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9546: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10023: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9549: \$? = $ac_status" >&5
+ echo "$as_me:10026: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9552: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10029: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9555: \$? = $ac_status" >&5
+ echo "$as_me:10032: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_signal=void
else
@@ -9562,7 +10039,7 @@ ac_cv_type_signal=int
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9565: result: $ac_cv_type_signal" >&5
+echo "$as_me:10042: result: $ac_cv_type_signal" >&5
echo "${ECHO_T}$ac_cv_type_signal" >&6
cat >>confdefs.h <<EOF
@@ -9570,13 +10047,13 @@ cat >>confdefs.h <<EOF
EOF
# the default includes are sufficient for all these types
-echo "$as_me:9573: checking for intmax_t" >&5
+echo "$as_me:10050: 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 9579 "configure"
+#line 10056 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9591,16 +10068,16 @@ if (sizeof (intmax_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9594: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10071: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9597: \$? = $ac_status" >&5
+ echo "$as_me:10074: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9600: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10077: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9603: \$? = $ac_status" >&5
+ echo "$as_me:10080: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_intmax_t=yes
else
@@ -9610,7 +10087,7 @@ ac_cv_type_intmax_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9613: result: $ac_cv_type_intmax_t" >&5
+echo "$as_me:10090: 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
@@ -9619,13 +10096,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9622: checking for long double" >&5
+echo "$as_me:10099: 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 9628 "configure"
+#line 10105 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9640,16 +10117,16 @@ if (sizeof (long double))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9643: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10120: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9646: \$? = $ac_status" >&5
+ echo "$as_me:10123: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9649: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10126: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9652: \$? = $ac_status" >&5
+ echo "$as_me:10129: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_long_double=yes
else
@@ -9659,7 +10136,7 @@ ac_cv_type_long_double=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9662: result: $ac_cv_type_long_double" >&5
+echo "$as_me:10139: 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
@@ -9668,13 +10145,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9671: checking for long long" >&5
+echo "$as_me:10148: 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 9677 "configure"
+#line 10154 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9689,16 +10166,16 @@ if (sizeof (long long))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9692: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10169: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9695: \$? = $ac_status" >&5
+ echo "$as_me:10172: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9698: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10175: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9701: \$? = $ac_status" >&5
+ echo "$as_me:10178: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_long_long=yes
else
@@ -9708,7 +10185,7 @@ ac_cv_type_long_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9711: result: $ac_cv_type_long_long" >&5
+echo "$as_me:10188: 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
@@ -9717,13 +10194,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9720: checking for ptrdiff_t" >&5
+echo "$as_me:10197: 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 9726 "configure"
+#line 10203 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9738,16 +10215,16 @@ if (sizeof (ptrdiff_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9741: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10218: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9744: \$? = $ac_status" >&5
+ echo "$as_me:10221: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9747: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10224: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9750: \$? = $ac_status" >&5
+ echo "$as_me:10227: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_ptrdiff_t=yes
else
@@ -9757,7 +10234,7 @@ ac_cv_type_ptrdiff_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9760: result: $ac_cv_type_ptrdiff_t" >&5
+echo "$as_me:10237: 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
@@ -9766,13 +10243,13 @@ cat >>confdefs.h <<EOF
EOF
fi
-echo "$as_me:9769: checking for quad_t" >&5
+echo "$as_me:10246: 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 9775 "configure"
+#line 10252 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -9787,16 +10264,16 @@ if (sizeof (quad_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9790: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10267: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9793: \$? = $ac_status" >&5
+ echo "$as_me:10270: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9796: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10273: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9799: \$? = $ac_status" >&5
+ echo "$as_me:10276: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_quad_t=yes
else
@@ -9806,7 +10283,7 @@ ac_cv_type_quad_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9809: result: $ac_cv_type_quad_t" >&5
+echo "$as_me:10286: 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
@@ -9816,13 +10293,13 @@ EOF
fi
-echo "$as_me:9819: checking for preprocessor stringizing operator" >&5
+echo "$as_me:10296: 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 9825 "configure"
+#line 10302 "configure"
#include "confdefs.h"
#define x(y) #y
@@ -9837,7 +10314,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:9840: result: $ac_cv_c_stringize" >&5
+echo "$as_me:10317: result: $ac_cv_c_stringize" >&5
echo "${ECHO_T}$ac_cv_c_stringize" >&6
if test $ac_cv_c_stringize = yes; then
@@ -9847,13 +10324,13 @@ EOF
fi
-echo "$as_me:9850: checking whether <stdarg.h> exists and works" >&5
+echo "$as_me:10327: 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 9856 "configure"
+#line 10333 "configure"
#include "confdefs.h"
#include <stdarg.h>
int foo (int x, ...)
@@ -9874,16 +10351,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9877: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10354: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9880: \$? = $ac_status" >&5
+ echo "$as_me:10357: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9883: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10360: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9886: \$? = $ac_status" >&5
+ echo "$as_me:10363: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_stdarg=yes
else
@@ -9894,7 +10371,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9897: result: $gmp_cv_c_stdarg" >&5
+echo "$as_me:10374: result: $gmp_cv_c_stdarg" >&5
echo "${ECHO_T}$gmp_cv_c_stdarg" >&6
if test $gmp_cv_c_stdarg = yes; then
@@ -9904,13 +10381,13 @@ EOF
fi
-echo "$as_me:9907: checking whether gcc __attribute__ ((const)) works" >&5
+echo "$as_me:10384: 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 9913 "configure"
+#line 10390 "configure"
#include "confdefs.h"
int foo (int x) __attribute__ ((const));
int
@@ -9922,16 +10399,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9925: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10402: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:9928: \$? = $ac_status" >&5
+ echo "$as_me:10405: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:9931: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10408: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:9934: \$? = $ac_status" >&5
+ echo "$as_me:10411: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_attribute_const=yes
else
@@ -9942,7 +10419,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:9945: result: $gmp_cv_c_attribute_const" >&5
+echo "$as_me:10422: 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
@@ -9952,7 +10429,7 @@ EOF
fi
-echo "$as_me:9955: checking whether gcc __attribute__ ((malloc)) works" >&5
+echo "$as_me:10432: 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
@@ -9961,10 +10438,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:9964: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:10441: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:9967: \$? = $ac_status" >&5
+ echo "$as_me:10444: \$? = $ac_status" >&5
(exit $ac_status); }; then
if grep "attribute directive ignored" conftest.out >/dev/null; then
gmp_cv_c_attribute_malloc=no
@@ -9978,7 +10455,7 @@ cat conftest.out >&5
rm -f conftest*
fi
-echo "$as_me:9981: result: $gmp_cv_c_attribute_malloc" >&5
+echo "$as_me:10458: 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
@@ -9988,13 +10465,13 @@ EOF
fi
-echo "$as_me:9991: checking whether gcc __attribute__ ((mode (XX))) works" >&5
+echo "$as_me:10468: 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 9997 "configure"
+#line 10474 "configure"
#include "confdefs.h"
typedef int SItype __attribute__ ((mode (SI)));
int
@@ -10006,16 +10483,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10009: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10486: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10012: \$? = $ac_status" >&5
+ echo "$as_me:10489: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10015: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10492: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10018: \$? = $ac_status" >&5
+ echo "$as_me:10495: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_attribute_mode=yes
else
@@ -10026,7 +10503,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10029: result: $gmp_cv_c_attribute_mode" >&5
+echo "$as_me:10506: 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
@@ -10036,13 +10513,13 @@ EOF
fi
-echo "$as_me:10039: checking whether gcc __attribute__ ((noreturn)) works" >&5
+echo "$as_me:10516: 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 10045 "configure"
+#line 10522 "configure"
#include "confdefs.h"
void foo (int x) __attribute__ ((noreturn));
int
@@ -10054,16 +10531,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10057: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10534: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10060: \$? = $ac_status" >&5
+ echo "$as_me:10537: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10063: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10540: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10066: \$? = $ac_status" >&5
+ echo "$as_me:10543: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_c_attribute_noreturn=yes
else
@@ -10074,7 +10551,7 @@ fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:10077: result: $gmp_cv_c_attribute_noreturn" >&5
+echo "$as_me:10554: 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
@@ -10084,7 +10561,7 @@ EOF
fi
-echo "$as_me:10087: checking for inline" >&5
+echo "$as_me:10564: 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
@@ -10092,7 +10569,7 @@ else
ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do
cat >conftest.$ac_ext <<_ACEOF
-#line 10095 "configure"
+#line 10572 "configure"
#include "confdefs.h"
#ifndef __cplusplus
static $ac_kw int static_foo () {return 0; }
@@ -10101,16 +10578,16 @@ $ac_kw int foo () {return 0; }
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10104: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10581: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10107: \$? = $ac_status" >&5
+ echo "$as_me:10584: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10110: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10587: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10113: \$? = $ac_status" >&5
+ echo "$as_me:10590: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_inline=$ac_kw; break
else
@@ -10121,7 +10598,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
-echo "$as_me:10124: result: $ac_cv_c_inline" >&5
+echo "$as_me:10601: result: $ac_cv_c_inline" >&5
echo "${ECHO_T}$ac_cv_c_inline" >&6
case $ac_cv_c_inline in
inline | yes) ;;
@@ -10140,7 +10617,7 @@ case $ac_cv_c_inline in
no) ;;
*)
cat >conftest.$ac_ext <<_ACEOF
-#line 10143 "configure"
+#line 10620 "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 */
@@ -10160,16 +10637,16 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10163: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10640: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10166: \$? = $ac_status" >&5
+ echo "$as_me:10643: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10169: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10646: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10172: \$? = $ac_status" >&5
+ echo "$as_me:10649: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
@@ -10179,7 +10656,7 @@ case $ac_cv_c_inline in
"") tmp_inline=inline ;;
*) tmp_inline=$ac_cv_c_inline ;;
esac
- { echo "$as_me:10182: WARNING: gmp.h doesnt recognise compiler \"$tmp_inline\", inlines will be unavailable" >&5
+ { echo "$as_me:10659: 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
@@ -10193,7 +10670,7 @@ case $host in
# These system don't have libm
;;
*-ncr-sysv4.3*)
- echo "$as_me:10196: checking for _mwvalidcheckl in -lmw" >&5
+ echo "$as_me:10673: 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
@@ -10201,7 +10678,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lmw $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 10204 "configure"
+#line 10681 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
@@ -10220,16 +10697,16 @@ _mwvalidcheckl ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10223: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10700: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10226: \$? = $ac_status" >&5
+ echo "$as_me:10703: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10229: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10706: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10232: \$? = $ac_status" >&5
+ echo "$as_me:10709: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_mw__mwvalidcheckl=yes
else
@@ -10240,13 +10717,13 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10243: result: $ac_cv_lib_mw__mwvalidcheckl" >&5
+echo "$as_me:10720: 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:10249: checking for main in -lm" >&5
+ echo "$as_me:10726: 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
@@ -10254,7 +10731,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 10257 "configure"
+#line 10734 "configure"
#include "confdefs.h"
int
@@ -10266,16 +10743,16 @@ main ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10269: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10746: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10272: \$? = $ac_status" >&5
+ echo "$as_me:10749: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10275: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10752: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10278: \$? = $ac_status" >&5
+ echo "$as_me:10755: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_m_main=yes
else
@@ -10286,7 +10763,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10289: result: $ac_cv_lib_m_main" >&5
+echo "$as_me:10766: 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"
@@ -10294,7 +10771,7 @@ fi
;;
*)
- echo "$as_me:10297: checking for main in -lm" >&5
+ echo "$as_me:10774: 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
@@ -10302,7 +10779,7 @@ else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
-#line 10305 "configure"
+#line 10782 "configure"
#include "confdefs.h"
int
@@ -10314,16 +10791,16 @@ main ();
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10317: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10794: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10320: \$? = $ac_status" >&5
+ echo "$as_me:10797: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10323: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10800: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10326: \$? = $ac_status" >&5
+ echo "$as_me:10803: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_m_main=yes
else
@@ -10334,7 +10811,7 @@ fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
-echo "$as_me:10337: result: $ac_cv_lib_m_main" >&5
+echo "$as_me:10814: 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"
@@ -10345,13 +10822,13 @@ esac
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
-echo "$as_me:10348: checking for working alloca.h" >&5
+echo "$as_me:10825: 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 10354 "configure"
+#line 10831 "configure"
#include "confdefs.h"
#include <alloca.h>
int
@@ -10363,16 +10840,16 @@ char *p = (char *) alloca (2 * sizeof (int));
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10366: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10843: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10369: \$? = $ac_status" >&5
+ echo "$as_me:10846: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10372: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10849: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10375: \$? = $ac_status" >&5
+ echo "$as_me:10852: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_header_alloca=yes
else
@@ -10382,7 +10859,7 @@ gmp_cv_header_alloca=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10385: result: $gmp_cv_header_alloca" >&5
+echo "$as_me:10862: result: $gmp_cv_header_alloca" >&5
echo "${ECHO_T}$gmp_cv_header_alloca" >&6
if test $gmp_cv_header_alloca = yes; then
@@ -10392,13 +10869,13 @@ EOF
fi
-echo "$as_me:10395: checking for alloca (via gmp-impl.h)" >&5
+echo "$as_me:10872: 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 10401 "configure"
+#line 10878 "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 */
@@ -10416,16 +10893,16 @@ char *p = (char *) alloca (1);
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10419: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10896: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10422: \$? = $ac_status" >&5
+ echo "$as_me:10899: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10425: \"$ac_try\"") >&5
+ { (eval echo "$as_me:10902: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10428: \$? = $ac_status" >&5
+ echo "$as_me:10905: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_func_alloca=yes
else
@@ -10435,7 +10912,7 @@ gmp_cv_func_alloca=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10438: result: $gmp_cv_func_alloca" >&5
+echo "$as_me:10915: result: $gmp_cv_func_alloca" >&5
echo "${ECHO_T}$gmp_cv_func_alloca" >&6
if test $gmp_cv_func_alloca = yes; then
@@ -10445,7 +10922,7 @@ EOF
fi
-echo "$as_me:10448: checking how to allocate temporary memory" >&5
+echo "$as_me:10925: 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
@@ -10469,12 +10946,12 @@ else
esac
fi
-echo "$as_me:10472: result: $gmp_cv_option_alloca" >&5
+echo "$as_me:10949: 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:10477: error: --enable-alloca=alloca specified, but alloca not available" >&5
+ { { echo "$as_me:10954: 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
@@ -10510,14 +10987,14 @@ EOF
;;
*)
# checks at the start of configure.in should protect us
- { { echo "$as_me:10513: error: unrecognised --enable-alloca=$gmp_cv_option_alloca" >&5
+ { { echo "$as_me:10990: 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 10520 "configure"
+#line 10997 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -10538,22 +11015,22 @@ main ()
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10541: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11018: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:10544: \$? = $ac_status" >&5
+ echo "$as_me:11021: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:10547: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11024: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10550: \$? = $ac_status" >&5
+ echo "$as_me:11027: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
:
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
-{ echo "$as_me:10556: WARNING: gmp.h doesnt recognise <stdio.h>, FILE prototypes will be unavailable" >&5
+{ echo "$as_me:11033: 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
@@ -10573,13 +11050,13 @@ esac
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:10576: checking for $ac_func" >&5
+echo "$as_me:11053: 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 10582 "configure"
+#line 11059 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
@@ -10610,16 +11087,16 @@ f = $ac_func;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10613: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11090: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10616: \$? = $ac_status" >&5
+ echo "$as_me:11093: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10619: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11096: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10622: \$? = $ac_status" >&5
+ echo "$as_me:11099: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
@@ -10629,7 +11106,7 @@ eval "$as_ac_var=no"
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10632: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:11109: 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
@@ -10639,13 +11116,13 @@ EOF
fi
done
-echo "$as_me:10642: checking for vsnprintf" >&5
+echo "$as_me:11119: 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 10648 "configure"
+#line 11125 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char vsnprintf (); below. */
@@ -10676,16 +11153,16 @@ f = vsnprintf;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10679: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11156: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10682: \$? = $ac_status" >&5
+ echo "$as_me:11159: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
- { (eval echo "$as_me:10685: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11162: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10688: \$? = $ac_status" >&5
+ echo "$as_me:11165: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_vsnprintf=yes
else
@@ -10695,7 +11172,7 @@ ac_cv_func_vsnprintf=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
-echo "$as_me:10698: result: $ac_cv_func_vsnprintf" >&5
+echo "$as_me:11175: 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
@@ -10704,7 +11181,7 @@ else
fi
if test "$gmp_vsnprintf_exists" = yes; then
- echo "$as_me:10707: checking whether vsnprintf works" >&5
+ echo "$as_me:11184: 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
@@ -10713,7 +11190,7 @@ else
gmp_cv_func_vsnprintf=probably
else
cat >conftest.$ac_ext <<_ACEOF
-#line 10716 "configure"
+#line 11193 "configure"
#include "confdefs.h"
#if HAVE_STDARG
@@ -10760,15 +11237,15 @@ main ()
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:10763: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11240: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:10766: \$? = $ac_status" >&5
+ echo "$as_me:11243: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:10768: \"$ac_try\"") >&5
+ { (eval echo "$as_me:11245: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:10771: \$? = $ac_status" >&5
+ echo "$as_me:11248: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
gmp_cv_func_vsnprintf=yes
else
@@ -10781,10 +11258,10 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
-echo "$as_me:10784: result: $gmp_cv_func_vsnprintf" >&5
+echo "$as_me:11261: 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:10787: WARNING: cannot check for properly working vsnprintf when cross compiling, will assume it's ok" >&5
+ { echo "$as_me:11264: 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
@@ -10921,7 +11398,7 @@ EOF
fi
done
if test $found = no; then
- { { echo "$as_me:10924: error: no version of $tmp_fn found in path: $path" >&5
+ { { echo "$as_me:11401: 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
@@ -10936,7 +11413,7 @@ fi
# Don't demand an m4 unless it's actually needed.
if test $found_asm = yes; then
-echo "$as_me:10939: checking for suitable m4" >&5
+echo "$as_me:11416: 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
@@ -10972,7 +11449,7 @@ EOF
done
IFS="$ac_save_ifs"
if test -z "$gmp_cv_prog_m4"; then
- { { echo "$as_me:10975: error: No usable m4 in \$PATH or /usr/5bin (see config.log for reasons)." >&5
+ { { echo "$as_me:11452: 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
@@ -10980,11 +11457,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:10983: result: $gmp_cv_prog_m4" >&5
+echo "$as_me:11460: result: $gmp_cv_prog_m4" >&5
echo "${ECHO_T}$gmp_cv_prog_m4" >&6
M4="$gmp_cv_prog_m4"
-echo "$as_me:10987: checking if m4wrap produces spurious output" >&5
+echo "$as_me:11464: 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
@@ -11006,7 +11483,7 @@ else
fi
fi
-echo "$as_me:11009: result: $gmp_cv_m4_m4wrap_spurious" >&5
+echo "$as_me:11486: 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
@@ -11021,7 +11498,7 @@ if test $found_asm = no && test $found_S = no; then
fi
if test "$gmp_asm_syntax_testing" != no; then
- echo "$as_me:11024: checking how to switch to text section" >&5
+ echo "$as_me:11501: 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
@@ -11033,11 +11510,11 @@ else
esac
fi
-echo "$as_me:11036: result: $gmp_cv_asm_text" >&5
+echo "$as_me:11513: 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:11040: checking how to switch to data section" >&5
+ echo "$as_me:11517: 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
@@ -11048,11 +11525,11 @@ else
esac
fi
-echo "$as_me:11051: result: $gmp_cv_asm_data" >&5
+echo "$as_me:11528: 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:11055: checking what assembly label suffix to use" >&5
+ echo "$as_me:11532: 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
@@ -11064,11 +11541,11 @@ else
esac
fi
-echo "$as_me:11067: result: $gmp_cv_asm_label_suffix" >&5
+echo "$as_me:11544: 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:11071: checking how to export a symbol" >&5
+ echo "$as_me:11548: 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
@@ -11079,11 +11556,11 @@ else
esac
fi
-echo "$as_me:11082: result: $gmp_cv_asm_globl" >&5
+echo "$as_me:11559: 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:11086: checking if globals are prefixed by underscore" >&5
+echo "$as_me:11563: 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
@@ -11109,10 +11586,10 @@ EOF
;;
esac
gmp_compile="$CC $CFLAGS $CPPFLAGS conftes1.c conftes2.s 1>&5"
- if { (eval echo "$as_me:11112: \"$gmp_compile\"") >&5
+ if { (eval echo "$as_me:11589: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:11115: \$? = $ac_status" >&5
+ echo "$as_me:11592: \$? = $ac_status" >&5
(exit $ac_status); }; then
eval tmp_result$tmp_underscore=yes
else
@@ -11122,7 +11599,7 @@ done
if test $tmp_result_ = yes; then
if test $tmp_result = yes; then
- { { echo "$as_me:11125: error: Test program unexpectedly links both with and without underscore." >&5
+ { { echo "$as_me:11602: 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
@@ -11132,7 +11609,7 @@ else
if test $tmp_result = yes; then
gmp_cv_asm_underscore=no
else
- { { echo "$as_me:11135: error: Test program links neither with nor without underscore." >&5
+ { { echo "$as_me:11612: 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
@@ -11140,7 +11617,7 @@ fi
rm -f conftes1* conftes2* a.out
fi
-echo "$as_me:11143: result: $gmp_cv_asm_underscore" >&5
+echo "$as_me:11620: result: $gmp_cv_asm_underscore" >&5
echo "${ECHO_T}$gmp_cv_asm_underscore" >&6
if test "$gmp_cv_asm_underscore" = "yes"; then
@@ -11152,7 +11629,7 @@ echo 'define(<GSYM_PREFIX>, <>)' >>$gmp_tmpconfigm4
fi
-echo "$as_me:11155: checking how to switch to read-only data section" >&5
+echo "$as_me:11632: 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
@@ -11169,10 +11646,10 @@ EOF
echo "Test program:" >&5
cat conftest.c >&5
gmp_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c >&5"
-if { (eval echo "$as_me:11172: \"$gmp_compile\"") >&5
+if { (eval echo "$as_me:11649: \"$gmp_compile\"") >&5
(eval $gmp_compile) 2>&5
ac_status=$?
- echo "$as_me:11175: \$? = $ac_status" >&5
+ echo "$as_me:11652: \$? = $ac_status" >&5
(exit $ac_status); }; then
echo "Compiler output:" >&5
cat conftest.s >&5
@@ -11202,11 +11679,11 @@ if { (eval echo "$as_me:11172: \"$gmp_compile\"") >&5
fi
fi
-echo "$as_me:11205: result: $gmp_cv_asm_rodata" >&5
+echo "$as_me:11682: 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:11209: checking if the export directive needs an attribute" >&5
+ echo "$as_me:11686: 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
@@ -11217,11 +11694,11 @@ else
esac
fi
-echo "$as_me:11220: result: $gmp_cv_asm_globl_attr" >&5
+echo "$as_me:11697: 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:11224: checking how the .type assembly directive should be used" >&5
+ echo "$as_me:11701: 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
@@ -11231,10 +11708,10 @@ else
.type sym,${gmp_tmp_prefix}function
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11234: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11711: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11237: \$? = $ac_status" >&5
+ echo "$as_me:11714: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_type=".type \$1,${gmp_tmp_prefix}\$2"
@@ -11254,11 +11731,11 @@ if test -z "$gmp_cv_asm_type"; then
fi
fi
-echo "$as_me:11257: result: $gmp_cv_asm_type" >&5
+echo "$as_me:11734: 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:11261: checking if the .size assembly directive works" >&5
+ echo "$as_me:11738: 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
@@ -11267,10 +11744,10 @@ else
.size sym,1
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11270: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11747: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11273: \$? = $ac_status" >&5
+ echo "$as_me:11750: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_size=".size \$1,\$2"
@@ -11283,11 +11760,11 @@ fi
rm -f conftest*
fi
-echo "$as_me:11286: result: $gmp_cv_asm_size" >&5
+echo "$as_me:11763: 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:11290: checking what prefix to use for a local label" >&5
+echo "$as_me:11767: 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
@@ -11302,15 +11779,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:11305: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11782: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11308: \$? = $ac_status" >&5
+ echo "$as_me:11785: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
$NM conftest.o >&5 2>&5
if test $? != 0; then
- { echo "$as_me:11313: WARNING: NM failure, using default local label $gmp_cv_asm_lsym_prefix" >&5
+ { echo "$as_me:11790: 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
@@ -11331,12 +11808,12 @@ rm -f conftest*
done
rm -f conftest*
if test $gmp_found = no; then
- { echo "$as_me:11334: WARNING: cannot determine local label, using default $gmp_cv_asm_lsym_prefix" >&5
+ { echo "$as_me:11811: 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:11339: result: $gmp_cv_asm_lsym_prefix" >&5
+echo "$as_me:11816: 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
@@ -11344,7 +11821,7 @@ cat >>confdefs.h <<EOF
#define LSYM_PREFIX "$gmp_cv_asm_lsym_prefix"
EOF
-echo "$as_me:11347: checking how to define a 32-bit word" >&5
+echo "$as_me:11824: 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
@@ -11369,10 +11846,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:11372: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11849: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11375: \$? = $ac_status" >&5
+ echo "$as_me:11852: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_tmp_val=`$NM conftest.o | grep foo | \
@@ -11394,17 +11871,17 @@ rm -f conftest*
;;
esac
if test -z "$gmp_cv_asm_w32"; then
- { { echo "$as_me:11397: error: cannot determine how to define a 32-bit word" >&5
+ { { echo "$as_me:11874: 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:11403: result: $gmp_cv_asm_w32" >&5
+echo "$as_me:11880: 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:11407: checking if .align assembly directive is logarithmic" >&5
+echo "$as_me:11884: 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
@@ -11419,10 +11896,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:11422: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11899: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11425: \$? = $ac_status" >&5
+ echo "$as_me:11902: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_tmp_val=`$NM conftest.o | grep foo | \
@@ -11436,14 +11913,14 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:11439: error: cannot assemble alignment test" >&5
+ { { echo "$as_me:11916: 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:11446: result: $gmp_cv_asm_align_log" >&5
+echo "$as_me:11923: 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
@@ -11451,7 +11928,7 @@ echo "define(<ALIGN_LOGARITHMIC>,<$gmp_cv_asm_align_log>)" >> $gmp_tmpconfigm4
case $host in
m68*-*-*)
-echo "$as_me:11454: checking assembler instruction and register style" >&5
+echo "$as_me:11931: 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
@@ -11463,10 +11940,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:11466: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:11943: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11469: \$? = $ac_status" >&5
+ echo "$as_me:11946: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_instruction=$i
@@ -11483,14 +11960,14 @@ rm -f conftest*
done
fi
-echo "$as_me:11486: result: $gmp_cv_asm_m68k_instruction" >&5
+echo "$as_me:11963: 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:11493: error: cannot determine assembler instruction and register style" >&5
+*) { { echo "$as_me:11970: 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
@@ -11499,7 +11976,7 @@ echo "define(<WANT_REGISTER_PERCENT>, <\`$want_register_percent'>)" >> $gmp_tmpc
echo "define(<WANT_DOT_SIZE>, <\`$want_dot_size'>)" >> $gmp_tmpconfigm4
-echo "$as_me:11502: checking assembler addressing style" >&5
+echo "$as_me:11979: 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
@@ -11507,14 +11984,14 @@ else
case $gmp_cv_asm_m68k_instruction in
addl*) movel=movel ;;
add.l*) movel=move.l ;;
-*) { { echo "$as_me:11510: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5
+*) { { echo "$as_me:11987: 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:11517: error: oops, unrecognised gmp_cv_asm_m68k_instruction" >&5
+*) { { echo "$as_me:11994: 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
@@ -11523,10 +12000,10 @@ cat >conftest.s <<EOF
$movel $dreg, $areg@-
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11526: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12003: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11529: \$? = $ac_status" >&5
+ echo "$as_me:12006: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_addressing=mit
@@ -11539,10 +12016,10 @@ else
$movel $dreg, -($areg)
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11542: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12019: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11545: \$? = $ac_status" >&5
+ echo "$as_me:12022: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_addressing=motorola
@@ -11550,7 +12027,7 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:11553: error: cannot determine assembler addressing style" >&5
+ { { echo "$as_me:12030: error: cannot determine assembler addressing style" >&5
echo "$as_me: error: cannot determine assembler addressing style" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -11560,12 +12037,12 @@ fi
rm -f conftest*
fi
-echo "$as_me:11563: result: $gmp_cv_asm_m68k_addressing" >&5
+echo "$as_me:12040: 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:11568: checking assembler shortest branches" >&5
+echo "$as_me:12045: 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
@@ -11578,10 +12055,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:11581: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12058: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11584: \$? = $ac_status" >&5
+ echo "$as_me:12061: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_m68k_branches=$i
@@ -11598,10 +12075,10 @@ rm -f conftest*
done
fi
-echo "$as_me:11601: result: $gmp_cv_asm_m68k_branches" >&5
+echo "$as_me:12078: 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:11604: error: cannot determine assembler branching style" >&5
+ { { echo "$as_me:12081: error: cannot determine assembler branching style" >&5
echo "$as_me: error: cannot determine assembler branching style" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -11611,7 +12088,7 @@ echo "define(<WANT_BRANCHES>, <\`$gmp_cv_asm_m68k_branches'>)" >> $gmp_tmpconfig
;;
power*-*-*)
-echo "$as_me:11614: checking if the assembler needs r on registers" >&5
+echo "$as_me:12091: 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
@@ -11621,10 +12098,10 @@ else
mtctr 6
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11624: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12101: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11627: \$? = $ac_status" >&5
+ echo "$as_me:12104: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_powerpc_r_registers=no
@@ -11637,10 +12114,10 @@ else
mtctr r6
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11640: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12117: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11643: \$? = $ac_status" >&5
+ echo "$as_me:12120: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_powerpc_r_registers=yes
@@ -11648,7 +12125,7 @@ else
cat conftest.out >&5
echo "configure: failed program was:" >&5
cat conftest.s >&5
- { { echo "$as_me:11651: error: neither \"mtctr 6\" nor \"mtctr r6\" works" >&5
+ { { echo "$as_me:12128: 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
@@ -11658,7 +12135,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:11661: result: $gmp_cv_asm_powerpc_r_registers" >&5
+echo "$as_me:12138: 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
@@ -11677,7 +12154,7 @@ echo "include_mpn(\`powerpc32/aix.m4')" >> $gmp_tmpconfigm4i
i?86*-*-* | k[5-8]*-*-* | pentium*-*-* | athlon-*-*)
-echo "$as_me:11680: checking if the .align directive accepts an 0x90 fill in .text" >&5
+echo "$as_me:12157: 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
@@ -11689,10 +12166,10 @@ else
.align 4, 0x90
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11692: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12169: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11695: \$? = $ac_status" >&5
+ echo "$as_me:12172: \$? = $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
@@ -11710,12 +12187,12 @@ fi
rm -f conftest*
fi
-echo "$as_me:11713: result: $gmp_cv_asm_align_fill_0x90" >&5
+echo "$as_me:12190: 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:11718: checking if the assembler takes cl with shldl" >&5
+echo "$as_me:12195: 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
@@ -11725,10 +12202,10 @@ else
shldl %cl, %eax, %ebx
EOF
gmp_assemble="$CCAS $CFLAGS conftest.s >conftest.out 2>&1"
-if { (eval echo "$as_me:11728: \"$gmp_assemble\"") >&5
+if { (eval echo "$as_me:12205: \"$gmp_assemble\"") >&5
(eval $gmp_assemble) 2>&5
ac_status=$?
- echo "$as_me:11731: \$? = $ac_status" >&5
+ echo "$as_me:12208: \$? = $ac_status" >&5
(exit $ac_status); }; then
cat conftest.out >&5
gmp_cv_asm_x86_shldl_cl=yes
@@ -11741,7 +12218,7 @@ fi
rm -f conftest*
fi
-echo "$as_me:11744: result: $gmp_cv_asm_x86_shldl_cl" >&5
+echo "$as_me:12221: 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
@@ -11755,7 +12232,7 @@ fi
if test "$enable_profiling" != no; then
-echo "$as_me:11758: checking how to call x86 mcount" >&5
+echo "$as_me:12235: 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();}
@@ -11763,10 +12240,10 @@ EOF
if test "$enable_static" = yes; then
gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c 1>&5"
- if { (eval echo "$as_me:11766: \"$gmp_asmout_compile\"") >&5
+ if { (eval echo "$as_me:12243: \"$gmp_asmout_compile\"") >&5
(eval $gmp_asmout_compile) 2>&5
ac_status=$?
- echo "$as_me:11769: \$? = $ac_status" >&5
+ echo "$as_me:12246: \$? = $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`
@@ -11775,12 +12252,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:11778: error: Cannot find mcount call for non-PIC" >&5
+ { { echo "$as_me:12255: 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:11783: error: Cannot compile test program for non-PIC" >&5
+ { { echo "$as_me:12260: 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
@@ -11788,10 +12265,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:11791: \"$gmp_asmout_compile\"") >&5
+ if { (eval echo "$as_me:12268: \"$gmp_asmout_compile\"") >&5
(eval $gmp_asmout_compile) 2>&5
ac_status=$?
- echo "$as_me:11794: \$? = $ac_status" >&5
+ echo "$as_me:12271: \$? = $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`
@@ -11800,12 +12277,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:11803: error: Cannot find mcount call for PIC" >&5
+ { { echo "$as_me:12280: 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:11808: error: Cannot compile test program for PIC" >&5
+ { { echo "$as_me:12285: error: Cannot compile test program for PIC" >&5
echo "$as_me: error: Cannot compile test program for PIC" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -11820,7 +12297,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:11823: result: determined" >&5
+echo "$as_me:12300: result: determined" >&5
echo "${ECHO_T}determined" >&6
fi
@@ -11842,7 +12319,7 @@ for tmp_dir in $path; do
fi
done
if test -z "$gmp_mparam_source"; then
- { { echo "$as_me:11845: error: no version of gmp-mparam.h found in path: $path" >&5
+ { { echo "$as_me:12322: 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
@@ -11861,13 +12338,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:11864: checking for mp_limb_t" >&5
+ echo "$as_me:12341: 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 11870 "configure"
+#line 12347 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11887,16 +12364,16 @@ if (sizeof (mp_limb_t))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11890: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12367: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11893: \$? = $ac_status" >&5
+ echo "$as_me:12370: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11896: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12373: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11899: \$? = $ac_status" >&5
+ echo "$as_me:12376: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_mp_limb_t=yes
else
@@ -11906,10 +12383,10 @@ ac_cv_type_mp_limb_t=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:11909: result: $ac_cv_type_mp_limb_t" >&5
+echo "$as_me:12386: result: $ac_cv_type_mp_limb_t" >&5
echo "${ECHO_T}$ac_cv_type_mp_limb_t" >&6
-echo "$as_me:11912: checking size of mp_limb_t" >&5
+echo "$as_me:12389: 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
@@ -11918,7 +12395,7 @@ else
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 11921 "configure"
+#line 12398 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11935,21 +12412,21 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= 0)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11938: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12415: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11941: \$? = $ac_status" >&5
+ echo "$as_me:12418: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11944: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12421: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11947: \$? = $ac_status" >&5
+ echo "$as_me:12424: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 11952 "configure"
+#line 12429 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -11966,16 +12443,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11969: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12446: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:11972: \$? = $ac_status" >&5
+ echo "$as_me:12449: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:11975: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12452: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:11978: \$? = $ac_status" >&5
+ echo "$as_me:12455: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -11991,7 +12468,7 @@ cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 11994 "configure"
+#line 12471 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -12008,16 +12485,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) >= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12011: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12488: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12014: \$? = $ac_status" >&5
+ echo "$as_me:12491: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12017: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12494: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12020: \$? = $ac_status" >&5
+ echo "$as_me:12497: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -12033,7 +12510,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 12036 "configure"
+#line 12513 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -12050,16 +12527,16 @@ int _array_ [1 - 2 * !((sizeof (mp_limb_t)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12053: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12530: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12056: \$? = $ac_status" >&5
+ echo "$as_me:12533: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12059: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12536: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12062: \$? = $ac_status" >&5
+ echo "$as_me:12539: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -12072,12 +12549,12 @@ done
ac_cv_sizeof_mp_limb_t=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:12075: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:12552: 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 12080 "configure"
+#line 12557 "configure"
#include "confdefs.h"
#include <stdio.h>
#define __GMP_WITHIN_CONFIGURE 1 /* ignore template stuff */
@@ -12098,15 +12575,15 @@ fclose (f);
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:12101: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12578: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:12104: \$? = $ac_status" >&5
+ echo "$as_me:12581: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:12106: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12583: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12109: \$? = $ac_status" >&5
+ echo "$as_me:12586: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_mp_limb_t=`cat conftest.val`
else
@@ -12122,14 +12599,14 @@ else
ac_cv_sizeof_mp_limb_t=0
fi
fi
-echo "$as_me:12125: result: $ac_cv_sizeof_mp_limb_t" >&5
+echo "$as_me:12602: 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:12132: error: some sort of compiler problem, mp_limb_t doesn't seem to work" >&5
+ { { echo "$as_me:12609: 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
@@ -12150,13 +12627,13 @@ if grep "^#define BITS_PER_ULONG" $gmp_mparam_source >/dev/null; then : ;
else
case $limb_chosen in
longlong)
- echo "$as_me:12153: checking for unsigned long" >&5
+ echo "$as_me:12630: 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 12159 "configure"
+#line 12636 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12171,16 +12648,16 @@ if (sizeof (unsigned long))
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12174: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12651: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12177: \$? = $ac_status" >&5
+ echo "$as_me:12654: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12180: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12657: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12183: \$? = $ac_status" >&5
+ echo "$as_me:12660: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_type_unsigned_long=yes
else
@@ -12190,10 +12667,10 @@ ac_cv_type_unsigned_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
-echo "$as_me:12193: result: $ac_cv_type_unsigned_long" >&5
+echo "$as_me:12670: result: $ac_cv_type_unsigned_long" >&5
echo "${ECHO_T}$ac_cv_type_unsigned_long" >&6
-echo "$as_me:12196: checking size of unsigned long" >&5
+echo "$as_me:12673: 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
@@ -12202,7 +12679,7 @@ else
if test "$cross_compiling" = yes; then
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
-#line 12205 "configure"
+#line 12682 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12214,21 +12691,21 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= 0)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12217: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12694: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12220: \$? = $ac_status" >&5
+ echo "$as_me:12697: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12223: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12700: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12226: \$? = $ac_status" >&5
+ echo "$as_me:12703: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 12231 "configure"
+#line 12708 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12240,16 +12717,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12243: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12720: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12246: \$? = $ac_status" >&5
+ echo "$as_me:12723: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12249: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12726: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12252: \$? = $ac_status" >&5
+ echo "$as_me:12729: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
@@ -12265,7 +12742,7 @@ cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
-#line 12268 "configure"
+#line 12745 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12277,16 +12754,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) >= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12280: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12757: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12283: \$? = $ac_status" >&5
+ echo "$as_me:12760: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12286: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12763: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12289: \$? = $ac_status" >&5
+ echo "$as_me:12766: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
@@ -12302,7 +12779,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 12305 "configure"
+#line 12782 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12314,16 +12791,16 @@ int _array_ [1 - 2 * !((sizeof (unsigned long)) <= $ac_mid)]
}
_ACEOF
rm -f conftest.$ac_objext
-if { (eval echo "$as_me:12317: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:12794: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
- echo "$as_me:12320: \$? = $ac_status" >&5
+ echo "$as_me:12797: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
- { (eval echo "$as_me:12323: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12800: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12326: \$? = $ac_status" >&5
+ echo "$as_me:12803: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
@@ -12336,12 +12813,12 @@ done
ac_cv_sizeof_unsigned_long=$ac_lo
else
if test "$cross_compiling" = yes; then
- { { echo "$as_me:12339: error: cannot run test program while cross compiling" >&5
+ { { echo "$as_me:12816: 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 12344 "configure"
+#line 12821 "configure"
#include "confdefs.h"
$ac_includes_default
int
@@ -12357,15 +12834,15 @@ fclose (f);
}
_ACEOF
rm -f conftest$ac_exeext
-if { (eval echo "$as_me:12360: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12837: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
- echo "$as_me:12363: \$? = $ac_status" >&5
+ echo "$as_me:12840: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:12365: \"$ac_try\"") >&5
+ { (eval echo "$as_me:12842: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
- echo "$as_me:12368: \$? = $ac_status" >&5
+ echo "$as_me:12845: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sizeof_unsigned_long=`cat conftest.val`
else
@@ -12381,7 +12858,7 @@ else
ac_cv_sizeof_unsigned_long=0
fi
fi
-echo "$as_me:12384: result: $ac_cv_sizeof_unsigned_long" >&5
+echo "$as_me:12861: 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
@@ -12483,7 +12960,7 @@ echo "define(\`__CONFIG_M4_INCLUDED__')" >> $gmp_configm4
# FIXME: Upcoming version of autoconf/automake may not like broken lines.
# Right now automake isn't accepting the new AC_CONFIG_FILES scheme.
-ac_config_files="$ac_config_files Makefile mpbsd/Makefile mpf/Makefile mpfr/Makefile mpn/Makefile mpq/Makefile mpz/Makefile printf/Makefile mpfr/tests/Makefile tests/Makefile tests/devel/Makefile tests/mpbsd/Makefile tests/mpf/Makefile tests/mpn/Makefile tests/mpq/Makefile tests/mpz/Makefile tests/rand/Makefile tests/printf/Makefile tune/Makefile demos/Makefile demos/calc/Makefile demos/expr/Makefile gmp.h:gmp-h.in mp.h:mp-h.in demos/expr/expr-impl.h:demos/expr/expr-impl-h.in"
+ac_config_files="$ac_config_files Makefile mpbsd/Makefile mpf/Makefile mpfr/Makefile mpn/Makefile mpq/Makefile mpz/Makefile printf/Makefile cxx/Makefile mpfr/tests/Makefile tests/Makefile tests/devel/Makefile tests/mpbsd/Makefile tests/mpf/Makefile tests/mpn/Makefile tests/mpq/Makefile tests/mpz/Makefile tests/rand/Makefile tests/printf/Makefile tests/cxx/Makefile tune/Makefile demos/Makefile demos/calc/Makefile demos/expr/Makefile gmp.h:gmp-h.in mp.h:mp-h.in demos/expr/expr-impl.h:demos/expr/expr-impl-h.in"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
@@ -12563,7 +13040,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:12566: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:13043: creating $CONFIG_STATUS" >&5
echo "$as_me: creating $CONFIG_STATUS" >&6;}
cat >$CONFIG_STATUS <<_ACEOF
#! $SHELL
@@ -12742,7 +13219,7 @@ cat >>$CONFIG_STATUS <<\EOF
echo "$ac_cs_version"; exit 0 ;;
--he | --h)
# Conflict between --help and --header
- { { echo "$as_me:12745: error: ambiguous option: $1
+ { { echo "$as_me:13222: 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;}
@@ -12761,7 +13238,7 @@ Try \`$0 --help' for more information." >&2;}
ac_need_defaults=false;;
# This is an error.
- -*) { { echo "$as_me:12764: error: unrecognized option: $1
+ -*) { { echo "$as_me:13241: 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;}
@@ -12814,6 +13291,7 @@ do
"mpq/Makefile" ) CONFIG_FILES="$CONFIG_FILES mpq/Makefile" ;;
"mpz/Makefile" ) CONFIG_FILES="$CONFIG_FILES mpz/Makefile" ;;
"printf/Makefile" ) CONFIG_FILES="$CONFIG_FILES printf/Makefile" ;;
+ "cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES cxx/Makefile" ;;
"mpfr/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES mpfr/tests/Makefile" ;;
"tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
"tests/devel/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/devel/Makefile" ;;
@@ -12824,6 +13302,7 @@ do
"tests/mpz/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/mpz/Makefile" ;;
"tests/rand/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/rand/Makefile" ;;
"tests/printf/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/printf/Makefile" ;;
+ "tests/cxx/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/cxx/Makefile" ;;
"tune/Makefile" ) CONFIG_FILES="$CONFIG_FILES tune/Makefile" ;;
"demos/Makefile" ) CONFIG_FILES="$CONFIG_FILES demos/Makefile" ;;
"demos/calc/Makefile" ) CONFIG_FILES="$CONFIG_FILES demos/calc/Makefile" ;;
@@ -12835,7 +13314,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:12838: error: invalid argument: $ac_config_target" >&5
+ *) { { echo "$as_me:13317: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
@@ -12970,6 +13449,12 @@ s,@am__include@,$am__include,;t t
s,@am__quote@,$am__quote,;t t
s,@CCDEPMODE@,$CCDEPMODE,;t t
s,@CPP@,$CPP,;t t
+s,@CXX@,$CXX,;t t
+s,@CXXFLAGS@,$CXXFLAGS,;t t
+s,@ac_ct_CXX@,$ac_ct_CXX,;t t
+s,@CXXDEPMODE@,$CXXDEPMODE,;t t
+s,@WANT_CXX_TRUE@,$WANT_CXX_TRUE,;t t
+s,@WANT_CXX_FALSE@,$WANT_CXX_FALSE,;t t
s,@U@,$U,;t t
s,@ANSI2KNR@,$ANSI2KNR,;t t
s,@AR@,$AR,;t t
@@ -13116,7 +13601,7 @@ done; }
esac
if test x"$ac_file" != x-; then
- { echo "$as_me:13119: creating $ac_file" >&5
+ { echo "$as_me:13604: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
rm -f "$ac_file"
fi
@@ -13134,7 +13619,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:13137: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:13622: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -13147,7 +13632,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:13150: error: cannot find input file: $f" >&5
+ { { echo "$as_me:13635: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -13208,7 +13693,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:13211: creating $ac_file" >&5
+ test x"$ac_file" != x- && { echo "$as_me:13696: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
# First look for the input files in the build tree, otherwise in the
@@ -13219,7 +13704,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:13222: error: cannot find input file: $f" >&5
+ test -f "$f" || { { echo "$as_me:13707: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
echo $f;;
@@ -13232,7 +13717,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
echo $srcdir/$f
else
# /dev/null tree
- { { echo "$as_me:13235: error: cannot find input file: $f" >&5
+ { { echo "$as_me:13720: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
fi;;
@@ -13349,7 +13834,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:13352: $ac_file is unchanged" >&5
+ { echo "$as_me:13837: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
@@ -13406,11 +13891,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:13409: linking $srcdir/$ac_source to $ac_dest" >&5
+ { echo "$as_me:13894: 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:13413: error: $srcdir/$ac_source: File not found" >&5
+ { { echo "$as_me:13898: error: $srcdir/$ac_source: File not found" >&5
echo "$as_me: error: $srcdir/$ac_source: File not found" >&2;}
{ (exit 1); exit 1; }; }
fi
@@ -13460,7 +13945,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:13463: error: cannot link $ac_dest to $srcdir/$ac_source" >&5
+ { { echo "$as_me:13948: 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
diff --git a/cxx/Makefile.in b/cxx/Makefile.in
index 554f675fa..1aac4d25b 100644
--- a/cxx/Makefile.in
+++ b/cxx/Makefile.in
@@ -129,7 +129,8 @@ INCLUDES = -D__GMP_WITHIN_GMP -I$(top_srcdir)
@WANT_CXX_TRUE@noinst_LTLIBRARIES = libcxx.la
-libcxx_la_SOURCES = osdoprnti.cc osfuns.cc osmpf.cc osmpq.cc osmpz.cc
+# osfuns.cc is handled from the top-level Makefile.am
+libcxx_la_SOURCES = osdoprnti.cc osmpf.cc osmpq.cc osmpz.cc
subdir = cxx
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config.h
@@ -138,7 +139,7 @@ LTLIBRARIES = $(noinst_LTLIBRARIES)
libcxx_la_LDFLAGS =
libcxx_la_LIBADD =
-am_libcxx_la_OBJECTS = osdoprnti.lo osfuns.lo osmpf.lo osmpq.lo osmpz.lo
+am_libcxx_la_OBJECTS = osdoprnti.lo osmpf.lo osmpq.lo osmpz.lo
libcxx_la_OBJECTS = $(am_libcxx_la_OBJECTS)
DEFS = @DEFS@
diff --git a/demos/Makefile.in b/demos/Makefile.in
index 28173c23c..dd2baf3a0 100644
--- a/demos/Makefile.in
+++ b/demos/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/demos/calc/Makefile.in b/demos/calc/Makefile.in
index 374b02a7a..67797011c 100644
--- a/demos/calc/Makefile.in
+++ b/demos/calc/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/demos/expr/Makefile.in b/demos/expr/Makefile.in
index 406eee3bc..c62010570 100644
--- a/demos/expr/Makefile.in
+++ b/demos/expr/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpbsd/Makefile.in b/mpbsd/Makefile.in
index 15937d54a..57aaa6d1a 100644
--- a/mpbsd/Makefile.in
+++ b/mpbsd/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpf/Makefile.in b/mpf/Makefile.in
index bfd05676b..23439020b 100644
--- a/mpf/Makefile.in
+++ b/mpf/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpfr/Makefile.in b/mpfr/Makefile.in
index fa91b4345..405517d8e 100644
--- a/mpfr/Makefile.in
+++ b/mpfr/Makefile.in
@@ -89,6 +89,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpfr/tests/Makefile.in b/mpfr/tests/Makefile.in
index 579dd141d..bfffe074a 100644
--- a/mpfr/tests/Makefile.in
+++ b/mpfr/tests/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpn/Makefile.in b/mpn/Makefile.in
index 6c6f19cff..3f3ca5732 100644
--- a/mpn/Makefile.in
+++ b/mpn/Makefile.in
@@ -109,6 +109,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpq/Makefile.in b/mpq/Makefile.in
index bc21ccfe3..19ceda0d7 100644
--- a/mpq/Makefile.in
+++ b/mpq/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/mpz/Makefile.in b/mpz/Makefile.in
index 5935580e3..fcd9c4f7a 100644
--- a/mpz/Makefile.in
+++ b/mpz/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/printf/Makefile.in b/printf/Makefile.in
index f01e7e48d..0ea178828 100644
--- a/printf/Makefile.in
+++ b/printf/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
@@ -129,7 +130,7 @@ INCLUDES = -D__GMP_WITHIN_GMP -I$(top_srcdir)
noinst_LTLIBRARIES = libprintf.la
libprintf_la_SOURCES = \
- asprintf.c doprnt.c doprntf.c doprnti.c \
+ asprintf.c asprntffuns.c doprnt.c doprntf.c doprnti.c \
fprintf.c obprintf.c obvprintf.c obprntffuns.c \
printf.c printffuns.c snprintf.c snprntffuns.c sprintf.c sprintffuns.c \
vasprintf.c vfprintf.c vprintf.c vsnprintf.c vsprintf.c
@@ -142,11 +143,12 @@ LTLIBRARIES = $(noinst_LTLIBRARIES)
libprintf_la_LDFLAGS =
libprintf_la_LIBADD =
-am_libprintf_la_OBJECTS = asprintf$U.lo doprnt$U.lo doprntf$U.lo \
- doprnti$U.lo fprintf$U.lo obprintf$U.lo obvprintf$U.lo \
- obprntffuns$U.lo printf$U.lo printffuns$U.lo snprintf$U.lo \
- snprntffuns$U.lo sprintf$U.lo sprintffuns$U.lo vasprintf$U.lo \
- vfprintf$U.lo vprintf$U.lo vsnprintf$U.lo vsprintf$U.lo
+am_libprintf_la_OBJECTS = asprintf$U.lo asprntffuns$U.lo doprnt$U.lo \
+ doprntf$U.lo doprnti$U.lo fprintf$U.lo obprintf$U.lo \
+ obvprintf$U.lo obprntffuns$U.lo printf$U.lo printffuns$U.lo \
+ snprintf$U.lo snprntffuns$U.lo sprintf$U.lo sprintffuns$U.lo \
+ vasprintf$U.lo vfprintf$U.lo vprintf$U.lo vsnprintf$U.lo \
+ vsprintf$U.lo
libprintf_la_OBJECTS = $(am_libprintf_la_OBJECTS)
DEFS = @DEFS@
@@ -216,6 +218,8 @@ mostlyclean-kr:
$(LTCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$<
asprintf_.c: asprintf.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/asprintf.c; then echo $(srcdir)/asprintf.c; else echo asprintf.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > asprintf_.c || rm -f asprintf_.c
+asprntffuns_.c: asprntffuns.c $(ANSI2KNR)
+ $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/asprntffuns.c; then echo $(srcdir)/asprntffuns.c; else echo asprntffuns.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > asprntffuns_.c || rm -f asprntffuns_.c
doprnt_.c: doprnt.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/doprnt.c; then echo $(srcdir)/doprnt.c; else echo doprnt.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > doprnt_.c || rm -f doprnt_.c
doprntf_.c: doprntf.c $(ANSI2KNR)
@@ -252,16 +256,17 @@ vsnprintf_.c: vsnprintf.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/vsnprintf.c; then echo $(srcdir)/vsnprintf.c; else echo vsnprintf.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > vsnprintf_.c || rm -f vsnprintf_.c
vsprintf_.c: vsprintf.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/vsprintf.c; then echo $(srcdir)/vsprintf.c; else echo vsprintf.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > vsprintf_.c || rm -f vsprintf_.c
-asprintf_.$(OBJEXT) asprintf_.lo doprnt_.$(OBJEXT) doprnt_.lo \
-doprntf_.$(OBJEXT) doprntf_.lo doprnti_.$(OBJEXT) doprnti_.lo \
-fprintf_.$(OBJEXT) fprintf_.lo obprintf_.$(OBJEXT) obprintf_.lo \
-obprntffuns_.$(OBJEXT) obprntffuns_.lo obvprintf_.$(OBJEXT) \
-obvprintf_.lo printf_.$(OBJEXT) printf_.lo printffuns_.$(OBJEXT) \
-printffuns_.lo snprintf_.$(OBJEXT) snprintf_.lo snprntffuns_.$(OBJEXT) \
-snprntffuns_.lo sprintf_.$(OBJEXT) sprintf_.lo sprintffuns_.$(OBJEXT) \
-sprintffuns_.lo vasprintf_.$(OBJEXT) vasprintf_.lo vfprintf_.$(OBJEXT) \
-vfprintf_.lo vprintf_.$(OBJEXT) vprintf_.lo vsnprintf_.$(OBJEXT) \
-vsnprintf_.lo vsprintf_.$(OBJEXT) vsprintf_.lo : $(ANSI2KNR)
+asprintf_.$(OBJEXT) asprintf_.lo asprntffuns_.$(OBJEXT) asprntffuns_.lo \
+doprnt_.$(OBJEXT) doprnt_.lo doprntf_.$(OBJEXT) doprntf_.lo \
+doprnti_.$(OBJEXT) doprnti_.lo fprintf_.$(OBJEXT) fprintf_.lo \
+obprintf_.$(OBJEXT) obprintf_.lo obprntffuns_.$(OBJEXT) obprntffuns_.lo \
+obvprintf_.$(OBJEXT) obvprintf_.lo printf_.$(OBJEXT) printf_.lo \
+printffuns_.$(OBJEXT) printffuns_.lo snprintf_.$(OBJEXT) snprintf_.lo \
+snprntffuns_.$(OBJEXT) snprntffuns_.lo sprintf_.$(OBJEXT) sprintf_.lo \
+sprintffuns_.$(OBJEXT) sprintffuns_.lo vasprintf_.$(OBJEXT) \
+vasprintf_.lo vfprintf_.$(OBJEXT) vfprintf_.lo vprintf_.$(OBJEXT) \
+vprintf_.lo vsnprintf_.$(OBJEXT) vsnprintf_.lo vsprintf_.$(OBJEXT) \
+vsprintf_.lo : $(ANSI2KNR)
uninstall-info-am:
tags: TAGS
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 72af4592c..49c49675f 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -109,6 +109,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/devel/Makefile.in b/tests/devel/Makefile.in
index 8b1a4e098..45c762171 100644
--- a/tests/devel/Makefile.in
+++ b/tests/devel/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/mpbsd/Makefile.in b/tests/mpbsd/Makefile.in
index 425e5c18a..36a268c18 100644
--- a/tests/mpbsd/Makefile.in
+++ b/tests/mpbsd/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/mpf/Makefile.in b/tests/mpf/Makefile.in
index f9f0c4311..1d9cba039 100644
--- a/tests/mpf/Makefile.in
+++ b/tests/mpf/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/mpn/Makefile.in b/tests/mpn/Makefile.in
index 86672f096..647ac74f6 100644
--- a/tests/mpn/Makefile.in
+++ b/tests/mpn/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/mpq/Makefile.in b/tests/mpq/Makefile.in
index 281cd9c40..5fa5c77db 100644
--- a/tests/mpq/Makefile.in
+++ b/tests/mpq/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/mpz/Makefile.in b/tests/mpz/Makefile.in
index 71feb284a..95772b925 100644
--- a/tests/mpz/Makefile.in
+++ b/tests/mpz/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/printf/Makefile.in b/tests/printf/Makefile.in
index ba4e1d0e0..24bb5f7b7 100644
--- a/tests/printf/Makefile.in
+++ b/tests/printf/Makefile.in
@@ -89,6 +89,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tests/rand/Makefile.in b/tests/rand/Makefile.in
index e1fd26b0d..43b083915 100644
--- a/tests/rand/Makefile.in
+++ b/tests/rand/Makefile.in
@@ -86,6 +86,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
diff --git a/tune/Makefile.in b/tune/Makefile.in
index 417aca0d4..0386d6214 100644
--- a/tune/Makefile.in
+++ b/tune/Makefile.in
@@ -109,6 +109,7 @@ CC = @CC@
CCAS = @CCAS@
CFLAGS_PIC = @CFLAGS_PIC@
CPP = @CPP@
+CXX = @CXX@
DEFN_LONG_LONG_LIMB = @DEFN_LONG_LONG_LIMB@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@