logl: Provide function definition on MSVC.
authorBruno Haible <bruno@clisp.org>
Sat, 25 Feb 2012 00:27:00 +0000 (01:27 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 25 Feb 2012 00:27:00 +0000 (01:27 +0100)
* m4/logl.m4 (gl_FUNC_LOGL): Test also whether logl can be used as a
function pointer.
* lib/math.in.h (logl): Undefine if it does not exist as a function.

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

index 00e623e..16efe1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2012-02-24  Bruno Haible  <bruno@clisp.org>
 
+       logl: Provide function definition on MSVC.
+       * m4/logl.m4 (gl_FUNC_LOGL): Test also whether logl can be used as a
+       function pointer.
+       * lib/math.in.h (logl): Undefine if it does not exist as a function.
+
+2012-02-24  Bruno Haible  <bruno@clisp.org>
+
        expl: Provide function definition on MSVC.
        * m4/expl.m4 (gl_FUNC_EXPL): Test also whether expl can be used as a
        function pointer.
index 25f2503..a75194b 100644 (file)
@@ -768,6 +768,7 @@ _GL_WARN_ON_USE (logf, "logf is unportable - "
 
 #if @GNULIB_LOGL@
 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
+#  undef logl
 _GL_FUNCDECL_SYS (logl, long double, (long double x));
 # endif
 _GL_CXXALIAS_SYS (logl, long double, (long double x));
index 48e43d7..874f588 100644 (file)
@@ -1,4 +1,4 @@
-# logl.m4 serial 6
+# logl.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_LOGL],
              # define __NO_MATH_INLINES 1 /* for glibc */
              #endif
              #include <math.h>
+             long double (*funcptr) (long double) = logl;
              long double x;]],
-           [[return logl (x) > 1;]])],
+           [[return funcptr (x) > 1
+                    || logl (x) > 1;]])],
         [gl_cv_func_logl_no_libm=yes],
         [gl_cv_func_logl_no_libm=no])
     ])
@@ -39,8 +41,10 @@ AC_DEFUN([gl_FUNC_LOGL],
                # define __NO_MATH_INLINES 1 /* for glibc */
                #endif
                #include <math.h>
+               long double (*funcptr) (long double) = logl;
                long double x;]],
-             [[return logl (x) > 1;]])],
+             [[return funcptr (x) > 1
+                      || logl (x) > 1;]])],
           [gl_cv_func_logl_in_libm=yes],
           [gl_cv_func_logl_in_libm=no])
         LIBS="$save_LIBS"