2 dnl Copyright (C) 2012-2020 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().
19 LIBS="$LIBS $LOG1P_LIBM"
20 AC_CHECK_FUNCS([log1pf])
22 if test $ac_cv_func_log1pf = yes; then
23 LOG1PF_LIBM="$LOG1P_LIBM"
26 LIBS="$LIBS $LOG1PF_LIBM"
29 case "$gl_cv_func_log1pf_works" in
31 *) REPLACE_LOG1PF=1 ;;
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],
41 LIBS="$LIBS $LOG1PF_LIBM"
44 #ifndef __NO_MATH_INLINES
45 # define __NO_MATH_INLINES 1 /* for glibc */
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)))
61 [gl_cv_func_log1pf_ieee=yes],
62 [gl_cv_func_log1pf_ieee=no],
64 # Guess yes on glibc systems.
65 *-gnu* | gnu*) gl_cv_func_log1pf_ieee="guessing yes" ;;
66 # Guess yes on musl systems.
67 *-musl*) gl_cv_func_log1pf_ieee="guessing yes" ;;
68 # Guess yes on native Windows.
69 mingw*) gl_cv_func_log1pf_ieee="guessing yes" ;;
70 # If we don't know, obey --enable-cross-guesses.
71 *) gl_cv_func_log1pf_ieee="$gl_cross_guess_normal" ;;
76 case "$gl_cv_func_log1pf_ieee" in
78 *) REPLACE_LOG1PF=1 ;;
85 if test $HAVE_LOG1PF = 0 || test $REPLACE_LOG1PF = 1; then
86 dnl Find libraries needed to link lib/log1pf.c.
87 LOG1PF_LIBM="$LOG1P_LIBM"
89 AC_SUBST([LOG1PF_LIBM])
92 dnl Test whether log1pf() works.
93 dnl On IRIX 6.5, log1pf(-1.0f) returns +Infinity instead of -Infinity.
94 AC_DEFUN([gl_FUNC_LOG1PF_WORKS],
96 AC_REQUIRE([AC_PROG_CC])
97 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
98 AC_CACHE_CHECK([whether log1pf works], [gl_cv_func_log1pf_works],
109 if (!(y + y == y && y < 0.0f))
114 [gl_cv_func_log1pf_works=yes],
115 [gl_cv_func_log1pf_works=no],
117 irix*) gl_cv_func_log1pf_works="guessing no" ;;
118 # Guess yes on native Windows.
119 mingw*) gl_cv_func_log1pf_works="guessing yes" ;;
120 *) gl_cv_func_log1pf_works="guessing yes" ;;