2 dnl Copyright (C) 2007-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_ROUNDF],
9 m4_divert_text([DEFAULTS], [gl_roundf_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
12 dnl Persuade glibc <math.h> to declare roundf().
13 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15 gl_CHECK_MATH_LIB([ROUNDF_LIBM], [x = roundf (x);],
22 if test "$ROUNDF_LIBM" != missing; then
24 dnl Also check whether it's declared.
25 dnl IRIX 6.5 has roundf() in libm but doesn't declare it in <math.h>.
26 AC_CHECK_DECLS([roundf], , [HAVE_DECL_ROUNDF=0], [[#include <math.h>]])
28 dnl Test whether roundf() produces correct results. On mingw, for
29 dnl x = 1/2 - 2^-25, the system's roundf() 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 roundf works], [gl_cv_func_roundf_works],
35 LIBS="$LIBS $ROUNDF_LIBM"
36 AC_RUN_IFELSE([AC_LANG_SOURCE([[
45 # pragma fenv_access (off)
50 static const float TWO_MANT_DIG =
51 /* Assume FLT_MANT_DIG <= 3 * 31.
52 Use the identity n = floor(n/3) + floor((n+1)/3) + floor((n+2)/3). */
53 (float) (1U << (FLT_MANT_DIG / 3))
54 * (float) (1U << ((FLT_MANT_DIG + 1) / 3))
55 * (float) (1U << ((FLT_MANT_DIG + 2) / 3));
56 volatile float x = 0.5f - 0.5f / TWO_MANT_DIG;
57 exit (x < 0.5f && roundf (x) != 0.0f);
58 }]])], [gl_cv_func_roundf_works=yes], [gl_cv_func_roundf_works=no],
60 mingw*) gl_cv_func_roundf_works="guessing no";;
61 *) gl_cv_func_roundf_works="guessing yes";;
66 case "$gl_cv_func_roundf_works" in
67 *no) REPLACE_ROUNDF=1 ;;
70 m4_ifdef([gl_FUNC_ROUNDF_IEEE], [
71 if test $gl_roundf_required = ieee && test $REPLACE_ROUNDF = 0; then
72 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
73 AC_CACHE_CHECK([whether roundf works according to ISO C 99 with IEC 60559],
74 [gl_cv_func_roundf_ieee],
77 LIBS="$LIBS $ROUNDF_LIBM"
80 #ifndef __NO_MATH_INLINES
81 # define __NO_MATH_INLINES 1 /* for glibc */
89 ]gl_FLOAT_MINUS_ZERO_CODE[
90 ]gl_FLOAT_SIGNBIT_CODE[
91 static float dummy (float f) { return 0; }
92 int main (int argc, char *argv[])
94 float (*my_roundf) (float) = argc ? roundf : dummy;
96 /* Test whether roundf (-0.0f) is -0.0f. */
97 if (signbitf (minus_zerof) && !signbitf (my_roundf (minus_zerof)))
99 /* Test whether roundf (-0.3f) is -0.0f. */
100 if (signbitf (-0.3f) && !signbitf (my_roundf (-0.3f)))
105 [gl_cv_func_roundf_ieee=yes],
106 [gl_cv_func_roundf_ieee=no],
108 # Guess yes on glibc systems.
109 *-gnu*) gl_cv_func_roundf_ieee="guessing yes" ;;
110 # If we don't know, assume the worst.
111 *) gl_cv_func_roundf_ieee="guessing no" ;;
116 case "$gl_cv_func_roundf_ieee" in
118 *) REPLACE_ROUNDF=1 ;;
126 if test $HAVE_ROUNDF = 0 || test $REPLACE_ROUNDF = 1; then
127 dnl Find libraries needed to link lib/roundf.c.
128 AC_CHECK_DECLS([ceilf, floorf], , , [[#include <math.h>]])
129 if test "$ac_cv_have_decl_floorf" = yes \
130 && test "$ac_cv_have_decl_ceilf" = yes; then
133 if test "$FLOORF_LIBM" != '?' && test "$CEILF_LIBM" != '?'; then
134 AC_DEFINE([HAVE_FLOORF_AND_CEILF], [1],
135 [Define if the both the floorf() and ceilf() functions exist.])
137 dnl Append $FLOORF_LIBM to ROUNDF_LIBM, avoiding gratuitous duplicates.
138 case " $ROUNDF_LIBM " in
139 *" $FLOORF_LIBM "*) ;;
140 *) ROUNDF_LIBM="$ROUNDF_LIBM $FLOORF_LIBM" ;;
142 dnl Append $CEILF_LIBM to ROUNDF_LIBM, avoiding gratuitous duplicates.
143 case " $ROUNDF_LIBM " in
144 *" $CEILF_LIBM "*) ;;
145 *) ROUNDF_LIBM="$ROUNDF_LIBM $CEILF_LIBM" ;;
154 AC_SUBST([ROUNDF_LIBM])