+2012-02-24 Bruno Haible <bruno@clisp.org>
+
+ 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 <bruno@clisp.org>
tanl: Provide function definition on MSVC.
#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));
-# 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,
# define __NO_MATH_INLINES 1 /* for glibc */
#endif
#include <math.h>
+ 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])
])
# define __NO_MATH_INLINES 1 /* for glibc */
#endif
#include <math.h>
+ 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"