From f9788546de646fbc4f77bba502a8f815d4999bac Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 25 Feb 2012 01:39:34 +0100 Subject: [PATCH] asinl: Provide function definition on MSVC. * m4/asinl.m4 (gl_FUNC_ASINL): Test also whether asinl can be used as a function pointer. * lib/math.in.h (asinl): Undefine if it does not exist as a function. --- ChangeLog | 7 +++++++ lib/math.in.h | 1 + m4/asinl.m4 | 10 +++++++--- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1266136b8..56a3c8491 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2012-02-24 Bruno Haible + asinl: Provide function definition on MSVC. + * m4/asinl.m4 (gl_FUNC_ASINL): Test also whether asinl can be used as a + function pointer. + * lib/math.in.h (asinl): Undefine if it does not exist as a function. + +2012-02-24 Bruno Haible + tanl: Provide function definition on MSVC. * m4/tanl.m4 (gl_FUNC_TANL): Test also whether tanl can be used as a function pointer. diff --git a/lib/math.in.h b/lib/math.in.h index 0143b030a..89ed4caa7 100644 --- a/lib/math.in.h +++ b/lib/math.in.h @@ -193,6 +193,7 @@ _GL_WARN_ON_USE (asinf, "asinf is unportable - " #if @GNULIB_ASINL@ # if !@HAVE_ASINL@ || !@HAVE_DECL_ASINL@ +# undef asinl _GL_FUNCDECL_SYS (asinl, long double, (long double x)); # endif _GL_CXXALIAS_SYS (asinl, long double, (long double x)); diff --git a/m4/asinl.m4 b/m4/asinl.m4 index bb5b68bb2..6ad2c1611 100644 --- a/m4/asinl.m4 +++ b/m4/asinl.m4 @@ -1,4 +1,4 @@ -# asinl.m4 serial 6 +# asinl.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 @@ AC_DEFUN([gl_FUNC_ASINL], # define __NO_MATH_INLINES 1 /* for glibc */ #endif #include + long double (*funcptr) (long double) = asinl; long double x;]], - [[return asinl (x) > 1;]])], + [[return funcptr (x) > 1 + || asinl (x) > 1;]])], [gl_cv_func_asinl_no_libm=yes], [gl_cv_func_asinl_no_libm=no]) ]) @@ -39,8 +41,10 @@ AC_DEFUN([gl_FUNC_ASINL], # define __NO_MATH_INLINES 1 /* for glibc */ #endif #include + long double (*funcptr) (long double) = asinl; long double x;]], - [[return asinl (x) > 1;]])], + [[return funcptr (x) > 1 + || asinl (x) > 1;]])], [gl_cv_func_asinl_in_libm=yes], [gl_cv_func_asinl_in_libm=no]) LIBS="$save_LIBS" -- 2.11.0