diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 264508cdf05..651cf831874 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,15 @@ +2000-06-20 Anthony Williams + + * bits/string.tcc: Fix find. + * testsuite/21_strings/find.cc: Patch. + +2000-06-20 Benjamin Kosnik + + * docs/install.html: Update where to get automake, where to get + binutils. + * acinclude.m4: Need -fno-builtins too, so gcc doesn't recognize + builtins. + 2000-06-19 Benjamin Kosnik * acinclude.m4 ((GLIBCPP_CHECK_MATH_SUPPORT): Revert last change. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 17f0016e1cd..b10de7293a8 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -900,10 +900,13 @@ dnl Define HAVE_CARGF etc if "cargf" is found. dnl dnl GLIBCPP_CHECK_MATH_SUPPORT AC_DEFUN(GLIBCPP_CHECK_MATH_SUPPORT, [ - dnl Work around bug on powerpc compiler + dnl Work around bug on powerpc compiler, where no long double is + dnl declared, yet functions defined with long double are in libm. Thus, + dnl the "C" math library has the prototypes implicitly declared, and + dnl everything works. ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" - CFLAGS='-Werror-implicit-function-declaration' + CFLAGS='-Werror-implicit-function-declaration -fno-builtins' dnl Check libm AC_CHECK_LIB(m, sin, libm="-lm") diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 762f885cffc..83234147c2d 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -912,10 +912,10 @@ dnl Define HAVE_CARGF etc if "cargf" is found. dnl dnl GLIBCPP_CHECK_MATH_SUPPORT AC_DEFUN(GLIBCPP_CHECK_MATH_SUPPORT, [ - dnl Work around bug on powerpc compiler + dnl Work around bug on powerpc compiler ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" - CFLAGS='-Werror-implicit-function-declaration' + CFLAGS='-Werror-implicit-function-declaration -fno-builtins' dnl Check libm AC_CHECK_LIB(m, sin, libm="-lm") diff --git a/libstdc++-v3/bits/string.tcc b/libstdc++-v3/bits/string.tcc index 73b4d98a9a5..d727151bd72 100644 --- a/libstdc++-v3/bits/string.tcc +++ b/libstdc++-v3/bits/string.tcc @@ -602,8 +602,7 @@ namespace std size_t __xpos = __pos; const _CharT* __data = _M_data(); for (; __xpos + __n <= this->size(); ++__xpos) - if (traits_type::eq(__data[__xpos], *__s) - && traits_type::compare(__data + __xpos, __s, __n) == 0) + if (traits_type::compare(__data + __xpos, __s, __n) == 0) return __xpos; return npos; } diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index e59bb2470e4..95b55052a30 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -64,6 +64,7 @@ program_suffix=NONE program_transform_name=s,x,x, silent= site= +sitefile= srcdir= target=NONE verbose= @@ -178,6 +179,7 @@ Configuration: --help print this message --no-create do not create output files --quiet, --silent do not print \`checking...' messages + --site-file=FILE use FILE as the site file --version print the version of autoconf that created configure Directory and file names: --prefix=PREFIX install architecture-independent files in PREFIX @@ -348,6 +350,11 @@ EOF -site=* | --site=* | --sit=*) site="$ac_optarg" ;; + -site-file | --site-file | --site-fil | --site-fi | --site-f) + ac_prev=sitefile ;; + -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*) + sitefile="$ac_optarg" ;; + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) @@ -513,12 +520,16 @@ fi srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` # Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then - CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" - else - CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" +if test -z "$sitefile"; then + if test -z "$CONFIG_SITE"; then + if test "x$prefix" != xNONE; then + CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" + else + CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" + fi fi +else + CONFIG_SITE="$sitefile" fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then @@ -606,7 +617,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } fi echo $ac_n "checking host system type""... $ac_c" 1>&6 -echo "configure:610: checking host system type" >&5 +echo "configure:621: checking host system type" >&5 host_alias=$host case "$host_alias" in @@ -627,7 +638,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$ac_t""$host" 1>&6 echo $ac_n "checking target system type""... $ac_c" 1>&6 -echo "configure:631: checking target system type" >&5 +echo "configure:642: checking target system type" >&5 target_alias=$target case "$target_alias" in @@ -645,7 +656,7 @@ target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$ac_t""$target" 1>&6 echo $ac_n "checking build system type""... $ac_c" 1>&6 -echo "configure:649: checking build system type" >&5 +echo "configure:660: checking build system type" >&5 build_alias=$build case "$build_alias" in @@ -694,7 +705,7 @@ fi # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:698: checking for a BSD compatible install" >&5 +echo "configure:709: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -747,7 +758,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 -echo "configure:751: checking whether build environment is sane" >&5 +echo "configure:762: checking whether build environment is sane" >&5 # Just in case sleep 1 echo timestamp > conftestfile @@ -804,7 +815,7 @@ test "$program_suffix" != NONE && test "$program_transform_name" = "" && program_transform_name="s,x,x," echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:808: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:819: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -837,12 +848,12 @@ else fi echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 -echo "configure:841: checking for Cygwin environment" >&5 +echo "configure:852: checking for Cygwin environment" >&5 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:868: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_cygwin=yes else @@ -870,19 +881,19 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6 CYGWIN= test "$ac_cv_cygwin" = yes && CYGWIN=yes echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 -echo "configure:874: checking for mingw32 environment" >&5 +echo "configure:885: checking for mingw32 environment" >&5 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:897: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_mingw32=yes else @@ -929,7 +940,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } fi echo $ac_n "checking host system type""... $ac_c" 1>&6 -echo "configure:933: checking host system type" >&5 +echo "configure:944: checking host system type" >&5 host_alias=$host case "$host_alias" in @@ -970,7 +981,7 @@ EOF missing_dir=`cd $ac_aux_dir && pwd` echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 -echo "configure:974: checking for working aclocal" >&5 +echo "configure:985: checking for working aclocal" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -983,7 +994,7 @@ else fi echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 -echo "configure:987: checking for working autoconf" >&5 +echo "configure:998: checking for working autoconf" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -996,7 +1007,7 @@ else fi echo $ac_n "checking for working automake""... $ac_c" 1>&6 -echo "configure:1000: checking for working automake" >&5 +echo "configure:1011: checking for working automake" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -1009,7 +1020,7 @@ else fi echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 -echo "configure:1013: checking for working autoheader" >&5 +echo "configure:1024: checking for working autoheader" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -1022,7 +1033,7 @@ else fi echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 -echo "configure:1026: checking for working makeinfo" >&5 +echo "configure:1037: checking for working makeinfo" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -1048,7 +1059,7 @@ fi # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1052: checking for $ac_word" >&5 +echo "configure:1063: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1078,7 +1089,7 @@ 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1082: checking for $ac_word" >&5 +echo "configure:1093: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1127,7 +1138,7 @@ fi fi echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1131: checking whether we are using GNU C" >&5 +echo "configure:1142: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1136,7 +1147,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1140: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1151: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -1151,7 +1162,7 @@ if test $ac_cv_prog_gcc = yes; then ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1155: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:1166: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1188,7 +1199,7 @@ 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1192: checking for $ac_word" >&5 +echo "configure:1203: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1221,7 +1232,7 @@ test -n "$CXX" || CXX="gcc" test -z "$CXX" && { echo "configure: error: no acceptable c++ found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 -echo "configure:1225: checking whether we are using GNU C++" >&5 +echo "configure:1236: checking whether we are using GNU C++" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1230,7 +1241,7 @@ else yes; #endif EOF -if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1234: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1245: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gxx=yes else ac_cv_prog_gxx=no @@ -1245,7 +1256,7 @@ if test $ac_cv_prog_gxx = yes; then ac_save_CXXFLAGS="$CXXFLAGS" CXXFLAGS= echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 -echo "configure:1249: checking whether ${CXX-g++} accepts -g" >&5 +echo "configure:1260: checking whether ${CXX-g++} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1278,7 +1289,7 @@ fi # LIBGCJ_CONFIGURE, which doesn't work because that means that it will # be run before AC_CANONICAL_HOST. echo $ac_n "checking build system type""... $ac_c" 1>&6 -echo "configure:1282: checking build system type" >&5 +echo "configure:1293: checking build system type" >&5 build_alias=$build case "$build_alias" in @@ -1299,7 +1310,7 @@ echo "$ac_t""$build" 1>&6 # 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1303: checking for $ac_word" >&5 +echo "configure:1314: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1331,7 +1342,7 @@ fi # 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1335: checking for $ac_word" >&5 +echo "configure:1346: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1363,7 +1374,7 @@ fi # 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1367: checking for $ac_word" >&5 +echo "configure:1378: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1395,7 +1406,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1399: checking for $ac_word" >&5 +echo "configure:1410: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1440,7 +1451,7 @@ fi # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:1444: checking for a BSD compatible install" >&5 +echo "configure:1455: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1494,7 +1505,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:1498: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:1509: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" @@ -1528,7 +1539,7 @@ if false; then echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:1532: checking for executable suffix" >&5 +echo "configure:1543: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1538,10 +1549,10 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:1542: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:1553: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in - *.c | *.o | *.obj) ;; + *.c | *.o | *.obj | *.ilk | *.pdb) ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; esac done @@ -1652,7 +1663,7 @@ fi # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1656: checking for $ac_word" >&5 +echo "configure:1667: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1691,7 +1702,7 @@ ac_prog=ld if test "$ac_cv_prog_gcc" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:1695: checking for ld used by GCC" >&5 +echo "configure:1706: checking for ld used by GCC" >&5 ac_prog=`($CC -print-prog-name=ld) 2>&5` case "$ac_prog" in # Accept absolute paths. @@ -1715,10 +1726,10 @@ echo "configure:1695: checking for ld used by GCC" >&5 esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:1719: checking for GNU ld" >&5 +echo "configure:1730: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -echo "configure:1722: checking for non-GNU ld" >&5 +echo "configure:1733: checking for non-GNU ld" >&5 fi if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1753,7 +1764,7 @@ else fi test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 -echo "configure:1757: checking if the linker ($LD) is GNU ld" >&5 +echo "configure:1768: checking if the linker ($LD) is GNU ld" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1769,7 +1780,7 @@ echo "$ac_t""$ac_cv_prog_gnu_ld" 1>&6 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 -echo "configure:1773: checking for BSD-compatible nm" >&5 +echo "configure:1784: checking for BSD-compatible nm" >&5 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1805,7 +1816,7 @@ NM="$ac_cv_path_NM" echo "$ac_t""$NM" 1>&6 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:1809: checking whether ln -s works" >&5 +echo "configure:1820: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1849,8 +1860,8 @@ test x"$silent" = xyes && libtool_flags="$libtool_flags --silent" case "$host" in *-*-irix6*) # Find out which ABI we are using. - echo '#line 1853 "configure"' > conftest.$ac_ext - if { (eval echo configure:1854: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + echo '#line 1864 "configure"' > conftest.$ac_ext + if { (eval echo configure:1865: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case "`/usr/bin/file conftest.o`" in *32-bit*) LD="${LD-ld} -32" @@ -1871,19 +1882,19 @@ case "$host" in SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 -echo "configure:1875: checking whether the C compiler needs -belf" >&5 +echo "configure:1886: checking whether the C compiler needs -belf" >&5 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1898: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_needs_belf=yes else @@ -1990,7 +2001,7 @@ exec 5>>./config.log # Check for c++ or library specific bits that don't require linking. echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:1994: checking how to run the C preprocessor" >&5 +echo "configure:2005: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -2005,13 +2016,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2015: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2026: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2022,13 +2033,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2032: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2043: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2039,13 +2050,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2049: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2060: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2073,9 +2084,9 @@ echo "$ac_t""$CPP" 1>&6 # Sanity check that g++ is capable of dealing with v-3. echo $ac_n "checking for g++ that will successfully compile this code""... $ac_c" 1>&6 -echo "configure:2077: checking for g++ that will successfully compile this code" >&5 +echo "configure:2088: checking for g++ that will successfully compile this code" >&5 cat > conftest.$ac_ext < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) @@ -2097,7 +2108,7 @@ rm -f conftest* echo $ac_n "checking for cpu primitives directory""... $ac_c" 1>&6 -echo "configure:2101: checking for cpu primitives directory" >&5 +echo "configure:2112: checking for cpu primitives directory" >&5 CPU_FLAGS= case "$target_cpu" in alpha*) @@ -2155,7 +2166,7 @@ esac echo $ac_n "checking for cstdio to use""... $ac_c" 1>&6 -echo "configure:2159: checking for cstdio to use" >&5 +echo "configure:2170: checking for cstdio to use" >&5 # Check whether --enable-cstdio or --disable-cstdio was given. if test "${enable_cstdio+set}" = set; then enableval="$enable_cstdio" @@ -2179,17 +2190,17 @@ fi # see if we are on a system with libio native (ie, linux) ac_safe=`echo "libio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libio.h""... $ac_c" 1>&6 -echo "configure:2183: checking for libio.h" >&5 +echo "configure:2194: checking for libio.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2193: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2204: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2224,17 +2235,17 @@ fi # NB: This replaces the _G_CONFIG_H machinery in libio-v2 ac_safe=`echo "_G_config.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for _G_config.h""... $ac_c" 1>&6 -echo "configure:2228: checking for _G_config.h" >&5 +echo "configure:2239: checking for _G_config.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2238: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2249: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2307,12 +2318,12 @@ fi # Check for the existance of functions used if long long is enabled. echo $ac_n "checking for strtoll""... $ac_c" 1>&6 -echo "configure:2311: checking for strtoll" >&5 +echo "configure:2322: checking for strtoll" >&5 if eval "test \"`echo '$''{'ac_cv_func_strtoll'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2350: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strtoll=yes" else @@ -2356,12 +2367,12 @@ ac_strtoll=no fi echo $ac_n "checking for strtoull""... $ac_c" 1>&6 -echo "configure:2360: checking for strtoull" >&5 +echo "configure:2371: checking for strtoull" >&5 if eval "test \"`echo '$''{'ac_cv_func_strtoull'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2399: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strtoull=yes" else @@ -2406,7 +2417,7 @@ fi echo $ac_n "checking for enabled long long""... $ac_c" 1>&6 -echo "configure:2410: checking for enabled long long" >&5 +echo "configure:2421: checking for enabled long long" >&5 if test x"$ac_strtoll" = xno || test x"$ac_strtoull" = xno; then enable_long_long=no; fi; @@ -2421,7 +2432,7 @@ EOF esac echo $ac_n "checking for enabled cshadow headers""... $ac_c" 1>&6 -echo "configure:2425: checking for enabled cshadow headers" >&5 +echo "configure:2436: checking for enabled cshadow headers" >&5 # Check whether --enable-cshadow-headers or --disable-cshadow-headers was given. if test "${enable_cshadow_headers+set}" = set; then enableval="$enable_cshadow_headers" @@ -2462,7 +2473,7 @@ fi echo $ac_n "checking for threads package to use""... $ac_c" 1>&6 -echo "configure:2466: checking for threads package to use" >&5 +echo "configure:2477: checking for threads package to use" >&5 # Check whether --enable-threads or --disable-threads was given. if test "${enable_threads+set}" = set; then enableval="$enable_threads" @@ -2525,17 +2536,17 @@ fi posix) ac_safe=`echo "pthread.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for pthread.h""... $ac_c" 1>&6 -echo "configure:2529: checking for pthread.h" >&5 +echo "configure:2540: checking for pthread.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2539: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2550: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2724,17 +2735,17 @@ else do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2728: checking for $ac_hdr" >&5 +echo "configure:2739: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2738: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2749: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2779,10 +2790,10 @@ cross_compiling=$ac_cv_prog_cxx_cross # Check for pragma system_header. echo $ac_n "checking for g++ that supports pragma system_header""... $ac_c" 1>&6 -echo "configure:2783: checking for g++ that supports pragma system_header" >&5 +echo "configure:2794: checking for g++ that supports pragma system_header" >&5 CXXFLAGS='-Wunknown-pragmas -Werror' cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_newpragma=yes else @@ -2813,10 +2824,10 @@ rm -f conftest* # Check for more sophisticated diagnostic control. echo $ac_n "checking for g++ that supports -fdiagnostics-show-location=once""... $ac_c" 1>&6 -echo "configure:2817: checking for g++ that supports -fdiagnostics-show-location=once" >&5 +echo "configure:2828: checking for g++ that supports -fdiagnostics-show-location=once" >&5 CXXFLAGS='-fdiagnostics-show-location=once' cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2839: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_gabydiags=yes else @@ -2847,10 +2858,10 @@ rm -f conftest* # Check for -ffunction-sections -fdata-sections echo $ac_n "checking for g++ that supports -ffunction-sections -fdata-sections""... $ac_c" 1>&6 -echo "configure:2851: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 +echo "configure:2862: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 CXXFLAGS='-ffunction-sections -fdata-sections' cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2873: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_fdsections=yes else @@ -2905,10 +2916,10 @@ cross_compiling=$ac_cv_prog_cxx_cross # Check for -Wl,--gc-sections echo $ac_n "checking for ld that supports -Wl,--gc-sections""... $ac_c" 1>&6 -echo "configure:2909: checking for ld that supports -Wl,--gc-sections" >&5 +echo "configure:2920: checking for ld that supports -Wl,--gc-sections" >&5 CXXFLAGS='-Wl,--gc-sections' cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2936: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_sectionLDflags=yes else @@ -2961,16 +2972,16 @@ ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftes cross_compiling=$ac_cv_prog_cxx_cross echo $ac_n "checking for __builtin_acos""... $ac_c" 1>&6 -echo "configure:2965: checking for __builtin_acos" >&5 +echo "configure:2976: checking for __builtin_acos" >&5 cat > conftest.$ac_ext < int main() { __builtin_acos(0.0); ; return 0; } EOF -if { (eval echo configure:2974: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2985: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_acos=yes else @@ -2988,16 +2999,16 @@ EOF fi echo $ac_n "checking for __builtin_acosf""... $ac_c" 1>&6 -echo "configure:2992: checking for __builtin_acosf" >&5 +echo "configure:3003: checking for __builtin_acosf" >&5 cat > conftest.$ac_ext < int main() { __builtin_acosf(0.0); ; return 0; } EOF -if { (eval echo configure:3001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3012: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_acosf=yes else @@ -3015,16 +3026,16 @@ EOF fi echo $ac_n "checking for __builtin_acosl""... $ac_c" 1>&6 -echo "configure:3019: checking for __builtin_acosl" >&5 +echo "configure:3030: checking for __builtin_acosl" >&5 cat > conftest.$ac_ext < int main() { __builtin_acosl(0.0); ; return 0; } EOF -if { (eval echo configure:3028: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3039: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_acosl=yes else @@ -3042,16 +3053,16 @@ EOF fi echo $ac_n "checking for __builtin_asin""... $ac_c" 1>&6 -echo "configure:3046: checking for __builtin_asin" >&5 +echo "configure:3057: checking for __builtin_asin" >&5 cat > conftest.$ac_ext < int main() { __builtin_asin(0.0); ; return 0; } EOF -if { (eval echo configure:3055: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3066: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_asin=yes else @@ -3069,16 +3080,16 @@ EOF fi echo $ac_n "checking for __builtin_asinf""... $ac_c" 1>&6 -echo "configure:3073: checking for __builtin_asinf" >&5 +echo "configure:3084: checking for __builtin_asinf" >&5 cat > conftest.$ac_ext < int main() { __builtin_asinf(0.0); ; return 0; } EOF -if { (eval echo configure:3082: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3093: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_asinf=yes else @@ -3096,16 +3107,16 @@ EOF fi echo $ac_n "checking for __builtin_asinl""... $ac_c" 1>&6 -echo "configure:3100: checking for __builtin_asinl" >&5 +echo "configure:3111: checking for __builtin_asinl" >&5 cat > conftest.$ac_ext < int main() { __builtin_asinl(0.0); ; return 0; } EOF -if { (eval echo configure:3109: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3120: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_asinl=yes else @@ -3123,16 +3134,16 @@ EOF fi echo $ac_n "checking for __builtin_atan""... $ac_c" 1>&6 -echo "configure:3127: checking for __builtin_atan" >&5 +echo "configure:3138: checking for __builtin_atan" >&5 cat > conftest.$ac_ext < int main() { __builtin_atan(0.0); ; return 0; } EOF -if { (eval echo configure:3136: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3147: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_atan=yes else @@ -3150,16 +3161,16 @@ EOF fi echo $ac_n "checking for __builtin_atanf""... $ac_c" 1>&6 -echo "configure:3154: checking for __builtin_atanf" >&5 +echo "configure:3165: checking for __builtin_atanf" >&5 cat > conftest.$ac_ext < int main() { __builtin_atanf(0.0); ; return 0; } EOF -if { (eval echo configure:3163: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_atanf=yes else @@ -3177,16 +3188,16 @@ EOF fi echo $ac_n "checking for __builtin_atanl""... $ac_c" 1>&6 -echo "configure:3181: checking for __builtin_atanl" >&5 +echo "configure:3192: checking for __builtin_atanl" >&5 cat > conftest.$ac_ext < int main() { __builtin_atanl(0.0); ; return 0; } EOF -if { (eval echo configure:3190: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3201: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_atanl=yes else @@ -3204,16 +3215,16 @@ EOF fi echo $ac_n "checking for __builtin_atan2""... $ac_c" 1>&6 -echo "configure:3208: checking for __builtin_atan2" >&5 +echo "configure:3219: checking for __builtin_atan2" >&5 cat > conftest.$ac_ext < int main() { __builtin_atan2(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:3217: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3228: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_atan2=yes else @@ -3231,16 +3242,16 @@ EOF fi echo $ac_n "checking for __builtin_atan2f""... $ac_c" 1>&6 -echo "configure:3235: checking for __builtin_atan2f" >&5 +echo "configure:3246: checking for __builtin_atan2f" >&5 cat > conftest.$ac_ext < int main() { __builtin_atan2f(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:3244: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3255: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_atan2f=yes else @@ -3258,16 +3269,16 @@ EOF fi echo $ac_n "checking for __builtin_atan2l""... $ac_c" 1>&6 -echo "configure:3262: checking for __builtin_atan2l" >&5 +echo "configure:3273: checking for __builtin_atan2l" >&5 cat > conftest.$ac_ext < int main() { __builtin_atan2l(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:3271: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3282: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_atan2l=yes else @@ -3285,16 +3296,16 @@ EOF fi echo $ac_n "checking for __builtin_ceil""... $ac_c" 1>&6 -echo "configure:3289: checking for __builtin_ceil" >&5 +echo "configure:3300: checking for __builtin_ceil" >&5 cat > conftest.$ac_ext < int main() { __builtin_fceil(0.0); ; return 0; } EOF -if { (eval echo configure:3298: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3309: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ceil=yes else @@ -3312,16 +3323,16 @@ EOF fi echo $ac_n "checking for __builtin_ceilf""... $ac_c" 1>&6 -echo "configure:3316: checking for __builtin_ceilf" >&5 +echo "configure:3327: checking for __builtin_ceilf" >&5 cat > conftest.$ac_ext < int main() { __builtin_ceilf(0.0); ; return 0; } EOF -if { (eval echo configure:3325: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3336: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ceilf=yes else @@ -3339,16 +3350,16 @@ EOF fi echo $ac_n "checking for __builtin_ceill""... $ac_c" 1>&6 -echo "configure:3343: checking for __builtin_ceill" >&5 +echo "configure:3354: checking for __builtin_ceill" >&5 cat > conftest.$ac_ext < int main() { __builtin_ceill(0.0); ; return 0; } EOF -if { (eval echo configure:3352: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3363: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ceill=yes else @@ -3366,16 +3377,16 @@ EOF fi echo $ac_n "checking for __builtin_cos""... $ac_c" 1>&6 -echo "configure:3370: checking for __builtin_cos" >&5 +echo "configure:3381: checking for __builtin_cos" >&5 cat > conftest.$ac_ext < int main() { __builtin_cos(0.0); ; return 0; } EOF -if { (eval echo configure:3379: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3390: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_cos=yes else @@ -3393,16 +3404,16 @@ EOF fi echo $ac_n "checking for __builtin_cosf""... $ac_c" 1>&6 -echo "configure:3397: checking for __builtin_cosf" >&5 +echo "configure:3408: checking for __builtin_cosf" >&5 cat > conftest.$ac_ext < int main() { __builtin_cosf(0.0); ; return 0; } EOF -if { (eval echo configure:3406: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3417: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_cosf=yes else @@ -3420,16 +3431,16 @@ EOF fi echo $ac_n "checking for __builtin_cosl""... $ac_c" 1>&6 -echo "configure:3424: checking for __builtin_cosl" >&5 +echo "configure:3435: checking for __builtin_cosl" >&5 cat > conftest.$ac_ext < int main() { __builtin_cosl(0.0); ; return 0; } EOF -if { (eval echo configure:3433: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3444: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_cosl=yes else @@ -3447,16 +3458,16 @@ EOF fi echo $ac_n "checking for __builtin_cosh""... $ac_c" 1>&6 -echo "configure:3451: checking for __builtin_cosh" >&5 +echo "configure:3462: checking for __builtin_cosh" >&5 cat > conftest.$ac_ext < int main() { __builtin_cosh(0.0); ; return 0; } EOF -if { (eval echo configure:3460: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3471: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_cosh=yes else @@ -3474,16 +3485,16 @@ EOF fi echo $ac_n "checking for __builtin_coshf""... $ac_c" 1>&6 -echo "configure:3478: checking for __builtin_coshf" >&5 +echo "configure:3489: checking for __builtin_coshf" >&5 cat > conftest.$ac_ext < int main() { __builtin_coshf(0.0); ; return 0; } EOF -if { (eval echo configure:3487: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3498: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_coshf=yes else @@ -3501,16 +3512,16 @@ EOF fi echo $ac_n "checking for __builtin_coshl""... $ac_c" 1>&6 -echo "configure:3505: checking for __builtin_coshl" >&5 +echo "configure:3516: checking for __builtin_coshl" >&5 cat > conftest.$ac_ext < int main() { __builtin_coshl(0.0); ; return 0; } EOF -if { (eval echo configure:3514: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3525: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_coshl=yes else @@ -3528,16 +3539,16 @@ EOF fi echo $ac_n "checking for __builtin_exp""... $ac_c" 1>&6 -echo "configure:3532: checking for __builtin_exp" >&5 +echo "configure:3543: checking for __builtin_exp" >&5 cat > conftest.$ac_ext < int main() { __builtin_exp(0.0); ; return 0; } EOF -if { (eval echo configure:3541: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3552: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_exp=yes else @@ -3555,16 +3566,16 @@ EOF fi echo $ac_n "checking for __builtin_expf""... $ac_c" 1>&6 -echo "configure:3559: checking for __builtin_expf" >&5 +echo "configure:3570: checking for __builtin_expf" >&5 cat > conftest.$ac_ext < int main() { __builtin_expf(0.0); ; return 0; } EOF -if { (eval echo configure:3568: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3579: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_expf=yes else @@ -3582,16 +3593,16 @@ EOF fi echo $ac_n "checking for __builtin_expl""... $ac_c" 1>&6 -echo "configure:3586: checking for __builtin_expl" >&5 +echo "configure:3597: checking for __builtin_expl" >&5 cat > conftest.$ac_ext < int main() { __builtin_expl(0.0); ; return 0; } EOF -if { (eval echo configure:3595: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3606: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_expl=yes else @@ -3609,16 +3620,16 @@ EOF fi echo $ac_n "checking for __builtin_fabs""... $ac_c" 1>&6 -echo "configure:3613: checking for __builtin_fabs" >&5 +echo "configure:3624: checking for __builtin_fabs" >&5 cat > conftest.$ac_ext < int main() { __builtin_fabs(0.0); ; return 0; } EOF -if { (eval echo configure:3622: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3633: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_fabs=yes else @@ -3636,16 +3647,16 @@ EOF fi echo $ac_n "checking for __builtin_fabsf""... $ac_c" 1>&6 -echo "configure:3640: checking for __builtin_fabsf" >&5 +echo "configure:3651: checking for __builtin_fabsf" >&5 cat > conftest.$ac_ext < int main() { __builtin_fabsf(0.0); ; return 0; } EOF -if { (eval echo configure:3649: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3660: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_fabsf=yes else @@ -3663,16 +3674,16 @@ EOF fi echo $ac_n "checking for __builtin_fabsl""... $ac_c" 1>&6 -echo "configure:3667: checking for __builtin_fabsl" >&5 +echo "configure:3678: checking for __builtin_fabsl" >&5 cat > conftest.$ac_ext < int main() { __builtin_fabsl(0.0); ; return 0; } EOF -if { (eval echo configure:3676: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_fabsl=yes else @@ -3690,16 +3701,16 @@ EOF fi echo $ac_n "checking for __builtin_floor""... $ac_c" 1>&6 -echo "configure:3694: checking for __builtin_floor" >&5 +echo "configure:3705: checking for __builtin_floor" >&5 cat > conftest.$ac_ext < int main() { __builtin_floor(0.0); ; return 0; } EOF -if { (eval echo configure:3703: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3714: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_floor=yes else @@ -3717,16 +3728,16 @@ EOF fi echo $ac_n "checking for __builtin_floorf""... $ac_c" 1>&6 -echo "configure:3721: checking for __builtin_floorf" >&5 +echo "configure:3732: checking for __builtin_floorf" >&5 cat > conftest.$ac_ext < int main() { __builtin_floorf(0.0); ; return 0; } EOF -if { (eval echo configure:3730: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3741: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_floorf=yes else @@ -3744,16 +3755,16 @@ EOF fi echo $ac_n "checking for __builtin_floorl""... $ac_c" 1>&6 -echo "configure:3748: checking for __builtin_floorl" >&5 +echo "configure:3759: checking for __builtin_floorl" >&5 cat > conftest.$ac_ext < int main() { __builtin_floorl(0.0); ; return 0; } EOF -if { (eval echo configure:3757: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_floorl=yes else @@ -3771,16 +3782,16 @@ EOF fi echo $ac_n "checking for __builtin_fmod""... $ac_c" 1>&6 -echo "configure:3775: checking for __builtin_fmod" >&5 +echo "configure:3786: checking for __builtin_fmod" >&5 cat > conftest.$ac_ext < int main() { __builtin_fmod(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:3784: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3795: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_fmod=yes else @@ -3798,16 +3809,16 @@ EOF fi echo $ac_n "checking for __builtin_fmodf""... $ac_c" 1>&6 -echo "configure:3802: checking for __builtin_fmodf" >&5 +echo "configure:3813: checking for __builtin_fmodf" >&5 cat > conftest.$ac_ext < int main() { __builtin_fmodf(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:3811: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3822: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_fmodf=yes else @@ -3825,16 +3836,16 @@ EOF fi echo $ac_n "checking for __builtin_fmodl""... $ac_c" 1>&6 -echo "configure:3829: checking for __builtin_fmodl" >&5 +echo "configure:3840: checking for __builtin_fmodl" >&5 cat > conftest.$ac_ext < int main() { __builtin_fmodl(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:3838: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3849: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_fmodl=yes else @@ -3852,16 +3863,16 @@ EOF fi echo $ac_n "checking for __builtin_frexp""... $ac_c" 1>&6 -echo "configure:3856: checking for __builtin_frexp" >&5 +echo "configure:3867: checking for __builtin_frexp" >&5 cat > conftest.$ac_ext < int main() { __builtin_frexp(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3865: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3876: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_frexp=yes else @@ -3879,16 +3890,16 @@ EOF fi echo $ac_n "checking for __builtin_frexpf""... $ac_c" 1>&6 -echo "configure:3883: checking for __builtin_frexpf" >&5 +echo "configure:3894: checking for __builtin_frexpf" >&5 cat > conftest.$ac_ext < int main() { __builtin_frexpf(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3892: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3903: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_frexpf=yes else @@ -3906,16 +3917,16 @@ EOF fi echo $ac_n "checking for __builtin_frexpl""... $ac_c" 1>&6 -echo "configure:3910: checking for __builtin_frexpl" >&5 +echo "configure:3921: checking for __builtin_frexpl" >&5 cat > conftest.$ac_ext < int main() { __builtin_frexpl(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3919: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3930: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_frexpl=yes else @@ -3933,16 +3944,16 @@ EOF fi echo $ac_n "checking for __builtin_ldexp""... $ac_c" 1>&6 -echo "configure:3937: checking for __builtin_ldexp" >&5 +echo "configure:3948: checking for __builtin_ldexp" >&5 cat > conftest.$ac_ext < int main() { __builtin_ldexp(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3946: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3957: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ldexp=yes else @@ -3960,16 +3971,16 @@ EOF fi echo $ac_n "checking for __builtin_ldexpf""... $ac_c" 1>&6 -echo "configure:3964: checking for __builtin_ldexpf" >&5 +echo "configure:3975: checking for __builtin_ldexpf" >&5 cat > conftest.$ac_ext < int main() { __builtin_ldexpf(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3973: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3984: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ldexpf=yes else @@ -3987,16 +3998,16 @@ EOF fi echo $ac_n "checking for __builtin_ldexpl""... $ac_c" 1>&6 -echo "configure:3991: checking for __builtin_ldexpl" >&5 +echo "configure:4002: checking for __builtin_ldexpl" >&5 cat > conftest.$ac_ext < int main() { __builtin_ldexpl(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4000: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4011: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ldexpl=yes else @@ -4014,16 +4025,16 @@ EOF fi echo $ac_n "checking for __builtin_log""... $ac_c" 1>&6 -echo "configure:4018: checking for __builtin_log" >&5 +echo "configure:4029: checking for __builtin_log" >&5 cat > conftest.$ac_ext < int main() { __builtin_log(0.0); ; return 0; } EOF -if { (eval echo configure:4027: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4038: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log=yes else @@ -4041,16 +4052,16 @@ EOF fi echo $ac_n "checking for __builtin_logf""... $ac_c" 1>&6 -echo "configure:4045: checking for __builtin_logf" >&5 +echo "configure:4056: checking for __builtin_logf" >&5 cat > conftest.$ac_ext < int main() { __builtin_logf(0.0); ; return 0; } EOF -if { (eval echo configure:4054: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4065: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_logf=yes else @@ -4068,16 +4079,16 @@ EOF fi echo $ac_n "checking for __builtin_logl""... $ac_c" 1>&6 -echo "configure:4072: checking for __builtin_logl" >&5 +echo "configure:4083: checking for __builtin_logl" >&5 cat > conftest.$ac_ext < int main() { __builtin_logl(0.0); ; return 0; } EOF -if { (eval echo configure:4081: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4092: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_logl=yes else @@ -4095,16 +4106,16 @@ EOF fi echo $ac_n "checking for __builtin_log10""... $ac_c" 1>&6 -echo "configure:4099: checking for __builtin_log10" >&5 +echo "configure:4110: checking for __builtin_log10" >&5 cat > conftest.$ac_ext < int main() { __builtin_log10(0.0); ; return 0; } EOF -if { (eval echo configure:4108: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4119: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log10=yes else @@ -4122,16 +4133,16 @@ EOF fi echo $ac_n "checking for __builtin_log10f""... $ac_c" 1>&6 -echo "configure:4126: checking for __builtin_log10f" >&5 +echo "configure:4137: checking for __builtin_log10f" >&5 cat > conftest.$ac_ext < int main() { __builtin_log10f(0.0); ; return 0; } EOF -if { (eval echo configure:4135: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4146: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log10f=yes else @@ -4149,16 +4160,16 @@ EOF fi echo $ac_n "checking for __builtin_log10l""... $ac_c" 1>&6 -echo "configure:4153: checking for __builtin_log10l" >&5 +echo "configure:4164: checking for __builtin_log10l" >&5 cat > conftest.$ac_ext < int main() { __builtin_log10l(0.0); ; return 0; } EOF -if { (eval echo configure:4162: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4173: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log10l=yes else @@ -4176,16 +4187,16 @@ EOF fi echo $ac_n "checking for __builtin_modf""... $ac_c" 1>&6 -echo "configure:4180: checking for __builtin_modf" >&5 +echo "configure:4191: checking for __builtin_modf" >&5 cat > conftest.$ac_ext < int main() { __builtin_modf(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4189: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4200: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_modf=yes else @@ -4203,16 +4214,16 @@ EOF fi echo $ac_n "checking for __builtin_modff""... $ac_c" 1>&6 -echo "configure:4207: checking for __builtin_modff" >&5 +echo "configure:4218: checking for __builtin_modff" >&5 cat > conftest.$ac_ext < int main() { __builtin_modff(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4216: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4227: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_modff=yes else @@ -4230,16 +4241,16 @@ EOF fi echo $ac_n "checking for __builtin_modfl""... $ac_c" 1>&6 -echo "configure:4234: checking for __builtin_modfl" >&5 +echo "configure:4245: checking for __builtin_modfl" >&5 cat > conftest.$ac_ext < int main() { __builtin_modfl(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4243: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4254: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_modfl=yes else @@ -4257,16 +4268,16 @@ EOF fi echo $ac_n "checking for __builtin_pow""... $ac_c" 1>&6 -echo "configure:4261: checking for __builtin_pow" >&5 +echo "configure:4272: checking for __builtin_pow" >&5 cat > conftest.$ac_ext < int main() { __builtin_pow(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:4270: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4281: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_pow=yes else @@ -4284,16 +4295,16 @@ EOF fi echo $ac_n "checking for __builtin_powf""... $ac_c" 1>&6 -echo "configure:4288: checking for __builtin_powf" >&5 +echo "configure:4299: checking for __builtin_powf" >&5 cat > conftest.$ac_ext < int main() { __builtin_powf(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:4297: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4308: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_powf=yes else @@ -4311,16 +4322,16 @@ EOF fi echo $ac_n "checking for __builtin_powl""... $ac_c" 1>&6 -echo "configure:4315: checking for __builtin_powl" >&5 +echo "configure:4326: checking for __builtin_powl" >&5 cat > conftest.$ac_ext < int main() { __builtin_powl(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:4324: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4335: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_powl=yes else @@ -4338,16 +4349,16 @@ EOF fi echo $ac_n "checking for __builtin_sin""... $ac_c" 1>&6 -echo "configure:4342: checking for __builtin_sin" >&5 +echo "configure:4353: checking for __builtin_sin" >&5 cat > conftest.$ac_ext < int main() { __builtin_sin(0.0); ; return 0; } EOF -if { (eval echo configure:4351: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4362: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sin=yes else @@ -4365,16 +4376,16 @@ EOF fi echo $ac_n "checking for __builtin_sinf""... $ac_c" 1>&6 -echo "configure:4369: checking for __builtin_sinf" >&5 +echo "configure:4380: checking for __builtin_sinf" >&5 cat > conftest.$ac_ext < int main() { __builtin_sinf(0.0); ; return 0; } EOF -if { (eval echo configure:4378: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4389: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinf=yes else @@ -4392,16 +4403,16 @@ EOF fi echo $ac_n "checking for __builtin_sinl""... $ac_c" 1>&6 -echo "configure:4396: checking for __builtin_sinl" >&5 +echo "configure:4407: checking for __builtin_sinl" >&5 cat > conftest.$ac_ext < int main() { __builtin_sinl(0.0); ; return 0; } EOF -if { (eval echo configure:4405: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4416: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinl=yes else @@ -4419,16 +4430,16 @@ EOF fi echo $ac_n "checking for __builtin_sinh""... $ac_c" 1>&6 -echo "configure:4423: checking for __builtin_sinh" >&5 +echo "configure:4434: checking for __builtin_sinh" >&5 cat > conftest.$ac_ext < int main() { __builtin_sinh(0.0); ; return 0; } EOF -if { (eval echo configure:4432: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4443: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinh=yes else @@ -4446,16 +4457,16 @@ EOF fi echo $ac_n "checking for __builtin_sinhf""... $ac_c" 1>&6 -echo "configure:4450: checking for __builtin_sinhf" >&5 +echo "configure:4461: checking for __builtin_sinhf" >&5 cat > conftest.$ac_ext < int main() { __builtin_sinhf(0.0); ; return 0; } EOF -if { (eval echo configure:4459: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4470: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinhf=yes else @@ -4473,16 +4484,16 @@ EOF fi echo $ac_n "checking for __builtin_sinhl""... $ac_c" 1>&6 -echo "configure:4477: checking for __builtin_sinhl" >&5 +echo "configure:4488: checking for __builtin_sinhl" >&5 cat > conftest.$ac_ext < int main() { __builtin_sinhl(0.0); ; return 0; } EOF -if { (eval echo configure:4486: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4497: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinhl=yes else @@ -4500,16 +4511,16 @@ EOF fi echo $ac_n "checking for __builtin_sqrt""... $ac_c" 1>&6 -echo "configure:4504: checking for __builtin_sqrt" >&5 +echo "configure:4515: checking for __builtin_sqrt" >&5 cat > conftest.$ac_ext < int main() { __builtin_fsqrt(0.0); ; return 0; } EOF -if { (eval echo configure:4513: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sqrt=yes else @@ -4527,16 +4538,16 @@ EOF fi echo $ac_n "checking for __builtin_sqrtf""... $ac_c" 1>&6 -echo "configure:4531: checking for __builtin_sqrtf" >&5 +echo "configure:4542: checking for __builtin_sqrtf" >&5 cat > conftest.$ac_ext < int main() { __builtin_sqrtf(0.0); ; return 0; } EOF -if { (eval echo configure:4540: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4551: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sqrtf=yes else @@ -4554,16 +4565,16 @@ EOF fi echo $ac_n "checking for __builtin_sqrtl""... $ac_c" 1>&6 -echo "configure:4558: checking for __builtin_sqrtl" >&5 +echo "configure:4569: checking for __builtin_sqrtl" >&5 cat > conftest.$ac_ext < int main() { __builtin_sqrtl(0.0); ; return 0; } EOF -if { (eval echo configure:4567: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4578: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sqrtl=yes else @@ -4581,16 +4592,16 @@ EOF fi echo $ac_n "checking for __builtin_tan""... $ac_c" 1>&6 -echo "configure:4585: checking for __builtin_tan" >&5 +echo "configure:4596: checking for __builtin_tan" >&5 cat > conftest.$ac_ext < int main() { __builtin_tan(0.0); ; return 0; } EOF -if { (eval echo configure:4594: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tan=yes else @@ -4608,16 +4619,16 @@ EOF fi echo $ac_n "checking for __builtin_tanf""... $ac_c" 1>&6 -echo "configure:4612: checking for __builtin_tanf" >&5 +echo "configure:4623: checking for __builtin_tanf" >&5 cat > conftest.$ac_ext < int main() { __builtin_tanf(0.0); ; return 0; } EOF -if { (eval echo configure:4621: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4632: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanf=yes else @@ -4635,16 +4646,16 @@ EOF fi echo $ac_n "checking for __builtin_tanl""... $ac_c" 1>&6 -echo "configure:4639: checking for __builtin_tanl" >&5 +echo "configure:4650: checking for __builtin_tanl" >&5 cat > conftest.$ac_ext < int main() { __builtin_tanl(0.0); ; return 0; } EOF -if { (eval echo configure:4648: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4659: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanl=yes else @@ -4662,16 +4673,16 @@ EOF fi echo $ac_n "checking for __builtin_tanh""... $ac_c" 1>&6 -echo "configure:4666: checking for __builtin_tanh" >&5 +echo "configure:4677: checking for __builtin_tanh" >&5 cat > conftest.$ac_ext < int main() { __builtin_tanh(0.0); ; return 0; } EOF -if { (eval echo configure:4675: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4686: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanh=yes else @@ -4689,16 +4700,16 @@ EOF fi echo $ac_n "checking for __builtin_tanhf""... $ac_c" 1>&6 -echo "configure:4693: checking for __builtin_tanhf" >&5 +echo "configure:4704: checking for __builtin_tanhf" >&5 cat > conftest.$ac_ext < int main() { __builtin_tanhf(0.0); ; return 0; } EOF -if { (eval echo configure:4702: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4713: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanhf=yes else @@ -4716,16 +4727,16 @@ EOF fi echo $ac_n "checking for __builtin_tanhl""... $ac_c" 1>&6 -echo "configure:4720: checking for __builtin_tanhl" >&5 +echo "configure:4731: checking for __builtin_tanhl" >&5 cat > conftest.$ac_ext < int main() { __builtin_tanhl(0.0); ; return 0; } EOF -if { (eval echo configure:4729: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4740: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanhl=yes else @@ -4751,12 +4762,12 @@ cross_compiling=$ac_cv_prog_cc_cross - ac_test_CFLAGS="${CFLAGS+set}" + ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" - CFLAGS='-Werror-implicit-function-declaration' + CFLAGS='-Werror-implicit-function-declaration -fno-builtins' echo $ac_n "checking for sin in -lm""... $ac_c" 1>&6 -echo "configure:4760: checking for sin in -lm" >&5 +echo "configure:4771: checking for sin in -lm" >&5 ac_lib_var=`echo m'_'sin | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4764,7 +4775,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lm $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4790: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4801,12 +4812,12 @@ fi for ac_func in cosf fabsf sinf sqrtf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4805: checking for $ac_func" >&5 +echo "configure:4816: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4844: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4863,12 +4874,12 @@ done sincosl finite finitef finitel fqfinite fpclass qfpclass do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4867: checking for $ac_func" >&5 +echo "configure:4878: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4906: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4930,12 +4941,12 @@ done _sincosl _finite _finitef _finitel _fqfinite _fpclass _qfpclass do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4934: checking for $ac_func" >&5 +echo "configure:4945: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4973: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4991,17 +5002,17 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4995: checking for $ac_hdr" >&5 +echo "configure:5006: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5005: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5016: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5033,12 +5044,12 @@ done carg cargf nan hypot hypotf atan2f expf copysignf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5037: checking for $ac_func" >&5 +echo "configure:5048: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5076: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5090,12 +5101,12 @@ done USE_LONG_DOUBLE=no echo $ac_n "checking for copysignl""... $ac_c" 1>&6 -echo "configure:5094: checking for copysignl" >&5 +echo "configure:5105: checking for copysignl" >&5 if eval "test \"`echo '$''{'ac_cv_func_copysignl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_copysignl=yes" else @@ -5137,12 +5148,12 @@ if eval "test \"`echo '$ac_cv_func_'copysignl`\" = yes"; then csqrtl ctanhl ctanl cargl hypotl signbitl c_logl clog10l do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5141: checking for $ac_func" >&5 +echo "configure:5152: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5180: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5201,7 +5212,7 @@ fi echo $ac_n "checking for GNU C++ __complex__ support""... $ac_c" 1>&6 -echo "configure:5205: checking for GNU C++ __complex__ support" >&5 +echo "configure:5216: checking for GNU C++ __complex__ support" >&5 if eval "test \"`echo '$''{'glibcpp_cv_complex'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5215,7 +5226,7 @@ ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftes cross_compiling=$ac_cv_prog_cxx_cross cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5239: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* glibcpp_cv_complex=ok else @@ -5254,7 +5265,7 @@ EOF fi echo $ac_n "checking for GNU C++ __complex__ float support""... $ac_c" 1>&6 -echo "configure:5258: checking for GNU C++ __complex__ float support" >&5 +echo "configure:5269: checking for GNU C++ __complex__ float support" >&5 if eval "test \"`echo '$''{'glibcpp_cv_float_complex'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5287,14 +5298,14 @@ cross_compiling=$ac_cv_prog_cxx_cross }; EOB cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5309: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* glibcpp_cv_float_complex=ok else @@ -5327,17 +5338,17 @@ EOF ac_safe=`echo "wchar.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for wchar.h""... $ac_c" 1>&6 -echo "configure:5331: checking for wchar.h" >&5 +echo "configure:5342: checking for wchar.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5341: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5352: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5361,17 +5372,17 @@ fi ac_safe=`echo "wctype.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for wctype.h""... $ac_c" 1>&6 -echo "configure:5365: checking for wctype.h" >&5 +echo "configure:5376: checking for wctype.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5375: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5386: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5397,16 +5408,16 @@ fi if test x"$ac_has_wchar_h" = xyes && test x"$ac_has_wctype_h" = xyes; then echo $ac_n "checking for mbstate_t""... $ac_c" 1>&6 -echo "configure:5401: checking for mbstate_t" >&5 +echo "configure:5412: checking for mbstate_t" >&5 cat > conftest.$ac_ext < int main() { mbstate_t teststate; ; return 0; } EOF -if { (eval echo configure:5410: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5421: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_native_mbstatet=yes else @@ -5425,16 +5436,16 @@ EOF fi echo $ac_n "checking for WCHAR_MIN and WCHAR_MAX""... $ac_c" 1>&6 -echo "configure:5429: checking for WCHAR_MIN and WCHAR_MAX" >&5 +echo "configure:5440: checking for WCHAR_MIN and WCHAR_MAX" >&5 cat > conftest.$ac_ext < int main() { int i = WCHAR_MIN; int j = WCHAR_MAX; ; return 0; } EOF -if { (eval echo configure:5438: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5449: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* has_wchar_minmax=yes else @@ -5447,9 +5458,9 @@ rm -f conftest* echo "$ac_t""$has_wchar_minmax" 1>&6 echo $ac_n "checking for WEOF""... $ac_c" 1>&6 -echo "configure:5451: checking for WEOF" >&5 +echo "configure:5462: checking for WEOF" >&5 cat > conftest.$ac_ext < @@ -5458,7 +5469,7 @@ int main() { wint_t i = WEOF; ; return 0; } EOF -if { (eval echo configure:5462: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5473: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* has_weof=yes else @@ -5473,12 +5484,12 @@ rm -f conftest* for ac_func in wcslen wmemchr wmemcmp wmemcpy wmemmove wmemset do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5477: checking for $ac_func" >&5 +echo "configure:5488: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5528,7 +5539,7 @@ done echo $ac_n "checking for ISO C9X wchar_t support""... $ac_c" 1>&6 -echo "configure:5532: checking for ISO C9X wchar_t support" >&5 +echo "configure:5543: checking for ISO C9X wchar_t support" >&5 if test x"$has_weof" = xyes && test x"$has_wchar_minmax" = xyes && test x"$ac_wfuncs" = xyes; then ac_isoC9X_wchar_t=yes else @@ -5538,17 +5549,17 @@ echo "configure:5532: checking for ISO C9X wchar_t support" >&5 ac_safe=`echo "iconv.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for iconv.h""... $ac_c" 1>&6 -echo "configure:5542: checking for iconv.h" >&5 +echo "configure:5553: checking for iconv.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5552: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5573,12 +5584,12 @@ fi for ac_func in iconv_open iconv_close iconv do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5577: checking for $ac_func" >&5 +echo "configure:5588: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5628,7 +5639,7 @@ done echo $ac_n "checking for XPG2 wchar_t support""... $ac_c" 1>&6 -echo "configure:5632: checking for XPG2 wchar_t support" >&5 +echo "configure:5643: checking for XPG2 wchar_t support" >&5 if test x"$ac_has_iconv_h" = xyes && test x"$ac_XPG2funcs" = xyes; then ac_XPG2_wchar_t=yes else @@ -5637,7 +5648,7 @@ echo "configure:5632: checking for XPG2 wchar_t support" >&5 echo "$ac_t""$ac_XPG2_wchar_t" 1>&6 echo $ac_n "checking for enabled wchar_t specializations""... $ac_c" 1>&6 -echo "configure:5641: checking for enabled wchar_t specializations" >&5 +echo "configure:5652: checking for enabled wchar_t specializations" >&5 if test x"$ac_isoC9X_wchar_t" = xyes && test x"$ac_XPG2_wchar_t" = xyes; then libinst_wstring_la="libinst-wstring.la" cat >> confdefs.h <<\EOF @@ -5662,17 +5673,17 @@ EOF ac_safe=`echo "ctype.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ctype.h""... $ac_c" 1>&6 -echo "configure:5666: checking for ctype.h" >&5 +echo "configure:5677: checking for ctype.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5676: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5687: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5693,9 +5704,9 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ctype_default=yes echo $ac_n "checking for gnu-linux ""... $ac_c" 1>&6 -echo "configure:5697: checking for gnu-linux " >&5 +echo "configure:5708: checking for gnu-linux " >&5 cat > conftest.$ac_ext < int main() { @@ -5706,7 +5717,7 @@ int + __ctype_tolower[a] + __ctype_toupper[a] + __ctype_b[a];} ; return 0; } EOF -if { (eval echo configure:5710: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5721: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_linux=yes @@ -5725,9 +5736,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking for freebsd 4.0 ""... $ac_c" 1>&6 -echo "configure:5729: checking for freebsd 4.0 " >&5 +echo "configure:5740: checking for freebsd 4.0 " >&5 cat > conftest.$ac_ext < int main() { @@ -5737,7 +5748,7 @@ int + _CTYPE_D + _CTYPE_P + _CTYPE_X + _CTYPE_G ;} ; return 0; } EOF -if { (eval echo configure:5741: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5752: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_bsd=yes @@ -5757,9 +5768,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking for freebsd 3.4 ""... $ac_c" 1>&6 -echo "configure:5761: checking for freebsd 3.4 " >&5 +echo "configure:5772: checking for freebsd 3.4 " >&5 cat > conftest.$ac_ext < int main() { @@ -5769,7 +5780,7 @@ int + _D + _P + _X + _G + __istype (a, 0);} ; return 0; } EOF -if { (eval echo configure:5773: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5784: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_freebsd34=yes @@ -5789,9 +5800,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking for solaris 2.6,7,8 ""... $ac_c" 1>&6 -echo "configure:5793: checking for solaris 2.6,7,8 " >&5 +echo "configure:5804: checking for solaris 2.6,7,8 " >&5 cat > conftest.$ac_ext < int main() { @@ -5802,7 +5813,7 @@ int + __trans_lower[a] + __trans_upper[a] + __ctype_mask[a];} ; return 0; } EOF -if { (eval echo configure:5806: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5817: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_solaris=yes @@ -5817,7 +5828,7 @@ rm -f conftest* if test $ctype_solaris = "yes"; then echo $ac_n "checking for version""... $ac_c" 1>&6 -echo "configure:5821: checking for version" >&5 +echo "configure:5832: checking for version" >&5 ac_ext=C # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ac_cpp='$CXXCPP $CPPFLAGS' @@ -5826,14 +5837,14 @@ ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftes cross_compiling=$ac_cv_prog_cxx_cross cat > conftest.$ac_ext < int main() { typedef long* __to_type; __to_type const& _M_toupper = __trans_upper; ; return 0; } EOF -if { (eval echo configure:5837: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5848: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_solaris26=yes @@ -5865,9 +5876,9 @@ cross_compiling=$ac_cv_prog_cc_cross if test $ctype_default = "yes"; then echo $ac_n "checking for solaris 2.5.1 ""... $ac_c" 1>&6 -echo "configure:5869: checking for solaris 2.5.1 " >&5 +echo "configure:5880: checking for solaris 2.5.1 " >&5 cat > conftest.$ac_ext < int main() { @@ -5877,7 +5888,7 @@ int + __ctype[a];} ; return 0; } EOF -if { (eval echo configure:5881: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5892: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_solaris25=yes @@ -5897,9 +5908,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking for aix ""... $ac_c" 1>&6 -echo "configure:5901: checking for aix " >&5 +echo "configure:5912: checking for aix " >&5 cat > conftest.$ac_ext < int main() { @@ -5910,7 +5921,7 @@ int + _VALC('a') + _IS('c', 0);} ; return 0; } EOF -if { (eval echo configure:5914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5925: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_aix=yes @@ -5930,9 +5941,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking for newlib ""... $ac_c" 1>&6 -echo "configure:5934: checking for newlib " >&5 +echo "configure:5945: checking for newlib " >&5 cat > conftest.$ac_ext < int main() { @@ -5942,7 +5953,7 @@ int + _ctype_[a];} ; return 0; } EOF -if { (eval echo configure:5946: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5957: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_newlib=yes @@ -5976,17 +5987,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:5980: checking for $ac_hdr" >&5 +echo "configure:5991: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5990: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6001: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6015,12 +6026,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6019: checking for $ac_func" >&5 +echo "configure:6030: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6058: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6068,7 +6079,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:6072: checking for working mmap" >&5 +echo "configure:6083: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6076,7 +6087,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6231: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -6279,19 +6290,19 @@ fi if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:6283: checking for LC_MESSAGES" >&5 +echo "configure:6294: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'ac_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:6295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_val_LC_MESSAGES=yes else diff --git a/libstdc++-v3/docs/install.html b/libstdc++-v3/docs/install.html index 8dcf1bb8f1e..4e56eda80a8 100644 --- a/libstdc++-v3/docs/install.html +++ b/libstdc++-v3/docs/install.html @@ -9,7 +9,7 @@ libstdc++-v3 Installation Instructions - + @@ -48,12 +48,13 @@ GCC snapshots can be had from one of the sites on their mirror list.

-

In addition, if you plan to modify the makefiles or regenerate the - configure scripts: automake (version 1.4 from Cygnus, not the one on - the net. It's available -here - and autoconf (version 2.13 and higher), which is available - here. +

In addition, if you plan to modify the makefiles or regenerate + the configure scripts you'll need the nuevo automake (version + 1.4 from Cygnus, not the one on the net. In addition, libtool + and autoconf are also required to be installed in the same + location as the new automake: you can get them all in one + easy-to-use tarball + here.

If you don't have bash, and want to run 'make check' to test your build, you'll need to get bash 2.x. Also recommended @@ -67,7 +68,8 @@ obtain maximum benefit from this, binutils after this date should also be used (bugs were fixed with c++ exception handling related to this change in libstdc++-v3.) The version of these tools should - be: 2.10.90 + be: 2.10.90, and you can get snapshots (as well as releases) of binutils + here.

Finally, if you are using cygwin to compile libstdc++-v3 on @@ -379,7 +381,7 @@ To rebuild just libstdc++, use: Comments and suggestions are welcome, and may be sent to Phil Edwards or Gabriel Dos Reis. -
$Id: install.html,v 1.1 2000/04/21 20:33:30 bkoz Exp $ +
$Id: install.html,v 1.2 2000/06/19 22:20:15 bkoz Exp $

diff --git a/libstdc++-v3/testsuite/21_strings/find.cc b/libstdc++-v3/testsuite/21_strings/find.cc index 6202d8390e1..a6946b3ec57 100644 --- a/libstdc++-v3/testsuite/21_strings/find.cc +++ b/libstdc++-v3/testsuite/21_strings/find.cc @@ -56,10 +56,16 @@ bool test01(void) test &= csz01 == 8; csz01 = str01.find(str03, 12); test &= csz01 == npos; + + // An empty string consists of no characters + // therefore it should be found at every point in a string, + // except beyond the end csz01 = str01.find(str04, 0); test &= csz01 == 0; csz01 = str01.find(str04, 5); test &= csz01 == 5; + csz01 = str01.find(str04, str01.size()); + test &= csz01 == npos; // size_type find(const char* s, size_type pos, size_type n) const; csz01 = str01.find(str_lit01, 0, 3); @@ -71,7 +77,7 @@ bool test01(void) csz01 = str01.find(str_lit01); test &= csz01 == 0; csz01 = str01.find(str_lit01, 3); - test &= csz01 == npos; + test &= csz01 == 3; // zero length string should be found at pos // size_type find(char c, size_type pos = 0) const; csz01 = str01.find('z'); @@ -80,7 +86,6 @@ bool test01(void) csz01 = str01.find('/'); test &= csz01 == npos; - // size_type find_first_of(const string&, size_type pos = 0) const; std::string str05("xena rulez"); csz01 = str01.find_first_of(str01); @@ -105,14 +110,12 @@ bool test01(void) // An empty string consists of no characters // therefore it should be found at every point in a string, // except beyond the end + // However, str1.find_first_of(str2,pos) finds the first character in + // str1 (starting at pos) that exists in str2, which is none for empty str2 csz01 = str01.find_first_of(str04, 0); test &= csz01 == npos; csz01 = str01.find_first_of(str04, 5); test &= csz01 == npos; - csz01 = str01.find(str04, str01.size()); - test &= csz01 == str01.size(); - csz01 = str01.find(str04, str01.size() + 1); - test &= csz01 == npos; // size_type find_first_of(const char* s, size_type pos, size_type n) const; csz01 = str01.find_first_of(str_lit01, 0, 3);