# HG changeset patch # User Bruno Haible # Date 1330128439 -3600 # Node ID 60e9584368df55c2394910966ccd8930b7a1015e # Parent a9eaa22dc3f61059ab6a7ebe57da73888a3a0b3f floorf: Provide function definition on MSVC. * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Test also whether floorf can be used as a function pointer. * lib/math.in.h (floorf): Undefine if it is not declared as a function. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-02-24 Bruno Haible + + floorf: Provide function definition on MSVC. + * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Test also whether floorf can be + used as a function pointer. + * lib/math.in.h (floorf): Undefine if it is not declared as a function. + 2012-02-24 Paul Eggert stdnoreturn: new module diff --git a/lib/math.in.h b/lib/math.in.h --- a/lib/math.in.h +++ b/lib/math.in.h @@ -457,6 +457,7 @@ _GL_CXXALIAS_RPL (floorf, float, (float x)); # else # if !@HAVE_DECL_FLOORF@ +# undef floorf _GL_FUNCDECL_SYS (floorf, float, (float x)); # endif _GL_CXXALIAS_SYS (floorf, float, (float x)); diff --git a/m4/floorf.m4 b/m4/floorf.m4 --- a/m4/floorf.m4 +++ b/m4/floorf.m4 @@ -1,4 +1,4 @@ -# floorf.m4 serial 11 +# floorf.m4 serial 12 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, @@ -78,8 +78,9 @@ # define __NO_MATH_INLINES 1 /* for glibc */ #endif #include + float (*funcptr) (float) = floorf; float x;]], - [[x = floorf(x);]])], + [[x = funcptr(x) + floorf(x);]])], [gl_cv_func_floorf_libm=]) if test "$gl_cv_func_floorf_libm" = "?"; then save_LIBS="$LIBS" @@ -90,8 +91,9 @@ # define __NO_MATH_INLINES 1 /* for glibc */ #endif #include + float (*funcptr) (float) = floorf; float x;]], - [[x = floorf(x);]])], + [[x = funcptr(x) + floorf(x);]])], [gl_cv_func_floorf_libm="-lm"]) LIBS="$save_LIBS" fi