stdopen: Fix compilation error with IRIX cc.
[gnulib.git] / m4 / logf.m4
blobac0aab73b5608cc2c1aff0ededf5297d837d9b6c
1 # logf.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_LOGF],
9   m4_divert_text([DEFAULTS], [gl_logf_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_FUNC_LOG])
13   dnl Persuade glibc <math.h> to declare logf().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16   dnl Test whether logf() exists. Assume that logf(), if it exists, is
17   dnl defined in the same library as log().
18   save_LIBS="$LIBS"
19   LIBS="$LIBS $LOG_LIBM"
20   AC_CHECK_FUNCS([logf])
21   LIBS="$save_LIBS"
22   if test $ac_cv_func_logf = yes; then
23     LOGF_LIBM="$LOG_LIBM"
25     save_LIBS="$LIBS"
26     LIBS="$LIBS $LOGF_LIBM"
27     gl_FUNC_LOGF_WORKS
28     LIBS="$save_LIBS"
29     case "$gl_cv_func_logf_works" in
30       *yes) ;;
31       *) REPLACE_LOGF=1 ;;
32     esac
34     m4_ifdef([gl_FUNC_LOGF_IEEE], [
35       if test $gl_logf_required = ieee && test $REPLACE_LOGF = 0; then
36         AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
37         AC_CACHE_CHECK([whether logf works according to ISO C 99 with IEC 60559],
38           [gl_cv_func_logf_ieee],
39           [
40             save_LIBS="$LIBS"
41             LIBS="$LIBS $LOGF_LIBM"
42             AC_RUN_IFELSE(
43               [AC_LANG_SOURCE([[
44 #ifndef __NO_MATH_INLINES
45 # define __NO_MATH_INLINES 1 /* for glibc */
46 #endif
47 #include <math.h>
48 /* Compare two numbers with ==.
49    This is a separate function because IRIX 6.5 "cc -O" miscompiles an
50    'x == x' test.  */
51 static int
52 numeric_equal (float x, float y)
54   return x == y;
56 static float dummy (float x) { return 0; }
57 int main (int argc, char *argv[])
59   float (*my_logf) (float) = argc ? logf : dummy;
60   /* Test logf(negative).
61      This test fails on NetBSD 5.1.  */
62   float y = my_logf (-1.0f);
63   if (numeric_equal (y, y))
64     return 1;
65   return 0;
67               ]])],
68               [gl_cv_func_logf_ieee=yes],
69               [gl_cv_func_logf_ieee=no],
70               [case "$host_os" in
71                                 # Guess yes on glibc systems.
72                  *-gnu* | gnu*) gl_cv_func_logf_ieee="guessing yes" ;;
73                                 # Guess yes on native Windows.
74                  mingw*)        gl_cv_func_logf_ieee="guessing yes" ;;
75                                 # If we don't know, assume the worst.
76                  *)             gl_cv_func_logf_ieee="guessing no" ;;
77                esac
78               ])
79             LIBS="$save_LIBS"
80           ])
81         case "$gl_cv_func_logf_ieee" in
82           *yes) ;;
83           *) REPLACE_LOGF=1 ;;
84         esac
85       fi
86     ])
87   else
88     HAVE_LOGF=0
89     dnl If the function is declared but does not appear to exist, it may be
90     dnl defined as an inline function. In order to avoid a conflict, we have
91     dnl to define rpl_logf, not logf.
92     AC_CHECK_DECLS([logf], [REPLACE_LOGF=1], , [[#include <math.h>]])
93   fi
94   if test $HAVE_LOGF = 0 || test $REPLACE_LOGF = 1; then
95     dnl Find libraries needed to link lib/logf.c.
96     if test $HAVE_LOGF = 0; then
97       LOGF_LIBM="$LOG_LIBM"
98     fi
99   fi
100   AC_SUBST([LOGF_LIBM])
103 dnl Test whether logf() works.
104 dnl On OSF/1 5.1, logf(-0.0f) is NaN.
105 AC_DEFUN([gl_FUNC_LOGF_WORKS],
107   AC_REQUIRE([AC_PROG_CC])
108   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
109   AC_CACHE_CHECK([whether logf works], [gl_cv_func_logf_works],
110     [
111       AC_RUN_IFELSE(
112         [AC_LANG_SOURCE([[
113 #include <math.h>
114 volatile float x;
115 float y;
116 int main ()
118   x = -0.0f;
119   y = logf (x);
120   if (!(y + y == y))
121     return 1;
122   return 0;
124 ]])],
125         [gl_cv_func_logf_works=yes],
126         [gl_cv_func_logf_works=no],
127         [case "$host_os" in
128            osf*)   gl_cv_func_logf_works="guessing no" ;;
129                    # Guess yes on native Windows.
130            mingw*) gl_cv_func_logf_works="guessing yes" ;;
131            *)      gl_cv_func_logf_works="guessing yes" ;;
132          esac
133         ])
134     ])