maint: update copyright
[gnulib.git] / m4 / remainderf.m4
1 # remainderf.m4 serial 8
2 dnl Copyright (C) 2012-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_REMAINDERF],
8 [
9   m4_divert_text([DEFAULTS], [gl_remainderf_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_FUNC_REMAINDER])
12
13   dnl Persuade glibc <math.h> to declare remainderf().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15
16   dnl Test whether remainderf() exists. Assume that remainderf(), if it exists, is
17   dnl defined in the same library as remainder().
18   save_LIBS="$LIBS"
19   LIBS="$LIBS $REMAINDER_LIBM"
20   AC_CACHE_CHECK([for remainderf],
21     [gl_cv_func_remainderf],
22     [
23       AC_LINK_IFELSE(
24         [AC_LANG_PROGRAM(
25            [[#ifndef __NO_MATH_INLINES
26              # define __NO_MATH_INLINES 1 /* for glibc */
27              #endif
28              #include <math.h>
29              extern
30              #ifdef __cplusplus
31              "C"
32              #endif
33              float remainderf (float, float);
34              float (*funcptr) (float, float) = remainderf;
35              float x;
36              float y;]],
37            [[return funcptr (x, y) > 1
38                     || remainderf (x, y) > 1;]])],
39         [gl_cv_func_remainderf=yes],
40         [gl_cv_func_remainderf=no])
41     ])
42   LIBS="$save_LIBS"
43   if test $gl_cv_func_remainderf = yes; then
44     REMAINDERF_LIBM="$REMAINDER_LIBM"
45
46     save_LIBS="$LIBS"
47     LIBS="$LIBS $REMAINDERF_LIBM"
48     gl_FUNC_REMAINDERF_WORKS
49     LIBS="$save_LIBS"
50     case "$gl_cv_func_remainderf_works" in
51       *yes) ;;
52       *) REPLACE_REMAINDERF=1 ;;
53     esac
54
55     m4_ifdef([gl_FUNC_REMAINDERF_IEEE], [
56       if test $gl_remainderf_required = ieee && test $REPLACE_REMAINDERF = 0; then
57         AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
58         AC_CACHE_CHECK([whether remainderf works according to ISO C 99 with IEC 60559],
59           [gl_cv_func_remainderf_ieee],
60           [
61             save_LIBS="$LIBS"
62             LIBS="$LIBS $REMAINDERF_LIBM"
63             AC_RUN_IFELSE(
64               [AC_LANG_SOURCE([[
65 #ifndef __NO_MATH_INLINES
66 # define __NO_MATH_INLINES 1 /* for glibc */
67 #endif
68 #include <math.h>
69 extern
70 #ifdef __cplusplus
71 "C"
72 #endif
73 float remainderf (float, float);
74 /* Compare two numbers with ==.
75    This is a separate function because IRIX 6.5 "cc -O" miscompiles an
76    'x == x' test.  */
77 static int
78 numeric_equal (float x, float y)
79 {
80   return x == y;
81 }
82 static float dummy (float x, float y) { return 0; }
83 int main (int argc, char *argv[])
84 {
85   float (*my_remainderf) (float, float) = argc ? remainderf : dummy;
86   float f;
87   /* Test remainderf(...,0.0f).
88      This test fails on OSF/1 5.1.  */
89   f = my_remainderf (2.0f, 0.0f);
90   if (numeric_equal (f, f))
91     return 1;
92   return 0;
93 }
94               ]])],
95               [gl_cv_func_remainderf_ieee=yes],
96               [gl_cv_func_remainderf_ieee=no],
97               [case "$host_os" in
98                          # Guess yes on glibc systems.
99                  *-gnu*) gl_cv_func_remainderf_ieee="guessing yes" ;;
100                          # If we don't know, assume the worst.
101                  *)      gl_cv_func_remainderf_ieee="guessing no" ;;
102                esac
103               ])
104             LIBS="$save_LIBS"
105           ])
106         case "$gl_cv_func_remainderf_ieee" in
107           *yes) ;;
108           *) REPLACE_REMAINDERF=1 ;;
109         esac
110       fi
111     ])
112   else
113     HAVE_REMAINDERF=0
114   fi
115   if test $HAVE_REMAINDERF = 0 || test $REPLACE_REMAINDERF = 1; then
116     dnl Find libraries needed to link lib/remainderf.c.
117     if test $gl_cv_func_remainder_no_libm = yes \
118        || test $gl_cv_func_remainder_in_libm = yes; then
119       AC_DEFINE([HAVE_REMAINDER], [1],
120         [Define to 1 if the remainder() function is available in libc or libm.])
121       REMAINDERF_LIBM="$REMAINDER_LIBM"
122     else
123       AC_REQUIRE([gl_FUNC_FABSF])
124       AC_REQUIRE([gl_FUNC_FMODF])
125       AC_REQUIRE([gl_FUNC_ISNANF])
126       REMAINDERF_LIBM=
127       dnl Append $FABSF_LIBM to REMAINDERF_LIBM, avoiding gratuitous duplicates.
128       case " $REMAINDERF_LIBM " in
129         *" $FABSF_LIBM "*) ;;
130         *) REMAINDERF_LIBM="$REMAINDERF_LIBM $FABSF_LIBM" ;;
131       esac
132       dnl Append $FMODF_LIBM to REMAINDERF_LIBM, avoiding gratuitous duplicates.
133       case " $REMAINDERF_LIBM " in
134         *" $FMODF_LIBM "*) ;;
135         *) REMAINDERF_LIBM="$REMAINDERF_LIBM $FMODF_LIBM" ;;
136       esac
137       dnl Append $ISNANF_LIBM to REMAINDERF_LIBM, avoiding gratuitous duplicates.
138       case " $REMAINDERF_LIBM " in
139         *" $ISNANF_LIBM "*) ;;
140         *) REMAINDERF_LIBM="$REMAINDERF_LIBM $ISNANF_LIBM" ;;
141       esac
142     fi
143   fi
144   AC_SUBST([REMAINDERF_LIBM])
145 ])
146
147 dnl Test whether remainderf() works.
148 dnl It runs into an endless loop on IRIX 6.5.
149 AC_DEFUN([gl_FUNC_REMAINDERF_WORKS],
150 [
151   AC_REQUIRE([AC_PROG_CC])
152   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
153   AC_CHECK_DECLS_ONCE([alarm])
154   AC_CACHE_CHECK([whether remainderf works], [gl_cv_func_remainderf_works],
155     [
156       AC_RUN_IFELSE(
157         [AC_LANG_SOURCE([[
158 #include <math.h>
159 #if HAVE_DECL_ALARM
160 # include <signal.h>
161 # include <unistd.h>
162 #endif
163 extern
164 #ifdef __cplusplus
165 "C"
166 #endif
167 float remainderf (float, float);
168 volatile float x;
169 volatile float y;
170 float z;
171 int main ()
172 {
173 #if HAVE_DECL_ALARM
174   signal (SIGALRM, SIG_DFL);
175   alarm (5);
176 #endif
177   /* This test fails on IRIX 6.5.  */
178   x = 9.316161e+37f;
179   y = 0.5475547314f;
180   z = remainderf (x, y);
181   return 0;
182 }
183 ]])],
184         [gl_cv_func_remainderf_works=yes],
185         [gl_cv_func_remainderf_works=no],
186         [case "$host_os" in
187            irix*) gl_cv_func_remainderf_works="guessing no";;
188            *)     gl_cv_func_remainderf_works="guessing yes";;
189          esac
190         ])
191     ])
192 ])