X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fisinf.m4;h=513a1bad635051fbaf52368c438d909774944699;hb=da8054d48dc22e1c051db54049e005d51a006e69;hp=570dd23f5b82d9eba3b0a7bf589009806abf2279;hpb=1d08df92e127b5fe8b20aed7162252cf81720223;p=gnulib.git diff --git a/m4/isinf.m4 b/m4/isinf.m4 index 570dd23f5..513a1bad6 100644 --- a/m4/isinf.m4 +++ b/m4/isinf.m4 @@ -1,5 +1,5 @@ -# isinf.m4 serial 8 -dnl Copyright (C) 2007-2011 Free Software Foundation, Inc. +# isinf.m4 serial 9 +dnl Copyright (C) 2007-2013 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. @@ -9,7 +9,12 @@ AC_DEFUN([gl_ISINF], AC_REQUIRE([gl_MATH_H_DEFAULTS]) dnl Persuade glibc to declare isinf. AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) - AC_CHECK_DECLS([isinf], , , [[#include ]]) + AC_CHECK_DECLS([isinf], , , + [[#include + #ifndef isinf + #error "isinf must be a macro, not a function" + #endif + ]]) if test "$ac_cv_have_decl_isinf" = yes; then gl_CHECK_MATH_LIB([ISINF_LIBM], [x = isinf (x) + isinf ((float) x);]) if test "$ISINF_LIBM" != missing; then