2 dnl Copyright (C) 2007-2008, 2010-2018 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_TRUNCL],
9 m4_divert_text([DEFAULTS], [gl_truncl_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
11 AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
12 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
14 dnl Persuade glibc <math.h> to declare truncl().
15 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
17 dnl Test whether truncl() is declared.
18 AC_CHECK_DECLS([truncl], , , [[#include <math.h>]])
19 if test "$ac_cv_have_decl_truncl" = yes; then
20 dnl Test whether truncl() can be used without libm.
24 [[#ifndef __NO_MATH_INLINES
25 # define __NO_MATH_INLINES 1 /* for glibc */
28 long double (*funcptr) (long double) = truncl;
30 [[x = funcptr(x) + truncl(x);]])],
32 if test "$TRUNCL_LIBM" = "?"; then
37 [[#ifndef __NO_MATH_INLINES
38 # define __NO_MATH_INLINES 1 /* for glibc */
41 long double (*funcptr) (long double) = truncl;
43 [[x = funcptr(x) + truncl(x);]])],
47 if test "$TRUNCL_LIBM" = "?"; then
50 dnl Test whether truncl() works. It crashes on OSF/1 4.0d.
52 LIBS="$LIBS $TRUNCL_LIBM"
53 AC_CACHE_CHECK([whether truncl works], [gl_cv_func_truncl_works],
64 [gl_cv_func_truncl_works=yes],
65 [gl_cv_func_truncl_works=no],
67 osf4*) gl_cv_func_truncl_works="guessing no" ;;
68 # Guess yes on native Windows.
69 mingw*) gl_cv_func_truncl_works="guessing yes" ;;
70 *) gl_cv_func_truncl_works="guessing yes" ;;
75 case "$gl_cv_func_truncl_works" in
77 *) REPLACE_TRUNCL=1 ;;
79 m4_ifdef([gl_FUNC_TRUNCL_IEEE], [
80 if test $gl_truncl_required = ieee && test $REPLACE_TRUNCL = 0; then
81 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
82 AC_CACHE_CHECK([whether truncl works according to ISO C 99 with IEC 60559],
83 [gl_cv_func_truncl_ieee],
86 LIBS="$LIBS $TRUNCL_LIBM"
89 #ifndef __NO_MATH_INLINES
90 # define __NO_MATH_INLINES 1 /* for glibc */
93 ]gl_LONG_DOUBLE_MINUS_ZERO_CODE[
94 ]gl_LONG_DOUBLE_SIGNBIT_CODE[
95 static long double dummy (long double f) { return 0; }
96 int main (int argc, char *argv[])
98 long double (*my_truncl) (long double) = argc ? truncl : dummy;
99 /* Test whether truncl (-0.3L) is -0.0L. */
100 if (signbitl (minus_zerol) && !signbitl (my_truncl (-0.3L)))
105 [gl_cv_func_truncl_ieee=yes],
106 [gl_cv_func_truncl_ieee=no],
108 # Guess yes on glibc systems.
109 *-gnu* | gnu*) gl_cv_func_truncl_ieee="guessing yes" ;;
110 # Guess yes on native Windows.
111 mingw*) gl_cv_func_truncl_ieee="guessing yes" ;;
112 # If we don't know, assume the worst.
113 *) gl_cv_func_truncl_ieee="guessing no" ;;
118 case "$gl_cv_func_truncl_ieee" in
120 *) REPLACE_TRUNCL=1 ;;
127 if test $HAVE_DECL_TRUNCL = 0 || test $REPLACE_TRUNCL = 1; then
128 dnl Find libraries needed to link lib/truncl.c.
129 if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
130 AC_REQUIRE([gl_FUNC_TRUNC])
131 TRUNCL_LIBM="$TRUNC_LIBM"
136 AC_SUBST([TRUNCL_LIBM])