strtod, strtold: Use the locale's decimal point.
[gnulib.git] / m4 / fmodl.m4
blob1e3e9aa95768ac0527c92dd31e0fdf149fa54733
1 # fmodl.m4 serial 9
2 dnl Copyright (C) 2011-2019 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_FMODL],
9   m4_divert_text([DEFAULTS], [gl_fmodl_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
12   AC_REQUIRE([gl_FUNC_FMOD])
14   dnl Persuade glibc <math.h> to declare fmodl().
15   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
17   dnl Test whether fmodl() is declared.
18   dnl AIX 5.1 has fmodl() in libc but doesn't declare it in <math.h>, and the
19   dnl function produces NaN results for finite values.
20   AC_CHECK_DECL([fmodl],
21     [ac_cv_have_decl_fmodl=yes], [ac_cv_have_decl_fmodl=no],
22     [[#include <math.h>]])
24   dnl Test whether fmodl() exists. Assume that fmodl(), if it exists, is
25   dnl defined in the same library as fmod().
26   save_LIBS="$LIBS"
27   LIBS="$LIBS $FMOD_LIBM"
28   AC_CHECK_FUNCS([fmodl])
29   LIBS="$save_LIBS"
30   if test $ac_cv_func_fmodl = yes; then
31     FMODL_LIBM="$FMOD_LIBM"
32     if test $ac_cv_have_decl_fmodl = no; then
33       REPLACE_FMODL=1
34     fi
35     m4_ifdef([gl_FUNC_FMODL_IEEE], [
36       if test $gl_fmodl_required = ieee && test $REPLACE_FMODL = 0; then
37         AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
38         AC_CACHE_CHECK([whether fmodl works according to ISO C 99 with IEC 60559],
39           [gl_cv_func_fmodl_ieee],
40           [
41             save_LIBS="$LIBS"
42             LIBS="$LIBS $FMODL_LIBM"
43             AC_RUN_IFELSE(
44               [AC_LANG_SOURCE([[
45 #ifndef __NO_MATH_INLINES
46 # define __NO_MATH_INLINES 1 /* for glibc */
47 #endif
48 #include <math.h>
49 /* Compare two numbers with ==.
50    This is a separate function because IRIX 6.5 "cc -O" miscompiles an
51    'x == x' test.  */
52 static int
53 numeric_equal (long double x, long double y)
55   return x == y;
57 static long double dummy (long double x, long double y) { return 0; }
58 int main (int argc, char *argv[])
60   long double (* volatile my_fmodl) (long double, long double) = argc ? fmodl : dummy;
61   long double f;
62   /* Test fmodl(...,0.0L).
63      This test fails on OSF/1 5.1.  */
64   f = my_fmodl (2.0L, 0.0L);
65   if (numeric_equal (f, f))
66     return 1;
67   return 0;
69               ]])],
70               [gl_cv_func_fmodl_ieee=yes],
71               [gl_cv_func_fmodl_ieee=no],
72               [case "$host_os" in
73                                 # Guess yes on glibc systems.
74                  *-gnu* | gnu*) gl_cv_func_fmodl_ieee="guessing yes" ;;
75                                 # Guess yes on native Windows.
76                  mingw*)        gl_cv_func_fmodl_ieee="guessing yes" ;;
77                                 # If we don't know, assume the worst.
78                  *)             gl_cv_func_fmodl_ieee="guessing no" ;;
79                esac
80               ])
81             LIBS="$save_LIBS"
82           ])
83         case "$gl_cv_func_fmodl_ieee" in
84           *yes) ;;
85           *) REPLACE_FMODL=1 ;;
86         esac
87       fi
88     ])
89   else
90     HAVE_FMODL=0
91     dnl If the function is declared but does not appear to exist, it may be
92     dnl defined as an inline function. In order to avoid a conflict, we have
93     dnl to define rpl_fmodl, not fmodl.
94     AC_CHECK_DECLS([fmodl], [REPLACE_FMODL=1], , [[#include <math.h>]])
95   fi
96   if test $HAVE_FMODL = 0 || test $REPLACE_FMODL = 1; then
97     dnl Find libraries needed to link lib/fmodl.c.
98     if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
99       FMODL_LIBM="$FMOD_LIBM"
100     else
101       AC_REQUIRE([gl_FUNC_FABSL])
102       AC_REQUIRE([gl_FUNC_FREXPL])
103       AC_REQUIRE([gl_FUNC_TRUNCL])
104       AC_REQUIRE([gl_FUNC_LDEXPL])
105       AC_REQUIRE([gl_FUNC_ISNANL])
106       FMODL_LIBM=
107       dnl Append $FABSL_LIBM to FMODL_LIBM, avoiding gratuitous duplicates.
108       case " $FMODL_LIBM " in
109         *" $FABSL_LIBM "*) ;;
110         *) FMODL_LIBM="$FMODL_LIBM $FABSL_LIBM" ;;
111       esac
112       dnl Append $FREXPL_LIBM to FMODL_LIBM, avoiding gratuitous duplicates.
113       case " $FMODL_LIBM " in
114         *" $FREXPL_LIBM "*) ;;
115         *) FMODL_LIBM="$FMODL_LIBM $FREXPL_LIBM" ;;
116       esac
117       dnl Append $TRUNCL_LIBM to FMODL_LIBM, avoiding gratuitous duplicates.
118       case " $FMODL_LIBM " in
119         *" $TRUNCL_LIBM "*) ;;
120         *) FMODL_LIBM="$FMODL_LIBM $TRUNCL_LIBM" ;;
121       esac
122       dnl Append $LDEXPL_LIBM to FMODL_LIBM, avoiding gratuitous duplicates.
123       case " $FMODL_LIBM " in
124         *" $LDEXPL_LIBM "*) ;;
125         *) FMODL_LIBM="$FMODL_LIBM $LDEXPL_LIBM" ;;
126       esac
127       dnl Append $ISNANL_LIBM to FMODL_LIBM, avoiding gratuitous duplicates.
128       case " $FMODL_LIBM " in
129         *" $ISNANL_LIBM "*) ;;
130         *) FMODL_LIBM="$FMODL_LIBM $ISNANL_LIBM" ;;
131       esac
132     fi
133   fi
134   AC_SUBST([FMODL_LIBM])