Merge tag 'snapshot-start' into stable
[gnulib.git] / m4 / round.m4
1 # round.m4 serial 15
2 dnl Copyright (C) 2007, 2009-2012 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.
6
7 AC_DEFUN([gl_FUNC_ROUND],
8 [
9   m4_divert_text([DEFAULTS], [gl_round_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11
12   dnl Persuade glibc <math.h> to declare round().
13   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
14
15   gl_CHECK_MATH_LIB([ROUND_LIBM], [x = round (x);],
16     [extern
17      #ifdef __cplusplus
18      "C"
19      #endif
20      double round (double);
21     ])
22   if test "$ROUND_LIBM" != missing; then
23     HAVE_ROUND=1
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>]])
27
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],
33       [
34         save_LIBS="$LIBS"
35         LIBS="$LIBS $ROUND_LIBM"
36         AC_RUN_IFELSE([AC_LANG_SOURCE([[
37 #include <float.h>
38 #include <math.h>
39 extern
40 #ifdef __cplusplus
41 "C"
42 #endif
43 double round (double);
44 #ifdef _MSC_VER
45 # pragma fenv_access (off)
46 #endif
47 int main()
48 {
49   /* 2^DBL_MANT_DIG.  */
50   static const double TWO_MANT_DIG =
51     /* Assume DBL_MANT_DIG <= 5 * 31.
52        Use the identity
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   exit (x < 0.5 && round (x) != 0.0);
61 }]])], [gl_cv_func_round_works=yes], [gl_cv_func_round_works=no],
62         [case "$host_os" in
63            netbsd* | aix*) gl_cv_func_round_works="guessing no";;
64            *)              gl_cv_func_round_works="guessing yes";;
65          esac
66         ])
67         LIBS="$save_LIBS"
68       ])
69     case "$gl_cv_func_round_works" in
70       *no) REPLACE_ROUND=1 ;;
71     esac
72
73     m4_ifdef([gl_FUNC_ROUND_IEEE], [
74       if test $gl_round_required = ieee && test $REPLACE_ROUND = 0; then
75         AC_CACHE_CHECK([whether round works according to ISO C 99 with IEC 60559],
76           [gl_cv_func_round_ieee],
77           [
78             save_LIBS="$LIBS"
79             LIBS="$LIBS $ROUND_LIBM"
80             AC_RUN_IFELSE(
81               [AC_LANG_SOURCE([[
82 #ifndef __NO_MATH_INLINES
83 # define __NO_MATH_INLINES 1 /* for glibc */
84 #endif
85 #include <math.h>
86 extern
87 #ifdef __cplusplus
88 "C"
89 #endif
90 double round (double);
91 ]gl_DOUBLE_MINUS_ZERO_CODE[
92 ]gl_DOUBLE_SIGNBIT_CODE[
93 static double dummy (double f) { return 0; }
94 int main (int argc, char *argv[])
95 {
96   double (*my_round) (double) = argc ? round : dummy;
97   /* Test whether round (-0.0) is -0.0.  */
98   if (signbitd (minus_zerod) && !signbitd (my_round (minus_zerod)))
99     return 1;
100   return 0;
101 }
102               ]])],
103               [gl_cv_func_round_ieee=yes],
104               [gl_cv_func_round_ieee=no],
105               [gl_cv_func_round_ieee="guessing no"])
106             LIBS="$save_LIBS"
107           ])
108         case "$gl_cv_func_round_ieee" in
109           *yes) ;;
110           *) REPLACE_ROUND=1 ;;
111         esac
112       fi
113     ])
114   else
115     HAVE_ROUND=0
116     HAVE_DECL_ROUND=0
117   fi
118   if test $HAVE_ROUND = 0 || test $REPLACE_ROUND = 1; then
119     dnl Find libraries needed to link lib/round.c.
120     gl_FUNC_FLOOR_LIBS
121     gl_FUNC_CEIL_LIBS
122     ROUND_LIBM=
123     dnl Append $FLOOR_LIBM to ROUND_LIBM, avoiding gratuitous duplicates.
124     case " $ROUND_LIBM " in
125       *" $FLOOR_LIBM "*) ;;
126       *) ROUND_LIBM="$ROUND_LIBM $FLOOR_LIBM" ;;
127     esac
128     dnl Append $CEIL_LIBM to ROUND_LIBM, avoiding gratuitous duplicates.
129     case " $ROUND_LIBM " in
130       *" $CEIL_LIBM "*) ;;
131       *) ROUND_LIBM="$ROUND_LIBM $CEIL_LIBM" ;;
132     esac
133   fi
134   AC_SUBST([ROUND_LIBM])
135 ])