]> Savannah Git Hosting - gnulib.git/commitdiff
asinl: Provide function definition on MSVC.
authorBruno Haible <bruno@clisp.org>
Sat, 25 Feb 2012 00:39:34 +0000 (01:39 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 25 Feb 2012 00:39:34 +0000 (01:39 +0100)
* 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
lib/math.in.h
m4/asinl.m4

index 1266136b86e7530376d00f50d7a8b429006261a8..56a3c8491310170cff801dc0e89f721d49530fda 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
index 0143b030a27fb5cc1d661d9eb851cc052b52bd91..89ed4caa7a350d2714d33de5fd12edafa5b5cd8c 100644 (file)
@@ -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));
index bb5b68bb26d23de879a4decc03508849846c21b9..6ad2c161132309c2a2a3811d014e3b5d59b5d67a 100644 (file)
@@ -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 <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])
     ])
@@ -39,8 +41,10 @@ AC_DEFUN([gl_FUNC_ASINL],
                # 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"