]> Savannah Git Hosting - gnulib.git/commitdiff
acosl: Provide function definition on MSVC.
authorBruno Haible <bruno@clisp.org>
Sat, 25 Feb 2012 00:42:45 +0000 (01:42 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 25 Feb 2012 00:42:45 +0000 (01:42 +0100)
* m4/acosl.m4 (gl_FUNC_ACOSL): Test also whether acosl can be used as a
function pointer.
* lib/math.in.h (acosl): Undefine if it does not exist as a function.

ChangeLog
lib/math.in.h
m4/acosl.m4

index 56a3c8491310170cff801dc0e89f721d49530fda..fa8ea06b83f2e135e4be1eae88479dc64319f76f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-02-24  Bruno Haible  <bruno@clisp.org>
+
+       acosl: Provide function definition on MSVC.
+       * m4/acosl.m4 (gl_FUNC_ACOSL): Test also whether acosl can be used as a
+       function pointer.
+       * lib/math.in.h (acosl): Undefine if it does not exist as a function.
+
 2012-02-24  Bruno Haible  <bruno@clisp.org>
 
        asinl: Provide function definition on MSVC.
index 89ed4caa7a350d2714d33de5fd12edafa5b5cd8c..11688fee8a63ac19912f4020afabd41e6db8af78 100644 (file)
@@ -163,6 +163,7 @@ _GL_WARN_ON_USE (acosf, "acosf is unportable - "
 
 #if @GNULIB_ACOSL@
 # if !@HAVE_ACOSL@ || !@HAVE_DECL_ACOSL@
+#  undef acosl
 _GL_FUNCDECL_SYS (acosl, long double, (long double x));
 # endif
 _GL_CXXALIAS_SYS (acosl, long double, (long double x));
index e784859c99c5222775b38c60ef7671ffbe2046b1..d9a89b606024c64a72d5561d0c4ecaa97c250fc5 100644 (file)
@@ -1,4 +1,4 @@
-# acosl.m4 serial 6
+# acosl.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_ACOSL],
              # define __NO_MATH_INLINES 1 /* for glibc */
              #endif
              #include <math.h>
+             long double (*funcptr) (long double) = acosl;
              long double x;]],
-           [[return acosl (x) > 1;]])],
+           [[return funcptr (x) > 1
+                    || acosl (x) > 1;]])],
         [gl_cv_func_acosl_no_libm=yes],
         [gl_cv_func_acosl_no_libm=no])
     ])
@@ -39,8 +41,10 @@ AC_DEFUN([gl_FUNC_ACOSL],
                # define __NO_MATH_INLINES 1 /* for glibc */
                #endif
                #include <math.h>
+               long double (*funcptr) (long double) = acosl;
                long double x;]],
-             [[return acosl (x) > 1;]])],
+             [[return funcptr (x) > 1
+                      || acosl (x) > 1;]])],
           [gl_cv_func_acosl_in_libm=yes],
           [gl_cv_func_acosl_in_libm=no])
         LIBS="$save_LIBS"