maint: update copyright
[gnulib.git] / m4 / modfl.m4
1 # modfl.m4 serial 3
2 dnl Copyright (C) 2011-2014 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.
6
7 AC_DEFUN([gl_FUNC_MODFL],
8 [
9   m4_divert_text([DEFAULTS], [gl_modfl_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
12
13   dnl Persuade glibc <math.h> to declare modfl().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15
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)
44 {
45   return x == y;
46 }
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[])
51 {
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;
61 }
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*) gl_cv_func_modfl_ieee="guessing yes" ;;
68                          # If we don't know, assume the worst.
69                  *)      gl_cv_func_modfl_ieee="guessing no" ;;
70                esac
71               ])
72             LIBS="$save_LIBS"
73           ])
74         case "$gl_cv_func_modfl_ieee" in
75           *yes) ;;
76           *) REPLACE_MODFL=1 ;;
77         esac
78       fi
79     ])
80   else
81     HAVE_MODFL=0
82   fi
83   if test $HAVE_MODFL = 0 || test $REPLACE_MODFL = 1; then
84     dnl Find libraries needed to link lib/modfl.c.
85     if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
86       AC_REQUIRE([gl_FUNC_MODF])
87       MODFL_LIBM="$MODF_LIBM"
88     else
89       AC_REQUIRE([gl_FUNC_TRUNCL])
90       MODFL_LIBM="$TRUNCL_LIBM"
91     fi
92   fi
93   AC_SUBST([MODFL_LIBM])
94 ])