2 dnl Copyright (C) 2007, 2009-2017 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_ROUND],
9 m4_divert_text([DEFAULTS], [gl_round_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
12 dnl Persuade glibc <math.h> to declare round().
13 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15 gl_CHECK_MATH_LIB([ROUND_LIBM], [x = round (x);],
20 double round (double);
22 if test "$ROUND_LIBM" != missing; then
24 dnl Also check whether it's declared.
25 dnl IRIX 6.5 has round() in libm but doesn't declare it in <math.h>.
26 AC_CHECK_DECLS([round], , [HAVE_DECL_ROUND=0], [[#include <math.h>]])
28 dnl Test whether round() produces correct results. On NetBSD 3.0, for
29 dnl x = 1/2 - 2^-54, the system's round() returns a wrong result.
30 AC_REQUIRE([AC_PROG_CC])
31 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
32 AC_CACHE_CHECK([whether round works], [gl_cv_func_round_works],
35 LIBS="$LIBS $ROUND_LIBM"
36 AC_RUN_IFELSE([AC_LANG_SOURCE([[
43 double round (double);
45 # pragma fenv_access (off)
50 static const double TWO_MANT_DIG =
51 /* Assume DBL_MANT_DIG <= 5 * 31.
53 n = floor(n/5) + floor((n+1)/5) + ... + floor((n+4)/5). */
54 (double) (1U << (DBL_MANT_DIG / 5))
55 * (double) (1U << ((DBL_MANT_DIG + 1) / 5))
56 * (double) (1U << ((DBL_MANT_DIG + 2) / 5))
57 * (double) (1U << ((DBL_MANT_DIG + 3) / 5))
58 * (double) (1U << ((DBL_MANT_DIG + 4) / 5));
59 volatile double x = 0.5 - 0.5 / TWO_MANT_DIG;
60 return (x < 0.5 && round (x) != 0.0);
61 }]])], [gl_cv_func_round_works=yes], [gl_cv_func_round_works=no],
63 netbsd* | aix*) gl_cv_func_round_works="guessing no" ;;
64 # Guess yes on MSVC, no on mingw.
65 mingw*) AC_EGREP_CPP([Known], [
70 [gl_cv_func_round_works="guessing yes"],
71 [gl_cv_func_round_works="guessing no"])
73 *) gl_cv_func_round_works="guessing yes" ;;
78 case "$gl_cv_func_round_works" in
79 *no) REPLACE_ROUND=1 ;;
82 m4_ifdef([gl_FUNC_ROUND_IEEE], [
83 if test $gl_round_required = ieee && test $REPLACE_ROUND = 0; then
84 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
85 AC_CACHE_CHECK([whether round works according to ISO C 99 with IEC 60559],
86 [gl_cv_func_round_ieee],
89 LIBS="$LIBS $ROUND_LIBM"
92 #ifndef __NO_MATH_INLINES
93 # define __NO_MATH_INLINES 1 /* for glibc */
100 double round (double);
101 ]gl_DOUBLE_MINUS_ZERO_CODE[
102 ]gl_DOUBLE_SIGNBIT_CODE[
103 static double dummy (double f) { return 0; }
104 int main (int argc, char *argv[])
106 double (*my_round) (double) = argc ? round : dummy;
107 /* Test whether round (-0.0) is -0.0. */
108 if (signbitd (minus_zerod) && !signbitd (my_round (minus_zerod)))
113 [gl_cv_func_round_ieee=yes],
114 [gl_cv_func_round_ieee=no],
116 # Guess yes on glibc systems.
117 *-gnu*) gl_cv_func_round_ieee="guessing yes" ;;
118 # Guess yes on MSVC, no on mingw.
119 mingw*) AC_EGREP_CPP([Known], [
124 [gl_cv_func_round_ieee="guessing yes"],
125 [gl_cv_func_round_ieee="guessing no"])
127 # If we don't know, assume the worst.
128 *) gl_cv_func_round_ieee="guessing no" ;;
133 case "$gl_cv_func_round_ieee" in
135 *) REPLACE_ROUND=1 ;;
143 if test $HAVE_ROUND = 0 || test $REPLACE_ROUND = 1; then
144 dnl Find libraries needed to link lib/round.c.
148 dnl Append $FLOOR_LIBM to ROUND_LIBM, avoiding gratuitous duplicates.
149 case " $ROUND_LIBM " in
150 *" $FLOOR_LIBM "*) ;;
151 *) ROUND_LIBM="$ROUND_LIBM $FLOOR_LIBM" ;;
153 dnl Append $CEIL_LIBM to ROUND_LIBM, avoiding gratuitous duplicates.
154 case " $ROUND_LIBM " in
156 *) ROUND_LIBM="$ROUND_LIBM $CEIL_LIBM" ;;
159 AC_SUBST([ROUND_LIBM])