X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Froundf.m4;h=a2a1464e6881d2f88fffcb558c6ffc33441ba29e;hb=eb944d1d03d408d829b4fa68eefd3a1ae94f9eb5;hp=a105760d2b52cdce4dc02500d4d0de03fff2e761;hpb=de6abddc83cd9af7a0cc73d93acbc015432612f2;p=gnulib.git diff --git a/m4/roundf.m4 b/m4/roundf.m4 index a105760d2..a2a1464e6 100644 --- a/m4/roundf.m4 +++ b/m4/roundf.m4 @@ -1,11 +1,12 @@ -# roundf.m4 serial 9 -dnl Copyright (C) 2007-2010 Free Software Foundation, Inc. +# roundf.m4 serial 10 +dnl Copyright (C) 2007-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. AC_DEFUN([gl_FUNC_ROUNDF], [ + m4_divert_text([DEFAULTS], [gl_roundf_required=plain]) AC_REQUIRE([gl_MATH_H_DEFAULTS]) dnl Persuade glibc to declare roundf(). AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) @@ -50,6 +51,40 @@ int main() if test "$ROUNDF_LIBM" = missing; then REPLACE_ROUNDF=1 fi + m4_ifdef([gl_FUNC_ROUNDF_IEEE], [ + if test $gl_roundf_required = ieee && test $REPLACE_ROUNDF = 0; then + AC_CACHE_CHECK([whether roundf works according to ISO C 99 with IEC 60559], + [gl_cv_func_roundf_ieee], + [ + save_LIBS="$LIBS" + LIBS="$LIBS $ROUNDF_LIBM" + AC_RUN_IFELSE( + [AC_LANG_SOURCE([[ +#ifndef __NO_MATH_INLINES +# define __NO_MATH_INLINES 1 /* for glibc */ +#endif +#include +]gl_FLOAT_MINUS_ZERO_CODE[ +]gl_FLOAT_SIGNBIT_CODE[ +int main() +{ + /* Test whether roundf (-0.0f) is -0.0f. */ + if (signbitf (minus_zerof) && !signbitf (roundf (minus_zerof))) + return 1; + return 0; +} + ]])], + [gl_cv_func_roundf_ieee=yes], + [gl_cv_func_roundf_ieee=no], + [gl_cv_func_roundf_ieee="guessing no"]) + LIBS="$save_LIBS" + ]) + case "$gl_cv_func_roundf_ieee" in + *yes) ;; + *) REPLACE_ROUNDF=1 ;; + esac + fi + ]) else HAVE_DECL_ROUNDF=0 fi