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_CBRTL],
9 m4_divert_text([DEFAULTS], [gl_cbrtl_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
11 AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
12 AC_REQUIRE([gl_FUNC_CBRT])
14 dnl Persuade glibc <math.h> to declare cbrtl().
15 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
17 dnl Test whether cbrtl() exists. Assume that cbrtl(), if it exists, is
18 dnl defined in the same library as cbrt().
20 LIBS="$LIBS $CBRT_LIBM"
21 AC_CHECK_FUNCS([cbrtl])
23 if test $ac_cv_func_cbrtl = yes; then
24 CBRTL_LIBM="$CBRT_LIBM"
25 dnl Also check whether it's declared.
26 dnl IRIX 6.5 has cbrtl() in libm but doesn't declare it in <math.h>.
27 AC_CHECK_DECL([cbrtl], , [HAVE_DECL_CBRTL=0], [[#include <math.h>]])
30 LIBS="$LIBS $CBRTL_LIBM"
33 case "$gl_cv_func_cbrtl_works" in
38 m4_ifdef([gl_FUNC_CBRTL_IEEE], [
39 if test $gl_cbrtl_required = ieee && test $REPLACE_CBRTL = 0; then
40 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
41 AC_CACHE_CHECK([whether cbrtl works according to ISO C 99 with IEC 60559],
42 [gl_cv_func_cbrtl_ieee],
45 LIBS="$LIBS $CBRTL_LIBM"
48 #ifndef __NO_MATH_INLINES
49 # define __NO_MATH_INLINES 1 /* for glibc */
52 ]gl_LONG_DOUBLE_MINUS_ZERO_CODE[
53 ]gl_LONG_DOUBLE_SIGNBIT_CODE[
54 static long double dummy (long double x) { return 0; }
55 int main (int argc, char *argv[])
61 long double cbrtl (long double);
62 long double (* volatile my_cbrtl) (long double) = argc ? cbrtl : dummy;
65 This test fails on IRIX 6.5. */
66 f = my_cbrtl (minus_zerol);
67 if (!(f == 0.0L) || (signbitl (minus_zerol) && !signbitl (f)))
72 [gl_cv_func_cbrtl_ieee=yes],
73 [gl_cv_func_cbrtl_ieee=no],
75 # Guess yes on glibc systems.
76 *-gnu* | gnu*) gl_cv_func_cbrtl_ieee="guessing yes" ;;
77 # Guess yes on musl systems.
78 *-musl*) gl_cv_func_cbrtl_ieee="guessing yes" ;;
79 # Guess yes on native Windows.
80 mingw*) gl_cv_func_cbrtl_ieee="guessing yes" ;;
81 # If we don't know, obey --enable-cross-guesses.
82 *) gl_cv_func_cbrtl_ieee="$gl_cross_guess_normal" ;;
87 case "$gl_cv_func_cbrtl_ieee" in
97 if test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; then
98 dnl Find libraries needed to link lib/cbrtl.c.
99 if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
100 CBRTL_LIBM="$CBRT_LIBM"
102 AC_REQUIRE([gl_FUNC_FREXPL])
103 AC_REQUIRE([gl_FUNC_LDEXPL])
105 dnl Append $FREXPL_LIBM to CBRTL_LIBM, avoiding gratuitous duplicates.
106 case " $CBRTL_LIBM " in
107 *" $FREXPL_LIBM "*) ;;
108 *) CBRTL_LIBM="$CBRTL_LIBM $FREXPL_LIBM" ;;
110 dnl Append $LDEXPL_LIBM to CBRTL_LIBM, avoiding gratuitous duplicates.
111 case " $CBRTL_LIBM " in
112 *" $LDEXPL_LIBM "*) ;;
113 *) CBRTL_LIBM="$CBRTL_LIBM $LDEXPL_LIBM" ;;
117 AC_SUBST([CBRTL_LIBM])
120 dnl Test whether cbrtl() works.
121 dnl On OpenBSD 5.1/SPARC, cbrtl(16.0L) is = 1.2599...
122 AC_DEFUN([gl_FUNC_CBRTL_WORKS],
124 AC_REQUIRE([AC_PROG_CC])
125 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
126 AC_CACHE_CHECK([whether cbrtl works], [gl_cv_func_cbrtl_works],
135 long double cbrtl (long double);
136 volatile long double x;
147 [gl_cv_func_cbrtl_works=yes],
148 [gl_cv_func_cbrtl_works=no],
150 openbsd*) gl_cv_func_cbrtl_works="guessing no";;
151 # Guess yes on native Windows.
152 mingw*) gl_cv_func_cbrtl_works="guessing yes";;
153 *) gl_cv_func_cbrtl_works="guessing yes";;