Add script for determining the set of symbols to export from a library.
[gnulib.git] / m4 / log1pf.m4
blob4a2c35a61dfb6c73c14a3ea34d29e41701dc8fb9
1 # log1pf.m4 serial 6
2 dnl Copyright (C) 2012-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_LOG1PF],
9   m4_divert_text([DEFAULTS], [gl_log1pf_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_FUNC_LOG1P])
13   dnl Persuade glibc <math.h> to declare log1pf().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16   dnl Test whether log1pf() exists. Assume that log1pf(), if it exists, is
17   dnl defined in the same library as log1p().
18   save_LIBS="$LIBS"
19   LIBS="$LIBS $LOG1P_LIBM"
20   AC_CHECK_FUNCS([log1pf])
21   LIBS="$save_LIBS"
22   if test $ac_cv_func_log1pf = yes; then
23     LOG1PF_LIBM="$LOG1P_LIBM"
25     save_LIBS="$LIBS"
26     LIBS="$LIBS $LOG1PF_LIBM"
27     gl_FUNC_LOG1PF_WORKS
28     LIBS="$save_LIBS"
29     case "$gl_cv_func_log1pf_works" in
30       *yes) ;;
31       *) REPLACE_LOG1PF=1 ;;
32     esac
34     m4_ifdef([gl_FUNC_LOG1PF_IEEE], [
35       if test $gl_log1pf_required = ieee && test $REPLACE_LOG1PF = 0; then
36         AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
37         AC_CACHE_CHECK([whether log1pf works according to ISO C 99 with IEC 60559],
38           [gl_cv_func_log1pf_ieee],
39           [
40             save_LIBS="$LIBS"
41             LIBS="$LIBS $LOG1PF_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 ]gl_FLOAT_MINUS_ZERO_CODE[
49 ]gl_FLOAT_SIGNBIT_CODE[
50 static float dummy (float x) { return 0; }
51 int main (int argc, char *argv[])
53   float (* volatile my_log1pf) (float) = argc ? log1pf : dummy;
54   /* This test fails on OpenBSD 4.9, AIX 7.1.  */
55   float y = my_log1pf (minus_zerof);
56   if (!(y == 0.0f) || (signbitf (minus_zerof) && !signbitf (y)))
57     return 1;
58   return 0;
60               ]])],
61               [gl_cv_func_log1pf_ieee=yes],
62               [gl_cv_func_log1pf_ieee=no],
63               [case "$host_os" in
64                                 # Guess yes on glibc systems.
65                  *-gnu* | gnu*) gl_cv_func_log1pf_ieee="guessing yes" ;;
66                                 # Guess yes on native Windows.
67                  mingw*)        gl_cv_func_log1pf_ieee="guessing yes" ;;
68                                 # If we don't know, assume the worst.
69                  *)             gl_cv_func_log1pf_ieee="guessing no" ;;
70                esac
71               ])
72             LIBS="$save_LIBS"
73           ])
74         case "$gl_cv_func_log1pf_ieee" in
75           *yes) ;;
76           *) REPLACE_LOG1PF=1 ;;
77         esac
78       fi
79     ])
80   else
81     HAVE_LOG1PF=0
82   fi
83   if test $HAVE_LOG1PF = 0 || test $REPLACE_LOG1PF = 1; then
84     dnl Find libraries needed to link lib/log1pf.c.
85     LOG1PF_LIBM="$LOG1P_LIBM"
86   fi
87   AC_SUBST([LOG1PF_LIBM])
90 dnl Test whether log1pf() works.
91 dnl On IRIX 6.5, log1pf(-1.0f) returns +Infinity instead of -Infinity.
92 AC_DEFUN([gl_FUNC_LOG1PF_WORKS],
94   AC_REQUIRE([AC_PROG_CC])
95   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
96   AC_CACHE_CHECK([whether log1pf works], [gl_cv_func_log1pf_works],
97     [
98       AC_RUN_IFELSE(
99         [AC_LANG_SOURCE([[
100 #include <math.h>
101 volatile float x;
102 float y;
103 int main ()
105   x = -1.0f;
106   y = log1pf (x);
107   if (!(y + y == y && y < 0.0f))
108     return 1;
109   return 0;
111 ]])],
112         [gl_cv_func_log1pf_works=yes],
113         [gl_cv_func_log1pf_works=no],
114         [case "$host_os" in
115            irix*)  gl_cv_func_log1pf_works="guessing no" ;;
116                    # Guess yes on native Windows.
117            mingw*) gl_cv_func_log1pf_works="guessing yes" ;;
118            *)      gl_cv_func_log1pf_works="guessing yes" ;;
119          esac
120         ])
121     ])