stdopen: Fix compilation error with IRIX cc.
[gnulib.git] / m4 / modfl.m4
blob8b5bc7b10be3e7a7217c9ecb38ed479f2ad2ea00
1 # modfl.m4 serial 5
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_MODFL],
9   m4_divert_text([DEFAULTS], [gl_modfl_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 modfl().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16   dnl Test whether modfl() exists. We cannot assume that modfl(), if it
17   dnl exists, is defined in the same library as modf(). This is not the case
18   dnl on FreeBSD, Solaris.
19   gl_MATHFUNC([modfl], [long double], [(long double, long double *)])
20   if test $gl_cv_func_modfl_no_libm = yes \
21      || test $gl_cv_func_modfl_in_libm = yes; then
22     :
23     m4_ifdef([gl_FUNC_MODFL_IEEE], [
24       if test $gl_modfl_required = ieee && test $REPLACE_MODFL = 0; then
25         AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
26         AC_CACHE_CHECK([whether modfl works according to ISO C 99 with IEC 60559],
27           [gl_cv_func_modfl_ieee],
28           [
29             save_LIBS="$LIBS"
30             LIBS="$LIBS $MODFL_LIBM"
31             AC_RUN_IFELSE(
32               [AC_LANG_SOURCE([[
33 #ifndef __NO_MATH_INLINES
34 # define __NO_MATH_INLINES 1 /* for glibc */
35 #endif
36 #include <math.h>
37 ]gl_LONG_DOUBLE_MINUS_ZERO_CODE[
38 ]gl_LONG_DOUBLE_SIGNBIT_CODE[
39 /* Compare two numbers with ==.
40    This is a separate function because IRIX 6.5 "cc -O" miscompiles an
41    'x == x' test.  */
42 static int
43 numeric_equal (long double x, long double y)
45   return x == y;
47 static long double dummy (long double x, long double *iptr) { return 0; }
48 long double zero;
49 long double minus_one = - 1.0L;
50 int main (int argc, char *argv[])
52   long double (*my_modfl) (long double, long double *) = argc ? modfl : dummy;
53   long double i;
54   long double f;
55   /* Test modfl(-Inf,...).
56      This test fails on IRIX 6.5, OSF/1 5.1, mingw.  */
57   f = my_modfl (minus_one / zero, &i);
58   if (!(f == 0.0L) || (signbitl (minus_zerol) && !signbitl (f)))
59     return 1;
60   return 0;
62               ]])],
63               [gl_cv_func_modfl_ieee=yes],
64               [gl_cv_func_modfl_ieee=no],
65               [case "$host_os" in
66                                 # Guess yes on glibc systems.
67                  *-gnu* | gnu*) gl_cv_func_modfl_ieee="guessing yes" ;;
68                                 # Guess yes on MSVC, no on mingw.
69                  mingw*)        AC_EGREP_CPP([Known], [
70 #ifdef _MSC_VER
71  Known
72 #endif
73                                   ],
74                                   [gl_cv_func_modfl_ieee="guessing yes"],
75                                   [gl_cv_func_modfl_ieee="guessing no"])
76                                 ;;
77                                 # If we don't know, assume the worst.
78                  *)             gl_cv_func_modfl_ieee="guessing no" ;;
79                esac
80               ])
81             LIBS="$save_LIBS"
82           ])
83         case "$gl_cv_func_modfl_ieee" in
84           *yes) ;;
85           *) REPLACE_MODFL=1 ;;
86         esac
87       fi
88     ])
89   else
90     HAVE_MODFL=0
91   fi
92   if test $HAVE_MODFL = 0 || test $REPLACE_MODFL = 1; then
93     dnl Find libraries needed to link lib/modfl.c.
94     if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
95       AC_REQUIRE([gl_FUNC_MODF])
96       MODFL_LIBM="$MODF_LIBM"
97     else
98       AC_REQUIRE([gl_FUNC_TRUNCL])
99       MODFL_LIBM="$TRUNCL_LIBM"
100     fi
101   fi
102   AC_SUBST([MODFL_LIBM])