2 dnl Copyright (C) 2007-2018 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 return (x < 0.5f && roundf (x) != 0.0f);
58 }]])], [gl_cv_func_roundf_works=yes], [gl_cv_func_roundf_works=no],
60 # Guess yes on MSVC, no on mingw.
61 mingw*) AC_EGREP_CPP([Known], [
66 [gl_cv_func_roundf_works="guessing yes"],
67 [gl_cv_func_roundf_works="guessing no"])
69 *) gl_cv_func_roundf_works="guessing yes" ;;
74 case "$gl_cv_func_roundf_works" in
75 *no) REPLACE_ROUNDF=1 ;;
78 m4_ifdef([gl_FUNC_ROUNDF_IEEE], [
79 if test $gl_roundf_required = ieee && test $REPLACE_ROUNDF = 0; then
80 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
81 AC_CACHE_CHECK([whether roundf works according to ISO C 99 with IEC 60559],
82 [gl_cv_func_roundf_ieee],
85 LIBS="$LIBS $ROUNDF_LIBM"
88 #ifndef __NO_MATH_INLINES
89 # define __NO_MATH_INLINES 1 /* for glibc */
97 ]gl_FLOAT_MINUS_ZERO_CODE[
98 ]gl_FLOAT_SIGNBIT_CODE[
99 static float dummy (float f) { return 0; }
100 int main (int argc, char *argv[])
102 float (*my_roundf) (float) = argc ? roundf : dummy;
104 /* Test whether roundf (-0.0f) is -0.0f. */
105 if (signbitf (minus_zerof) && !signbitf (my_roundf (minus_zerof)))
107 /* Test whether roundf (-0.3f) is -0.0f. */
108 if (signbitf (-0.3f) && !signbitf (my_roundf (-0.3f)))
113 [gl_cv_func_roundf_ieee=yes],
114 [gl_cv_func_roundf_ieee=no],
116 # Guess yes on glibc systems.
117 *-gnu* | gnu*) gl_cv_func_roundf_ieee="guessing yes" ;;
118 # Guess yes on MSVC, no on mingw.
119 mingw*) AC_EGREP_CPP([Known], [
124 [gl_cv_func_roundf_ieee="guessing yes"],
125 [gl_cv_func_roundf_ieee="guessing no"])
127 # If we don't know, assume the worst.
128 *) gl_cv_func_roundf_ieee="guessing no" ;;
133 case "$gl_cv_func_roundf_ieee" in
135 *) REPLACE_ROUNDF=1 ;;
143 if test $HAVE_ROUNDF = 0 || test $REPLACE_ROUNDF = 1; then
144 dnl Find libraries needed to link lib/roundf.c.
145 AC_CHECK_DECLS([ceilf, floorf], , , [[#include <math.h>]])
146 if test "$ac_cv_have_decl_floorf" = yes \
147 && test "$ac_cv_have_decl_ceilf" = yes; then
150 if test "$FLOORF_LIBM" != '?' && test "$CEILF_LIBM" != '?'; then
151 AC_DEFINE([HAVE_FLOORF_AND_CEILF], [1],
152 [Define if the both the floorf() and ceilf() functions exist.])
154 dnl Append $FLOORF_LIBM to ROUNDF_LIBM, avoiding gratuitous duplicates.
155 case " $ROUNDF_LIBM " in
156 *" $FLOORF_LIBM "*) ;;
157 *) ROUNDF_LIBM="$ROUNDF_LIBM $FLOORF_LIBM" ;;
159 dnl Append $CEILF_LIBM to ROUNDF_LIBM, avoiding gratuitous duplicates.
160 case " $ROUNDF_LIBM " in
161 *" $CEILF_LIBM "*) ;;
162 *) ROUNDF_LIBM="$ROUNDF_LIBM $CEILF_LIBM" ;;
171 AC_SUBST([ROUNDF_LIBM])