# HG changeset patch # User Bruno Haible # Date 1330128638 -3600 # Node ID 11a860d6f42d8eb36c8c056b6cc695d6b2e1ba19 # Parent 43820240f265c37036ceabf9e950d1cb684a078f sqrtl: Provide function definition on MSVC. * m4/sqrtl.m4 (gl_FUNC_SQRTL): Test also whether sqrtl can be used as a function pointer. * lib/math.in.h (sqrtl): Undefine if it does not exist as a function. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-02-24 Bruno Haible + + sqrtl: Provide function definition on MSVC. + * m4/sqrtl.m4 (gl_FUNC_SQRTL): Test also whether sqrtl can be used as + a function pointer. + * lib/math.in.h (sqrtl): Undefine if it does not exist as a function. + 2012-02-24 Bruno Haible ceill: Provide function definition on MSVC. diff --git a/lib/math.in.h b/lib/math.in.h --- a/lib/math.in.h +++ b/lib/math.in.h @@ -1004,6 +1004,7 @@ #if @GNULIB_SQRTL@ # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@ +# undef sqrtl _GL_FUNCDECL_SYS (sqrtl, long double, (long double x)); # endif _GL_CXXALIAS_SYS (sqrtl, long double, (long double x)); diff --git a/m4/sqrtl.m4 b/m4/sqrtl.m4 --- a/m4/sqrtl.m4 +++ b/m4/sqrtl.m4 @@ -1,4 +1,4 @@ -# sqrtl.m4 serial 6 +# sqrtl.m4 serial 7 dnl Copyright (C) 2010-2012 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -22,8 +22,10 @@ # define __NO_MATH_INLINES 1 /* for glibc */ #endif #include + long double (*funcptr) (long double) = sqrtl; long double x;]], - [[return sqrtl (x) > 0.4;]])], + [[return funcptr (x) > 0.4 + || sqrtl (x) > 0.4;]])], [gl_cv_func_sqrtl_no_libm=yes], [gl_cv_func_sqrtl_no_libm=no]) ]) @@ -39,8 +41,10 @@ # define __NO_MATH_INLINES 1 /* for glibc */ #endif #include + long double (*funcptr) (long double) = sqrtl; long double x;]], - [[return sqrtl (x) > 0.4;]])], + [[return funcptr (x) > 0.4 + || sqrtl (x) > 0.4;]])], [gl_cv_func_sqrtl_in_libm=yes], [gl_cv_func_sqrtl_in_libm=no]) LIBS="$save_LIBS"