2 dnl Copyright (C) 2007, 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_TRUNC],
9 m4_divert_text([DEFAULTS], [gl_trunc_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
11 dnl Persuade glibc <math.h> to declare trunc().
12 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
13 dnl Test whether trunc() is declared.
14 AC_CHECK_DECLS([trunc], , , [[#include <math.h>]])
15 if test "$ac_cv_have_decl_trunc" = yes; then
16 dnl Test whether trunc() can be used without libm.
20 [[#ifndef __NO_MATH_INLINES
21 # define __NO_MATH_INLINES 1 /* for glibc */
27 if test "$TRUNC_LIBM" = "?"; then
32 [[#ifndef __NO_MATH_INLINES
33 # define __NO_MATH_INLINES 1 /* for glibc */
41 if test "$TRUNC_LIBM" = "?"; then
44 m4_ifdef([gl_FUNC_TRUNC_IEEE], [
45 if test $gl_trunc_required = ieee && test $REPLACE_TRUNC = 0; then
46 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
47 AC_CACHE_CHECK([whether trunc works according to ISO C 99 with IEC 60559],
48 [gl_cv_func_trunc_ieee],
51 LIBS="$LIBS $TRUNC_LIBM"
54 #ifndef __NO_MATH_INLINES
55 # define __NO_MATH_INLINES 1 /* for glibc */
58 ]gl_DOUBLE_MINUS_ZERO_CODE[
59 ]gl_DOUBLE_SIGNBIT_CODE[
60 static double dummy (double f) { return 0; }
61 int main (int argc, char *argv[])
63 double (*my_trunc) (double) = argc ? trunc : dummy;
64 /* Test whether trunc (-0.0) is -0.0. */
65 if (signbitd (minus_zerod) && !signbitd (my_trunc (minus_zerod)))
70 [gl_cv_func_trunc_ieee=yes],
71 [gl_cv_func_trunc_ieee=no],
73 # Guess yes on glibc systems.
74 *-gnu* | gnu*) gl_cv_func_trunc_ieee="guessing yes" ;;
75 # Guess yes on native Windows.
76 mingw*) gl_cv_func_trunc_ieee="guessing yes" ;;
77 # If we don't know, assume the worst.
78 *) gl_cv_func_trunc_ieee="guessing no" ;;
83 case "$gl_cv_func_trunc_ieee" in
92 if test $HAVE_DECL_TRUNC = 0 || test $REPLACE_TRUNC = 1; then
93 dnl No libraries are needed to link lib/trunc.c.
96 AC_SUBST([TRUNC_LIBM])