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

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

index fc90f6d2eacc3cd74dd2610a8f756ef4bb022bd1..6368db17e5ca2bc4ed524b3284610ade9a99d53f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-02-24  Bruno Haible  <bruno@clisp.org>
+
+       ceill: Provide function definition on MSVC.
+       * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Test also whether ceill can be
+       used as a function pointer.
+       * lib/math.in.h (ceill): Undefine if it is not declared as a function.
+
 2012-02-24  Bruno Haible  <bruno@clisp.org>
 
        floorl: Provide function definition on MSVC.
index d9db7c37f70ec8dcc42bba771a734de6b353ae67..266790f3c4d25816469e4a492803c0e8f31ee0a1 100644 (file)
@@ -299,6 +299,7 @@ _GL_FUNCDECL_RPL (ceill, long double, (long double x));
 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
 # else
 #  if !@HAVE_DECL_CEILL@
+#   undef ceill
 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
 #  endif
 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
index a628b7e39d38e3b71248c08f055bc389c0377956..700c54b1e5c4ccce3ecbf16c65a74e5639f6392d 100644 (file)
@@ -1,4 +1,4 @@
-# ceill.m4 serial 12
+# ceill.m4 serial 13
 dnl Copyright (C) 2007, 2009-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,
@@ -86,8 +86,9 @@ AC_DEFUN([gl_FUNC_CEILL_LIBS],
            # define __NO_MATH_INLINES 1 /* for glibc */
            #endif
            #include <math.h>
+           long double (*funcptr) (long double) = ceill;
            long double x;]],
-         [[x = ceill(x);]])],
+         [[x = funcptr(x) + ceill(x);]])],
       [gl_cv_func_ceill_libm=])
     if test "$gl_cv_func_ceill_libm" = "?"; then
       save_LIBS="$LIBS"
@@ -98,8 +99,9 @@ AC_DEFUN([gl_FUNC_CEILL_LIBS],
              # define __NO_MATH_INLINES 1 /* for glibc */
              #endif
              #include <math.h>
+             long double (*funcptr) (long double) = ceill;
              long double x;]],
-           [[x = ceill(x);]])],
+           [[x = funcptr(x) + ceill(x);]])],
         [gl_cv_func_ceill_libm="-lm"])
       LIBS="$save_LIBS"
     fi