2 dnl Copyright (C) 2010-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_LOGL],
9 AC_REQUIRE([gl_MATH_H_DEFAULTS])
10 AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
12 dnl Persuade glibc <math.h> to declare logl().
13 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16 AC_CACHE_CHECK([whether logl() can be used without linking with libm],
17 [gl_cv_func_logl_no_libm],
21 [[#ifndef __NO_MATH_INLINES
22 # define __NO_MATH_INLINES 1 /* for glibc */
25 long double (*funcptr) (long double) = logl;
27 [[return funcptr (x) > 1
29 [gl_cv_func_logl_no_libm=yes],
30 [gl_cv_func_logl_no_libm=no])
32 if test $gl_cv_func_logl_no_libm = no; then
33 AC_CACHE_CHECK([whether logl() can be used with libm],
34 [gl_cv_func_logl_in_libm],
40 [[#ifndef __NO_MATH_INLINES
41 # define __NO_MATH_INLINES 1 /* for glibc */
44 long double (*funcptr) (long double) = logl;
46 [[return funcptr (x) > 1
48 [gl_cv_func_logl_in_libm=yes],
49 [gl_cv_func_logl_in_libm=no])
52 if test $gl_cv_func_logl_in_libm = yes; then
56 if test $gl_cv_func_logl_no_libm = yes \
57 || test $gl_cv_func_logl_in_libm = yes; then
58 dnl Also check whether it's declared.
59 dnl Mac OS X 10.3 has logl() in libc but doesn't declare it in <math.h>.
60 AC_CHECK_DECL([logl], , [HAVE_DECL_LOGL=0], [[#include <math.h>]])
62 LIBS="$LIBS $LOGL_LIBM"
65 case "$gl_cv_func_logl_works" in
73 if test $HAVE_LOGL = 0 || test $REPLACE_LOGL = 1; then
74 dnl Find libraries needed to link lib/logl.c.
75 if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
76 AC_REQUIRE([gl_FUNC_LOG])
79 if test $HAVE_LOGL = 0; then
80 AC_REQUIRE([gl_FUNC_FREXPL])
81 AC_REQUIRE([gl_FUNC_ISNANL])
82 AC_REQUIRE([gl_FUNC_FLOORL])
83 dnl Append $FREXPL_LIBM to LOGL_LIBM, avoiding gratuitous duplicates.
84 case " $LOGL_LIBM " in
85 *" $FREXPL_LIBM "*) ;;
86 *) LOGL_LIBM="$LOGL_LIBM $FREXPL_LIBM" ;;
88 dnl Append $ISNANL_LIBM to LOGL_LIBM, avoiding gratuitous duplicates.
89 case " $LOGL_LIBM " in
90 *" $ISNANL_LIBM "*) ;;
91 *) LOGL_LIBM="$LOGL_LIBM $ISNANL_LIBM" ;;
93 dnl Append $FLOORL_LIBM to LOGL_LIBM, avoiding gratuitous duplicates.
94 case " $LOGL_LIBM " in
95 *" $FLOORL_LIBM "*) ;;
96 *) LOGL_LIBM="$LOGL_LIBM $FLOORL_LIBM" ;;
101 AC_SUBST([LOGL_LIBM])
104 dnl Test whether logl() works.
105 dnl On OSF/1 5.1, logl(-0.0L) is NaN.
106 dnl On NetBSD 9.0, the result is accurate to only 16 digits.
107 AC_DEFUN([gl_FUNC_LOGL_WORKS],
109 AC_REQUIRE([AC_PROG_CC])
110 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
111 AC_CACHE_CHECK([whether logl works], [gl_cv_func_logl_works],
115 #ifndef __NO_MATH_INLINES
116 # define __NO_MATH_INLINES 1 /* for glibc */
120 /* Override the values of <float.h>, like done in float.in.h. */
121 #if defined __i386__ && (defined __BEOS__ || defined __OpenBSD__)
122 # undef LDBL_MANT_DIG
123 # define LDBL_MANT_DIG 64
125 # define LDBL_MIN_EXP (-16381)
127 # define LDBL_MAX_EXP 16384
129 #if defined __i386__ && (defined __FreeBSD__ || defined __DragonFly__)
130 # undef LDBL_MANT_DIG
131 # define LDBL_MANT_DIG 64
133 # define LDBL_MIN_EXP (-16381)
135 # define LDBL_MAX_EXP 16384
137 #if (defined _ARCH_PPC || defined _POWER) && defined _AIX && (LDBL_MANT_DIG == 106) && defined __GNUC__
139 # define LDBL_MIN_EXP DBL_MIN_EXP
141 #if defined __sgi && (LDBL_MANT_DIG >= 106)
142 # undef LDBL_MANT_DIG
143 # define LDBL_MANT_DIG 106
144 # if defined __GNUC__
146 # define LDBL_MIN_EXP DBL_MIN_EXP
154 long double logl (long double);
155 static long double dummy (long double x) { return 0; }
156 volatile long double gx;
158 int main (int argc, char *argv[])
160 long double (* volatile my_logl) (long double) = argc ? logl : dummy;
162 /* This test fails on OSF/1 5.1. */
166 if (!(gy + gy == gy))
169 /* This test fails on NetBSD 9.0. */
171 const long double TWO_LDBL_MANT_DIG = /* 2^LDBL_MANT_DIG */
172 (long double) (1U << ((LDBL_MANT_DIG - 1) / 5))
173 * (long double) (1U << ((LDBL_MANT_DIG - 1 + 1) / 5))
174 * (long double) (1U << ((LDBL_MANT_DIG - 1 + 2) / 5))
175 * (long double) (1U << ((LDBL_MANT_DIG - 1 + 3) / 5))
176 * (long double) (1U << ((LDBL_MANT_DIG - 1 + 4) / 5));
177 long double x = 16.981137113807045L;
178 long double err = (my_logl (x) + my_logl (1.0L / x)) * TWO_LDBL_MANT_DIG;
179 if (!(err >= -100.0L && err <= 100.0L))
186 [gl_cv_func_logl_works=yes],
187 [gl_cv_func_logl_works=no],
189 # Guess yes on glibc systems.
190 *-gnu* | gnu*) gl_cv_func_logl_works="guessing yes" ;;
191 # Guess yes on musl systems.
192 *-musl*) gl_cv_func_logl_works="guessing yes" ;;
193 # Guess yes on native Windows.
194 mingw*) gl_cv_func_logl_works="guessing yes" ;;
195 # If we don't know, obey --enable-cross-guesses.
196 *) gl_cv_func_logl_works="$gl_cross_guess_normal" ;;