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_ROUNDL],
9 m4_divert_text([DEFAULTS], [gl_roundl_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
11 AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
13 dnl Persuade glibc <math.h> to declare roundl().
14 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16 gl_CHECK_MATH_LIB([ROUNDL_LIBM], [x = roundl (x);],
21 long double roundl (long double);
23 if test "$ROUNDL_LIBM" != missing; then
25 dnl Also check whether it's declared.
26 dnl IRIX 6.5 has roundl() in libm but doesn't declare it in <math.h>.
27 AC_CHECK_DECLS([roundl], , [HAVE_DECL_ROUNDL=0], [[#include <math.h>]])
29 m4_ifdef([gl_FUNC_ROUNDL_IEEE], [
30 if test $gl_roundl_required = ieee && test $REPLACE_ROUNDL = 0; then
31 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
32 AC_CACHE_CHECK([whether roundl works according to ISO C 99 with IEC 60559],
33 [gl_cv_func_roundl_ieee],
36 LIBS="$LIBS $ROUNDL_LIBM"
39 #ifndef __NO_MATH_INLINES
40 # define __NO_MATH_INLINES 1 /* for glibc */
47 long double roundl (long double);
48 ]gl_LONG_DOUBLE_MINUS_ZERO_CODE[
49 ]gl_LONG_DOUBLE_SIGNBIT_CODE[
50 static long double dummy (long double f) { return 0; }
51 int main (int argc, char *argv[])
53 long double (*my_roundl) (long double) = argc ? roundl : dummy;
55 /* Test whether roundl (-0.0L) is -0.0L. */
56 if (signbitl (minus_zerol) && !signbitl (my_roundl (minus_zerol)))
58 /* Test whether roundl (-0.3L) is -0.0L. */
59 if (signbitl (-0.3L) && !signbitl (my_roundl (-0.3L)))
64 [gl_cv_func_roundl_ieee=yes],
65 [gl_cv_func_roundl_ieee=no],
67 # Guess yes on glibc systems.
68 *-gnu*) gl_cv_func_roundl_ieee="guessing yes" ;;
69 # Guess yes on native Windows.
70 mingw*) gl_cv_func_roundl_ieee="guessing yes" ;;
71 # If we don't know, assume the worst.
72 *) gl_cv_func_roundl_ieee="guessing no" ;;
77 case "$gl_cv_func_roundl_ieee" in
79 *) REPLACE_ROUNDL=1 ;;
87 if test $HAVE_ROUNDL = 0 || test $REPLACE_ROUNDL = 1; then
88 dnl Find libraries needed to link lib/roundl.c.
89 if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
90 AC_REQUIRE([gl_FUNC_ROUND])
91 ROUNDL_LIBM="$ROUND_LIBM"
93 AC_CHECK_DECLS([ceill, floorl], , , [[#include <math.h>]])
94 if test "$ac_cv_have_decl_floorl" = yes \
95 && test "$ac_cv_have_decl_ceill" = yes; then
98 if test "$FLOORL_LIBM" != '?' && test "$CEILL_LIBM" != '?'; then
99 AC_DEFINE([HAVE_FLOORL_AND_CEILL], [1],
100 [Define if the both the floorl() and ceill() functions exist.])
102 dnl Append $FLOORL_LIBM to ROUNDL_LIBM, avoiding gratuitous duplicates.
103 case " $ROUNDL_LIBM " in
104 *" $FLOORL_LIBM "*) ;;
105 *) ROUNDL_LIBM="$ROUNDL_LIBM $FLOORL_LIBM" ;;
107 dnl Append $CEILL_LIBM to ROUNDL_LIBM, avoiding gratuitous duplicates.
108 case " $ROUNDL_LIBM " in
109 *" $CEILL_LIBM "*) ;;
110 *) ROUNDL_LIBM="$ROUNDL_LIBM $CEILL_LIBM" ;;
120 AC_SUBST([ROUNDL_LIBM])