X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fremainderf.m4;h=5e345514c44fcb9f1b29ba682329091d952082fd;hb=46f5f314f34a08c9305758482d7d2fdb0e999d09;hp=e82da352c9463a7630eab03a916e8c147130b796;hpb=9f1f81e4362dd265a2fa54b30b16ceed123cd4e5;p=gnulib.git diff --git a/m4/remainderf.m4 b/m4/remainderf.m4 index e82da352c..5e345514c 100644 --- a/m4/remainderf.m4 +++ b/m4/remainderf.m4 @@ -1,5 +1,5 @@ -# remainderf.m4 serial 7 -dnl Copyright (C) 2012 Free Software Foundation, Inc. +# remainderf.m4 serial 8 +dnl Copyright (C) 2012-2014 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. @@ -150,13 +150,14 @@ AC_DEFUN([gl_FUNC_REMAINDERF_WORKS], [ AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles - AC_CHECK_FUNCS_ONCE([alarm]) + AC_CHECK_DECLS_ONCE([alarm]) AC_CACHE_CHECK([whether remainderf works], [gl_cv_func_remainderf_works], [ AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include -#if HAVE_ALARM +#if HAVE_DECL_ALARM +# include # include #endif extern @@ -169,7 +170,8 @@ volatile float y; float z; int main () { -#if HAVE_ALARM +#if HAVE_DECL_ALARM + signal (SIGALRM, SIG_DFL); alarm (5); #endif /* This test fails on IRIX 6.5. */