2 dnl Copyright (C) 2012-2017 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 (*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*) gl_cv_func_cbrtl_ieee="guessing yes" ;;
77 # Guess yes on native Windows.
78 mingw*) gl_cv_func_cbrtl_ieee="guessing yes" ;;
79 # If we don't know, assume the worst.
80 *) gl_cv_func_cbrtl_ieee="guessing no" ;;
85 case "$gl_cv_func_cbrtl_ieee" in
95 if test $HAVE_CBRTL = 0 || test $REPLACE_CBRTL = 1; then
96 dnl Find libraries needed to link lib/cbrtl.c.
97 if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
98 CBRTL_LIBM="$CBRT_LIBM"
100 AC_REQUIRE([gl_FUNC_FREXPL])
101 AC_REQUIRE([gl_FUNC_LDEXPL])
103 dnl Append $FREXPL_LIBM to CBRTL_LIBM, avoiding gratuitous duplicates.
104 case " $CBRTL_LIBM " in
105 *" $FREXPL_LIBM "*) ;;
106 *) CBRTL_LIBM="$CBRTL_LIBM $FREXPL_LIBM" ;;
108 dnl Append $LDEXPL_LIBM to CBRTL_LIBM, avoiding gratuitous duplicates.
109 case " $CBRTL_LIBM " in
110 *" $LDEXPL_LIBM "*) ;;
111 *) CBRTL_LIBM="$CBRTL_LIBM $LDEXPL_LIBM" ;;
115 AC_SUBST([CBRTL_LIBM])
118 dnl Test whether cbrtl() works.
119 dnl On OpenBSD 5.1/SPARC, cbrtl(16.0L) is = 1.2599...
120 AC_DEFUN([gl_FUNC_CBRTL_WORKS],
122 AC_REQUIRE([AC_PROG_CC])
123 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
124 AC_CACHE_CHECK([whether cbrtl works], [gl_cv_func_cbrtl_works],
133 long double cbrtl (long double);
134 volatile long double x;
145 [gl_cv_func_cbrtl_works=yes],
146 [gl_cv_func_cbrtl_works=no],
148 openbsd*) gl_cv_func_cbrtl_works="guessing no";;
149 # Guess yes on native Windows.
150 mingw*) gl_cv_func_cbrtl_works="guessing yes";;
151 *) gl_cv_func_cbrtl_works="guessing yes";;