diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-06-14 01:16:03 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-06-14 01:16:03 +0000 |
commit | 5ae55a2e04d9c820dc0ed10f1bb062505a73760f (patch) | |
tree | 37aa931b677a25810479b28d6d97eb71207f587d /libstdc++-v3/configure | |
parent | cc12edec9b5f6376416605211a1fb602b09a541f (diff) | |
download | gcc-5ae55a2e04d9c820dc0ed10f1bb062505a73760f.zip gcc-5ae55a2e04d9c820dc0ed10f1bb062505a73760f.tar.gz gcc-5ae55a2e04d9c820dc0ed10f1bb062505a73760f.tar.bz2 |
[multiple changes]
2000-06-13 Steven King <sxking@uswest.net>
* acinclude.m4: Fixup some of the builtin math tests and add tests for
__builtin_fmod* and test libm for fmodf, fmodl or _fmodf, _fmodl.
* acconfig.h: Add entries for fmod*.
2000-06-13 Branko Cibej <branko.cibej@hermes.si>
* bits/std_cmath.h: Fix typos in tests (*_FMODFF -> *_FMODF).
Test *_MODFF not *_MODF for modf(float, float*).
(modf(float, float*)): Remove reference to _C_legacy.
From-SVN: r34539
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-x | libstdc++-v3/configure | 501 |
1 files changed, 291 insertions, 210 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index c7fd7fa..16086f6 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -3287,7 +3287,7 @@ echo "configure:3285: checking for __builtin_atan2" >&5 #include "confdefs.h" #include <math.h> int main() { - __builtin_atan2(0.0); + __builtin_atan2(0.0, 0.0); ; return 0; } EOF if { (eval echo configure:3294: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -3314,7 +3314,7 @@ echo "configure:3312: checking for __builtin_atan2f" >&5 #include "confdefs.h" #include <math.h> int main() { - __builtin_atan2f(0.0); + __builtin_atan2f(0.0, 0.0); ; return 0; } EOF if { (eval echo configure:3321: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -3341,7 +3341,7 @@ echo "configure:3339: checking for __builtin_atan2l" >&5 #include "confdefs.h" #include <math.h> int main() { - __builtin_atan2l(0.0); + __builtin_atan2l(0.0, 0.0); ; return 0; } EOF if { (eval echo configure:3348: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -3773,7 +3773,7 @@ echo "configure:3771: checking for __builtin_floor" >&5 #include "confdefs.h" #include <math.h> int main() { - __builtin_ffloor(0.0); + __builtin_floor(0.0); ; return 0; } EOF if { (eval echo configure:3780: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -3847,18 +3847,99 @@ rm -f conftest* EOF fi - echo $ac_n "checking for __builtin_frexp""... $ac_c" 1>&6 -echo "configure:3852: checking for __builtin_frexp" >&5 + echo $ac_n "checking for __builtin_fmod""... $ac_c" 1>&6 +echo "configure:3852: checking for __builtin_fmod" >&5 cat > conftest.$ac_ext <<EOF #line 3854 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_frexp(0.0); + __builtin_fmod(0.0, 0.0); ; return 0; } EOF if { (eval echo configure:3861: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* + use_builtin_fmod=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + use_builtin_fmod=no +fi +rm -f conftest* + echo "$ac_t""$use_builtin_fmod" 1>&6 + if test $use_builtin_fmod = "yes"; then + cat >> confdefs.h <<\EOF +#define HAVE_BUILTIN_FMOD 1 +EOF + + fi + echo $ac_n "checking for __builtin_fmodf""... $ac_c" 1>&6 +echo "configure:3879: checking for __builtin_fmodf" >&5 + cat > conftest.$ac_ext <<EOF +#line 3881 "configure" +#include "confdefs.h" +#include <math.h> +int main() { + __builtin_fmodf(0.0, 0.0); +; return 0; } +EOF +if { (eval echo configure:3888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + use_builtin_fmodf=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + use_builtin_fmodf=no +fi +rm -f conftest* + echo "$ac_t""$use_builtin_fmodf" 1>&6 + if test $use_builtin_fmodf = "yes"; then + cat >> confdefs.h <<\EOF +#define HAVE_BUILTIN_FMODF 1 +EOF + + fi + echo $ac_n "checking for __builtin_fmodl""... $ac_c" 1>&6 +echo "configure:3906: checking for __builtin_fmodl" >&5 + cat > conftest.$ac_ext <<EOF +#line 3908 "configure" +#include "confdefs.h" +#include <math.h> +int main() { + __builtin_fmodl(0.0, 0.0); +; return 0; } +EOF +if { (eval echo configure:3915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + use_builtin_fmodl=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + use_builtin_fmodl=no +fi +rm -f conftest* + echo "$ac_t""$use_builtin_fmodl" 1>&6 + if test $use_builtin_fmodl = "yes"; then + cat >> confdefs.h <<\EOF +#define HAVE_BUILTIN_FMODL 1 +EOF + + fi + echo $ac_n "checking for __builtin_frexp""... $ac_c" 1>&6 +echo "configure:3933: checking for __builtin_frexp" >&5 + cat > conftest.$ac_ext <<EOF +#line 3935 "configure" +#include "confdefs.h" +#include <math.h> +int main() { + __builtin_frexp(0.0, 0); +; return 0; } +EOF +if { (eval echo configure:3942: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* use_builtin_frexp=yes else echo "configure: failed program was:" >&5 @@ -3875,16 +3956,16 @@ EOF fi echo $ac_n "checking for __builtin_frexpf""... $ac_c" 1>&6 -echo "configure:3879: checking for __builtin_frexpf" >&5 +echo "configure:3960: checking for __builtin_frexpf" >&5 cat > conftest.$ac_ext <<EOF -#line 3881 "configure" +#line 3962 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_frexpf(0.0); + __builtin_frexpf(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3969: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_frexpf=yes else @@ -3902,16 +3983,16 @@ EOF fi echo $ac_n "checking for __builtin_frexpl""... $ac_c" 1>&6 -echo "configure:3906: checking for __builtin_frexpl" >&5 +echo "configure:3987: checking for __builtin_frexpl" >&5 cat > conftest.$ac_ext <<EOF -#line 3908 "configure" +#line 3989 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_frexpl(0.0); + __builtin_frexpl(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3996: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_frexpl=yes else @@ -3929,16 +4010,16 @@ EOF fi echo $ac_n "checking for __builtin_ldexp""... $ac_c" 1>&6 -echo "configure:3933: checking for __builtin_ldexp" >&5 +echo "configure:4014: checking for __builtin_ldexp" >&5 cat > conftest.$ac_ext <<EOF -#line 3935 "configure" +#line 4016 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_ldexp(0.0); + __builtin_ldexp(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3942: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4023: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ldexp=yes else @@ -3956,16 +4037,16 @@ EOF fi echo $ac_n "checking for __builtin_ldexpf""... $ac_c" 1>&6 -echo "configure:3960: checking for __builtin_ldexpf" >&5 +echo "configure:4041: checking for __builtin_ldexpf" >&5 cat > conftest.$ac_ext <<EOF -#line 3962 "configure" +#line 4043 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_ldexpf(0.0); + __builtin_ldexpf(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3969: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4050: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ldexpf=yes else @@ -3983,16 +4064,16 @@ EOF fi echo $ac_n "checking for __builtin_ldexpl""... $ac_c" 1>&6 -echo "configure:3987: checking for __builtin_ldexpl" >&5 +echo "configure:4068: checking for __builtin_ldexpl" >&5 cat > conftest.$ac_ext <<EOF -#line 3989 "configure" +#line 4070 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_ldexpl(0.0); + __builtin_ldexpl(0.0, 0); ; return 0; } EOF -if { (eval echo configure:3996: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4077: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_ldexpl=yes else @@ -4010,16 +4091,16 @@ EOF fi echo $ac_n "checking for __builtin_log""... $ac_c" 1>&6 -echo "configure:4014: checking for __builtin_log" >&5 +echo "configure:4095: checking for __builtin_log" >&5 cat > conftest.$ac_ext <<EOF -#line 4016 "configure" +#line 4097 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_log(0.0); ; return 0; } EOF -if { (eval echo configure:4023: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4104: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log=yes else @@ -4037,16 +4118,16 @@ EOF fi echo $ac_n "checking for __builtin_logf""... $ac_c" 1>&6 -echo "configure:4041: checking for __builtin_logf" >&5 +echo "configure:4122: checking for __builtin_logf" >&5 cat > conftest.$ac_ext <<EOF -#line 4043 "configure" +#line 4124 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_logf(0.0); ; return 0; } EOF -if { (eval echo configure:4050: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_logf=yes else @@ -4064,16 +4145,16 @@ EOF fi echo $ac_n "checking for __builtin_logl""... $ac_c" 1>&6 -echo "configure:4068: checking for __builtin_logl" >&5 +echo "configure:4149: checking for __builtin_logl" >&5 cat > conftest.$ac_ext <<EOF -#line 4070 "configure" +#line 4151 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_logl(0.0); ; return 0; } EOF -if { (eval echo configure:4077: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4158: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_logl=yes else @@ -4091,16 +4172,16 @@ EOF fi echo $ac_n "checking for __builtin_log10""... $ac_c" 1>&6 -echo "configure:4095: checking for __builtin_log10" >&5 +echo "configure:4176: checking for __builtin_log10" >&5 cat > conftest.$ac_ext <<EOF -#line 4097 "configure" +#line 4178 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_log10(0.0); ; return 0; } EOF -if { (eval echo configure:4104: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log10=yes else @@ -4118,16 +4199,16 @@ EOF fi echo $ac_n "checking for __builtin_log10f""... $ac_c" 1>&6 -echo "configure:4122: checking for __builtin_log10f" >&5 +echo "configure:4203: checking for __builtin_log10f" >&5 cat > conftest.$ac_ext <<EOF -#line 4124 "configure" +#line 4205 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_log10f(0.0); ; return 0; } EOF -if { (eval echo configure:4131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4212: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log10f=yes else @@ -4145,16 +4226,16 @@ EOF fi echo $ac_n "checking for __builtin_log10l""... $ac_c" 1>&6 -echo "configure:4149: checking for __builtin_log10l" >&5 +echo "configure:4230: checking for __builtin_log10l" >&5 cat > conftest.$ac_ext <<EOF -#line 4151 "configure" +#line 4232 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_log10l(0.0); ; return 0; } EOF -if { (eval echo configure:4158: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4239: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_log10l=yes else @@ -4172,16 +4253,16 @@ EOF fi echo $ac_n "checking for __builtin_modf""... $ac_c" 1>&6 -echo "configure:4176: checking for __builtin_modf" >&5 +echo "configure:4257: checking for __builtin_modf" >&5 cat > conftest.$ac_ext <<EOF -#line 4178 "configure" +#line 4259 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_modf(0.0); + __builtin_modf(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_modf=yes else @@ -4199,16 +4280,16 @@ EOF fi echo $ac_n "checking for __builtin_modff""... $ac_c" 1>&6 -echo "configure:4203: checking for __builtin_modff" >&5 +echo "configure:4284: checking for __builtin_modff" >&5 cat > conftest.$ac_ext <<EOF -#line 4205 "configure" +#line 4286 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_modff(0.0); + __builtin_modff(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4212: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4293: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_modff=yes else @@ -4226,16 +4307,16 @@ EOF fi echo $ac_n "checking for __builtin_modfl""... $ac_c" 1>&6 -echo "configure:4230: checking for __builtin_modfl" >&5 +echo "configure:4311: checking for __builtin_modfl" >&5 cat > conftest.$ac_ext <<EOF -#line 4232 "configure" +#line 4313 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_modfl(0.0); + __builtin_modfl(0.0, 0); ; return 0; } EOF -if { (eval echo configure:4239: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4320: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_modfl=yes else @@ -4253,16 +4334,16 @@ EOF fi echo $ac_n "checking for __builtin_pow""... $ac_c" 1>&6 -echo "configure:4257: checking for __builtin_pow" >&5 +echo "configure:4338: checking for __builtin_pow" >&5 cat > conftest.$ac_ext <<EOF -#line 4259 "configure" +#line 4340 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_pow(0.0); + __builtin_pow(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:4266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4347: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_pow=yes else @@ -4280,16 +4361,16 @@ EOF fi echo $ac_n "checking for __builtin_powf""... $ac_c" 1>&6 -echo "configure:4284: checking for __builtin_powf" >&5 +echo "configure:4365: checking for __builtin_powf" >&5 cat > conftest.$ac_ext <<EOF -#line 4286 "configure" +#line 4367 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_powf(0.0); + __builtin_powf(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:4293: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_powf=yes else @@ -4307,16 +4388,16 @@ EOF fi echo $ac_n "checking for __builtin_powl""... $ac_c" 1>&6 -echo "configure:4311: checking for __builtin_powl" >&5 +echo "configure:4392: checking for __builtin_powl" >&5 cat > conftest.$ac_ext <<EOF -#line 4313 "configure" +#line 4394 "configure" #include "confdefs.h" #include <math.h> int main() { - __builtin_powl(0.0); + __builtin_powl(0.0, 0.0); ; return 0; } EOF -if { (eval echo configure:4320: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4401: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_powl=yes else @@ -4334,16 +4415,16 @@ EOF fi echo $ac_n "checking for __builtin_sin""... $ac_c" 1>&6 -echo "configure:4338: checking for __builtin_sin" >&5 +echo "configure:4419: checking for __builtin_sin" >&5 cat > conftest.$ac_ext <<EOF -#line 4340 "configure" +#line 4421 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sin(0.0); ; return 0; } EOF -if { (eval echo configure:4347: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sin=yes else @@ -4361,16 +4442,16 @@ EOF fi echo $ac_n "checking for __builtin_sinf""... $ac_c" 1>&6 -echo "configure:4365: checking for __builtin_sinf" >&5 +echo "configure:4446: checking for __builtin_sinf" >&5 cat > conftest.$ac_ext <<EOF -#line 4367 "configure" +#line 4448 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sinf(0.0); ; return 0; } EOF -if { (eval echo configure:4374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4455: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinf=yes else @@ -4388,16 +4469,16 @@ EOF fi echo $ac_n "checking for __builtin_sinl""... $ac_c" 1>&6 -echo "configure:4392: checking for __builtin_sinl" >&5 +echo "configure:4473: checking for __builtin_sinl" >&5 cat > conftest.$ac_ext <<EOF -#line 4394 "configure" +#line 4475 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sinl(0.0); ; return 0; } EOF -if { (eval echo configure:4401: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4482: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinl=yes else @@ -4415,16 +4496,16 @@ EOF fi echo $ac_n "checking for __builtin_sinh""... $ac_c" 1>&6 -echo "configure:4419: checking for __builtin_sinh" >&5 +echo "configure:4500: checking for __builtin_sinh" >&5 cat > conftest.$ac_ext <<EOF -#line 4421 "configure" +#line 4502 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sinh(0.0); ; return 0; } EOF -if { (eval echo configure:4428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4509: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinh=yes else @@ -4442,16 +4523,16 @@ EOF fi echo $ac_n "checking for __builtin_sinhf""... $ac_c" 1>&6 -echo "configure:4446: checking for __builtin_sinhf" >&5 +echo "configure:4527: checking for __builtin_sinhf" >&5 cat > conftest.$ac_ext <<EOF -#line 4448 "configure" +#line 4529 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sinhf(0.0); ; return 0; } EOF -if { (eval echo configure:4455: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4536: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinhf=yes else @@ -4469,16 +4550,16 @@ EOF fi echo $ac_n "checking for __builtin_sinhl""... $ac_c" 1>&6 -echo "configure:4473: checking for __builtin_sinhl" >&5 +echo "configure:4554: checking for __builtin_sinhl" >&5 cat > conftest.$ac_ext <<EOF -#line 4475 "configure" +#line 4556 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sinhl(0.0); ; return 0; } EOF -if { (eval echo configure:4482: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4563: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sinhl=yes else @@ -4496,16 +4577,16 @@ EOF fi echo $ac_n "checking for __builtin_sqrt""... $ac_c" 1>&6 -echo "configure:4500: checking for __builtin_sqrt" >&5 +echo "configure:4581: checking for __builtin_sqrt" >&5 cat > conftest.$ac_ext <<EOF -#line 4502 "configure" +#line 4583 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_fsqrt(0.0); ; return 0; } EOF -if { (eval echo configure:4509: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sqrt=yes else @@ -4523,16 +4604,16 @@ EOF fi echo $ac_n "checking for __builtin_sqrtf""... $ac_c" 1>&6 -echo "configure:4527: checking for __builtin_sqrtf" >&5 +echo "configure:4608: checking for __builtin_sqrtf" >&5 cat > conftest.$ac_ext <<EOF -#line 4529 "configure" +#line 4610 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sqrtf(0.0); ; return 0; } EOF -if { (eval echo configure:4536: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sqrtf=yes else @@ -4550,16 +4631,16 @@ EOF fi echo $ac_n "checking for __builtin_sqrtl""... $ac_c" 1>&6 -echo "configure:4554: checking for __builtin_sqrtl" >&5 +echo "configure:4635: checking for __builtin_sqrtl" >&5 cat > conftest.$ac_ext <<EOF -#line 4556 "configure" +#line 4637 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_sqrtl(0.0); ; return 0; } EOF -if { (eval echo configure:4563: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4644: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_sqrtl=yes else @@ -4577,16 +4658,16 @@ EOF fi echo $ac_n "checking for __builtin_tan""... $ac_c" 1>&6 -echo "configure:4581: checking for __builtin_tan" >&5 +echo "configure:4662: checking for __builtin_tan" >&5 cat > conftest.$ac_ext <<EOF -#line 4583 "configure" +#line 4664 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_tan(0.0); ; return 0; } EOF -if { (eval echo configure:4590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4671: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tan=yes else @@ -4604,16 +4685,16 @@ EOF fi echo $ac_n "checking for __builtin_tanf""... $ac_c" 1>&6 -echo "configure:4608: checking for __builtin_tanf" >&5 +echo "configure:4689: checking for __builtin_tanf" >&5 cat > conftest.$ac_ext <<EOF -#line 4610 "configure" +#line 4691 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_tanf(0.0); ; return 0; } EOF -if { (eval echo configure:4617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4698: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanf=yes else @@ -4631,16 +4712,16 @@ EOF fi echo $ac_n "checking for __builtin_tanl""... $ac_c" 1>&6 -echo "configure:4635: checking for __builtin_tanl" >&5 +echo "configure:4716: checking for __builtin_tanl" >&5 cat > conftest.$ac_ext <<EOF -#line 4637 "configure" +#line 4718 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_tanl(0.0); ; return 0; } EOF -if { (eval echo configure:4644: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4725: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanl=yes else @@ -4658,16 +4739,16 @@ EOF fi echo $ac_n "checking for __builtin_tanh""... $ac_c" 1>&6 -echo "configure:4662: checking for __builtin_tanh" >&5 +echo "configure:4743: checking for __builtin_tanh" >&5 cat > conftest.$ac_ext <<EOF -#line 4664 "configure" +#line 4745 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_tanh(0.0); ; return 0; } EOF -if { (eval echo configure:4671: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4752: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanh=yes else @@ -4685,16 +4766,16 @@ EOF fi echo $ac_n "checking for __builtin_tanhf""... $ac_c" 1>&6 -echo "configure:4689: checking for __builtin_tanhf" >&5 +echo "configure:4770: checking for __builtin_tanhf" >&5 cat > conftest.$ac_ext <<EOF -#line 4691 "configure" +#line 4772 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_tanhf(0.0); ; return 0; } EOF -if { (eval echo configure:4698: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4779: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanhf=yes else @@ -4712,16 +4793,16 @@ EOF fi echo $ac_n "checking for __builtin_tanhl""... $ac_c" 1>&6 -echo "configure:4716: checking for __builtin_tanhl" >&5 +echo "configure:4797: checking for __builtin_tanhl" >&5 cat > conftest.$ac_ext <<EOF -#line 4718 "configure" +#line 4799 "configure" #include "confdefs.h" #include <math.h> int main() { __builtin_tanhl(0.0); ; return 0; } EOF -if { (eval echo configure:4725: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4806: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_builtin_tanhl=yes else @@ -4748,7 +4829,7 @@ cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking for sin in -lm""... $ac_c" 1>&6 -echo "configure:4752: checking for sin in -lm" >&5 +echo "configure:4833: 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 @@ -4756,7 +4837,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lm $LIBS" cat > conftest.$ac_ext <<EOF -#line 4760 "configure" +#line 4841 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -4767,7 +4848,7 @@ int main() { sin() ; return 0; } EOF -if { (eval echo configure:4771: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4852: \"$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 @@ -4794,17 +4875,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4798: checking for $ac_hdr" >&5 +echo "configure:4879: 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 -#line 4803 "configure" +#line 4884 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4808: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4889: \"$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* @@ -4836,12 +4917,12 @@ done carg cargf nan hypot hypotf atan2f expf copysignf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4840: checking for $ac_func" >&5 +echo "configure:4921: 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 <<EOF -#line 4845 "configure" +#line 4926 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -4864,7 +4945,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:4868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4949: \"$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 @@ -4893,12 +4974,12 @@ done USE_LONG_DOUBLE=no echo $ac_n "checking for copysignl""... $ac_c" 1>&6 -echo "configure:4897: checking for copysignl" >&5 +echo "configure:4978: 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 <<EOF -#line 4902 "configure" +#line 4983 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char copysignl(); below. */ @@ -4921,7 +5002,7 @@ copysignl(); ; return 0; } EOF -if { (eval echo configure:4925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5006: \"$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 @@ -4940,12 +5021,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:4944: checking for $ac_func" >&5 +echo "configure:5025: 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 <<EOF -#line 4949 "configure" +#line 5030 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -4968,7 +5049,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:4972: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5053: \"$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 @@ -5003,12 +5084,12 @@ fi for ac_func in cosf fabsf sinf sqrtf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5007: checking for $ac_func" >&5 +echo "configure:5088: 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 <<EOF -#line 5012 "configure" +#line 5093 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5031,7 +5112,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5035: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5116: \"$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 @@ -5059,18 +5140,18 @@ done for ac_func in isnan isnanf isnanl isinf isinff isinfl copysign copysignl \ acosf acosl asinf asinl atanf atanl atan2f atan2l ceilf ceill cosl \ - coshf coshl expf expl fabsl floorf floorl frexpf frexpl ldexpf \ - ldexpl logf logl log10f log10l modf modff modfl powf powl sinl sinhf \ + coshf coshl expf expl fabsl floorf floorl fmodf fmodl frexpf frexpl ldexpf \ + ldexpl logf logl log10f log10l modff modfl powf powl sinl sinhf \ sinhl sqrtl tanf tanl tanhf tanhl strtof strtold sincos sincosf \ sincosl finite finitef finitel fqfinite fpclass qfpclass do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5069: checking for $ac_func" >&5 +echo "configure:5150: 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 <<EOF -#line 5074 "configure" +#line 5155 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5093,7 +5174,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5178: \"$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 @@ -5126,18 +5207,18 @@ done for ac_func in _isnan _isnanf _isnanl _isinf _isinff _isinfl _copysign \ _copysignl _acosf _acosl _asinf _asinl _atanf _atanl _atan2f _atan2l \ _ceilf _ceill _cosf _cosl _coshf _coshl _expf _expl _fabsf _fabsl \ - _floorf _floorl _frexpf _frexpl _ldexpf _ldexpl _logf _logl _log10f \ - _log10l _modf _modff _modfl _powf _powl _sinf _sinl _sinhf _sinhl _sqrtf \ - _sqrtl _tanf _tanl _tanhf _tanhl _strtof _strtold _sincos _sincosf _sincosl \ - _finite _finitef _finitel _fqfinite _fpclass _qfpclass + _floorf _floorl _fmodf _fmodl _frexpf _frexpl _ldexpf _ldexpl _logf _logl \ + _log10f _log10l _modff _modfl _powf _powl _sinf _sinl _sinhf _sinhl \ + _sqrtf _sqrtl _tanf _tanl _tanhf _tanhl _strtof _strtold _sincos _sincosf \ + _sincosl _finite _finitef _finitel _fqfinite _fpclass _qfpclass do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5136: checking for $ac_func" >&5 +echo "configure:5217: 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 <<EOF -#line 5141 "configure" +#line 5222 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5160,7 +5241,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5245: \"$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 @@ -5191,17 +5272,17 @@ LIBS="$save_LIBS" ac_safe=`echo "wchar.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for wchar.h""... $ac_c" 1>&6 -echo "configure:5195: checking for wchar.h" >&5 +echo "configure:5276: 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 -#line 5200 "configure" +#line 5281 "configure" #include "confdefs.h" #include <wchar.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5205: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5286: \"$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* @@ -5225,17 +5306,17 @@ fi ac_safe=`echo "wctype.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for wctype.h""... $ac_c" 1>&6 -echo "configure:5229: checking for wctype.h" >&5 +echo "configure:5310: 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 -#line 5234 "configure" +#line 5315 "configure" #include "confdefs.h" #include <wctype.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5239: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5320: \"$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* @@ -5261,16 +5342,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:5265: checking for mbstate_t" >&5 +echo "configure:5346: checking for mbstate_t" >&5 cat > conftest.$ac_ext <<EOF -#line 5267 "configure" +#line 5348 "configure" #include "confdefs.h" #include <wchar.h> int main() { mbstate_t teststate; ; return 0; } EOF -if { (eval echo configure:5274: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5355: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* use_native_mbstatet=yes else @@ -5289,16 +5370,16 @@ EOF fi echo $ac_n "checking for WCHAR_MIN and WCHAR_MAX""... $ac_c" 1>&6 -echo "configure:5293: checking for WCHAR_MIN and WCHAR_MAX" >&5 +echo "configure:5374: checking for WCHAR_MIN and WCHAR_MAX" >&5 cat > conftest.$ac_ext <<EOF -#line 5295 "configure" +#line 5376 "configure" #include "confdefs.h" #include <wchar.h> int main() { int i = WCHAR_MIN; int j = WCHAR_MAX; ; return 0; } EOF -if { (eval echo configure:5302: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5383: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* has_wchar_minmax=yes else @@ -5311,9 +5392,9 @@ rm -f conftest* echo "$ac_t""$has_wchar_minmax" 1>&6 echo $ac_n "checking for WEOF""... $ac_c" 1>&6 -echo "configure:5315: checking for WEOF" >&5 +echo "configure:5396: checking for WEOF" >&5 cat > conftest.$ac_ext <<EOF -#line 5317 "configure" +#line 5398 "configure" #include "confdefs.h" #include <wchar.h> @@ -5322,7 +5403,7 @@ int main() { wint_t i = WEOF; ; return 0; } EOF -if { (eval echo configure:5326: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5407: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* has_weof=yes else @@ -5337,12 +5418,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:5341: checking for $ac_func" >&5 +echo "configure:5422: 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 <<EOF -#line 5346 "configure" +#line 5427 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5365,7 +5446,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5450: \"$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 @@ -5392,7 +5473,7 @@ done echo $ac_n "checking for ISO C9X wchar_t support""... $ac_c" 1>&6 -echo "configure:5396: checking for ISO C9X wchar_t support" >&5 +echo "configure:5477: 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 @@ -5402,17 +5483,17 @@ echo "configure:5396: 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:5406: checking for iconv.h" >&5 +echo "configure:5487: 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 -#line 5411 "configure" +#line 5492 "configure" #include "confdefs.h" #include <iconv.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5416: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5497: \"$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* @@ -5437,12 +5518,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:5441: checking for $ac_func" >&5 +echo "configure:5522: 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 <<EOF -#line 5446 "configure" +#line 5527 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5465,7 +5546,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5550: \"$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 @@ -5492,7 +5573,7 @@ done echo $ac_n "checking for XPG2 wchar_t support""... $ac_c" 1>&6 -echo "configure:5496: checking for XPG2 wchar_t support" >&5 +echo "configure:5577: 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 @@ -5501,7 +5582,7 @@ echo "configure:5496: 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:5505: checking for enabled wchar_t specializations" >&5 +echo "configure:5586: 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 @@ -5526,17 +5607,17 @@ EOF ac_safe=`echo "ctype.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ctype.h""... $ac_c" 1>&6 -echo "configure:5530: checking for ctype.h" >&5 +echo "configure:5611: 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 -#line 5535 "configure" +#line 5616 "configure" #include "confdefs.h" #include <ctype.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5540: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5621: \"$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* @@ -5557,9 +5638,9 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ctype_default=yes echo $ac_n "checking <ctype> for gnu-linux ""... $ac_c" 1>&6 -echo "configure:5561: checking <ctype> for gnu-linux " >&5 +echo "configure:5642: checking <ctype> for gnu-linux " >&5 cat > conftest.$ac_ext <<EOF -#line 5563 "configure" +#line 5644 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5570,7 +5651,7 @@ int + __ctype_tolower[a] + __ctype_toupper[a] + __ctype_b[a];} ; return 0; } EOF -if { (eval echo configure:5574: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5655: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_linux=yes @@ -5589,9 +5670,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for freebsd 4.0 ""... $ac_c" 1>&6 -echo "configure:5593: checking <ctype> for freebsd 4.0 " >&5 +echo "configure:5674: checking <ctype> for freebsd 4.0 " >&5 cat > conftest.$ac_ext <<EOF -#line 5595 "configure" +#line 5676 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5601,7 +5682,7 @@ int + _CTYPE_D + _CTYPE_P + _CTYPE_X + _CTYPE_G ;} ; return 0; } EOF -if { (eval echo configure:5605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5686: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_bsd=yes @@ -5621,9 +5702,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for freebsd 3.4 ""... $ac_c" 1>&6 -echo "configure:5625: checking <ctype> for freebsd 3.4 " >&5 +echo "configure:5706: checking <ctype> for freebsd 3.4 " >&5 cat > conftest.$ac_ext <<EOF -#line 5627 "configure" +#line 5708 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5633,7 +5714,7 @@ int + _D + _P + _X + _G + __istype (a, 0);} ; return 0; } EOF -if { (eval echo configure:5637: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5718: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_freebsd34=yes @@ -5653,9 +5734,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for solaris 2.6,7,8 ""... $ac_c" 1>&6 -echo "configure:5657: checking <ctype> for solaris 2.6,7,8 " >&5 +echo "configure:5738: checking <ctype> for solaris 2.6,7,8 " >&5 cat > conftest.$ac_ext <<EOF -#line 5659 "configure" +#line 5740 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5666,7 +5747,7 @@ int + __trans_lower[a] + __trans_upper[a] + __ctype_mask[a];} ; return 0; } EOF -if { (eval echo configure:5670: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5751: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_solaris=yes @@ -5681,7 +5762,7 @@ rm -f conftest* if test $ctype_solaris = "yes"; then echo $ac_n "checking for version""... $ac_c" 1>&6 -echo "configure:5685: checking for version" >&5 +echo "configure:5766: 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' @@ -5690,14 +5771,14 @@ ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftes cross_compiling=$ac_cv_prog_cxx_cross cat > conftest.$ac_ext <<EOF -#line 5694 "configure" +#line 5775 "configure" #include "confdefs.h" #include <ctype.h> int main() { typedef long* __to_type; __to_type const& _M_toupper = __trans_upper; ; return 0; } EOF -if { (eval echo configure:5701: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5782: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_solaris26=yes @@ -5729,9 +5810,9 @@ cross_compiling=$ac_cv_prog_cc_cross if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for solaris 2.5.1 ""... $ac_c" 1>&6 -echo "configure:5733: checking <ctype> for solaris 2.5.1 " >&5 +echo "configure:5814: checking <ctype> for solaris 2.5.1 " >&5 cat > conftest.$ac_ext <<EOF -#line 5735 "configure" +#line 5816 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5741,7 +5822,7 @@ int + __ctype[a];} ; return 0; } EOF -if { (eval echo configure:5745: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5826: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_solaris25=yes @@ -5761,9 +5842,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for aix ""... $ac_c" 1>&6 -echo "configure:5765: checking <ctype> for aix " >&5 +echo "configure:5846: checking <ctype> for aix " >&5 cat > conftest.$ac_ext <<EOF -#line 5767 "configure" +#line 5848 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5774,7 +5855,7 @@ int + _VALC('a') + _IS('c', 0);} ; return 0; } EOF -if { (eval echo configure:5778: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5859: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_aix=yes @@ -5794,9 +5875,9 @@ rm -f conftest* if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for newlib ""... $ac_c" 1>&6 -echo "configure:5798: checking <ctype> for newlib " >&5 +echo "configure:5879: checking <ctype> for newlib " >&5 cat > conftest.$ac_ext <<EOF -#line 5800 "configure" +#line 5881 "configure" #include "confdefs.h" #include <ctype.h> int main() { @@ -5806,7 +5887,7 @@ int + _ctype_[a];} ; return 0; } EOF -if { (eval echo configure:5810: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* \ ctype_newlib=yes @@ -5840,17 +5921,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:5844: checking for $ac_hdr" >&5 +echo "configure:5925: 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 -#line 5849 "configure" +#line 5930 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5854: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5935: \"$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* @@ -5879,12 +5960,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5883: checking for $ac_func" >&5 +echo "configure:5964: 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 <<EOF -#line 5888 "configure" +#line 5969 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5907,7 +5988,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5992: \"$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 @@ -5932,7 +6013,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:5936: checking for working mmap" >&5 +echo "configure:6017: 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 @@ -5940,7 +6021,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext <<EOF -#line 5944 "configure" +#line 6025 "configure" #include "confdefs.h" /* Thanks to Mike Haertel and Jim Avera for this test. @@ -6080,7 +6161,7 @@ main() } EOF -if { (eval echo configure:6084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6165: \"$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 @@ -6143,19 +6224,19 @@ fi if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:6147: checking for LC_MESSAGES" >&5 +echo "configure:6228: 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 <<EOF -#line 6152 "configure" +#line 6233 "configure" #include "confdefs.h" #include <locale.h> int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:6159: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6240: \"$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 |