X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fceill.m4;h=40adaf12f183859ed5f5deba467572103a4821ee;hb=b398592c340a33c50703310c3df0d50ed777fe0d;hp=68fdca0d279210dca0afdd2cfb379d0d09a5e49a;hpb=5fa8dede5f9d5dfa45972829942ee0b3ee726779;p=gnulib.git diff --git a/m4/ceill.m4 b/m4/ceill.m4 index 68fdca0d2..40adaf12f 100644 --- a/m4/ceill.m4 +++ b/m4/ceill.m4 @@ -1,5 +1,5 @@ -# ceill.m4 serial 8 -dnl Copyright (C) 2007, 2009-2010 Free Software Foundation, Inc. +# ceill.m4 serial 11 +dnl Copyright (C) 2007, 2009-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -11,7 +11,7 @@ AC_DEFUN([gl_FUNC_CEILL], dnl Persuade glibc to declare ceill(). AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) dnl Test whether ceill() is declared. - AC_CHECK_DECLS([ceill], , , [#include ]) + AC_CHECK_DECLS([ceill], , , [[#include ]]) if test "$ac_cv_have_decl_ceill" = yes; then dnl Test whether ceill() can be used without libm. gl_FUNC_CEILL_LIBS @@ -35,10 +35,12 @@ AC_DEFUN([gl_FUNC_CEILL], #include ]gl_LONG_DOUBLE_MINUS_ZERO_CODE[ ]gl_LONG_DOUBLE_SIGNBIT_CODE[ -int main() +static long double dummy (long double f) { return 0; } +int main (int argc, char *argv[]) { + long double (*my_ceill) (long double) = argc ? ceill : dummy; /* Test whether ceill (-0.3L) is -0.0L. */ - if (signbitl (minus_zerol) && !signbitl (ceill (-0.3L))) + if (signbitl (minus_zerol) && !signbitl (my_ceill (-0.3L))) return 1; return 0; } @@ -58,7 +60,7 @@ int main() HAVE_DECL_CEILL=0 fi if test $HAVE_DECL_CEILL = 0 || test $REPLACE_CEILL = 1; then - AC_LIBOBJ([ceill]) + dnl No libraries are needed to link lib/ceill.c. CEILL_LIBM= fi AC_SUBST([CEILL_LIBM])