stdopen: Fix compilation error with IRIX cc.
[gnulib.git] / m4 / fmod.m4
blob0b61649b82ae9e2e5dde8929b16ba48cd7320044
1 # fmod.m4 serial 6
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_FMOD],
9   m4_divert_text([DEFAULTS], [gl_fmod_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
12   dnl Determine FMOD_LIBM.
13   gl_COMMON_DOUBLE_MATHFUNC([fmod])
15   m4_ifdef([gl_FUNC_FMOD_IEEE], [
16     if test $gl_fmod_required = ieee && test $REPLACE_FMOD = 0; then
17       AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
18       AC_CACHE_CHECK([whether fmod works according to ISO C 99 with IEC 60559],
19         [gl_cv_func_fmod_ieee],
20         [
21           save_LIBS="$LIBS"
22           LIBS="$LIBS $FMOD_LIBM"
23           AC_RUN_IFELSE(
24             [AC_LANG_SOURCE([[
25 #ifndef __NO_MATH_INLINES
26 # define __NO_MATH_INLINES 1 /* for glibc */
27 #endif
28 #include <math.h>
29 ]gl_DOUBLE_MINUS_ZERO_CODE[
30 ]gl_DOUBLE_SIGNBIT_CODE[
31 /* Compare two numbers with ==.
32    This is a separate function because IRIX 6.5 "cc -O" miscompiles an
33    'x == x' test.  */
34 static int
35 numeric_equal (double x, double y)
37   return x == y;
39 static double dummy (double x, double y) { return 0; }
40 int main (int argc, char *argv[])
42   double (*my_fmod) (double, double) = argc ? fmod : dummy;
43   int result = 0;
44   double f;
45   /* Test fmod(...,0.0).
46      This test fails on OSF/1 5.1.  */
47   f = my_fmod (2.0, 0.0);
48   if (numeric_equal (f, f))
49     result |= 1;
50   /* Test fmod(-0.0,...).
51      This test fails on native Windows.  */
52   f = my_fmod (minus_zerod, 2.0);
53   if (!(f == 0.0) || (signbitd (minus_zerod) && !signbitd (f)))
54     result |= 2;
55   return result;
57             ]])],
58             [gl_cv_func_fmod_ieee=yes],
59             [gl_cv_func_fmod_ieee=no],
60             [case "$host_os" in
61                               # Guess yes on glibc systems.
62                *-gnu* | gnu*) gl_cv_func_fmod_ieee="guessing yes" ;;
63                               # Guess yes on native Windows.
64                mingw*)        gl_cv_func_fmod_ieee="guessing yes" ;;
65                               # If we don't know, assume the worst.
66                *)             gl_cv_func_fmod_ieee="guessing no" ;;
67              esac
68             ])
69           LIBS="$save_LIBS"
70         ])
71       case "$gl_cv_func_fmod_ieee" in
72         *yes) ;;
73         *) REPLACE_FMOD=1 ;;
74       esac
75     fi
76   ])
77   if test $REPLACE_FMOD = 1; then
78     dnl Find libraries needed to link lib/fmod.c.
79     AC_REQUIRE([gl_FUNC_FABS])
80     AC_REQUIRE([gl_FUNC_FREXP])
81     AC_REQUIRE([gl_FUNC_TRUNC])
82     AC_REQUIRE([gl_FUNC_LDEXP])
83     AC_REQUIRE([gl_FUNC_ISNAND])
84     FMOD_LIBM=
85     dnl Append $FABS_LIBM to FMOD_LIBM, avoiding gratuitous duplicates.
86     case " $FMOD_LIBM " in
87       *" $FABS_LIBM "*) ;;
88       *) FMOD_LIBM="$FMOD_LIBM $FABS_LIBM" ;;
89     esac
90     dnl Append $FREXP_LIBM to FMOD_LIBM, avoiding gratuitous duplicates.
91     case " $FMOD_LIBM " in
92       *" $FREXP_LIBM "*) ;;
93       *) FMOD_LIBM="$FMOD_LIBM $FREXP_LIBM" ;;
94     esac
95     dnl Append $TRUNC_LIBM to FMOD_LIBM, avoiding gratuitous duplicates.
96     case " $FMOD_LIBM " in
97       *" $TRUNC_LIBM "*) ;;
98       *) FMOD_LIBM="$FMOD_LIBM $TRUNC_LIBM" ;;
99     esac
100     dnl Append $LDEXP_LIBM to FMOD_LIBM, avoiding gratuitous duplicates.
101     case " $FMOD_LIBM " in
102       *" $LDEXP_LIBM "*) ;;
103       *) FMOD_LIBM="$FMOD_LIBM $LDEXP_LIBM" ;;
104     esac
105     dnl Append $ISNAND_LIBM to FMOD_LIBM, avoiding gratuitous duplicates.
106     case " $FMOD_LIBM " in
107       *" $ISNAND_LIBM "*) ;;
108       *) FMOD_LIBM="$FMOD_LIBM $ISNAND_LIBM" ;;
109     esac
110   fi