2 dnl Copyright (C) 2007, 2009-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_CEIL],
9 m4_divert_text([DEFAULTS], [gl_ceil_required=plain])
10 AC_REQUIRE([gl_MATH_H_DEFAULTS])
11 dnl Test whether ceil() can be used without libm.
13 if test "$CEIL_LIBM" = "?"; then
16 m4_ifdef([gl_FUNC_CEIL_IEEE], [
17 if test $gl_ceil_required = ieee && test $REPLACE_CEIL = 0; then
18 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
19 AC_CACHE_CHECK([whether ceil works according to ISO C 99 with IEC 60559],
20 [gl_cv_func_ceil_ieee],
23 LIBS="$LIBS $CEIL_LIBM"
26 #ifndef __NO_MATH_INLINES
27 # define __NO_MATH_INLINES 1 /* for glibc */
30 ]gl_DOUBLE_MINUS_ZERO_CODE[
31 ]gl_DOUBLE_SIGNBIT_CODE[
32 static double dummy (double f) { return 0; }
33 int main (int argc, char *argv[])
35 double (* volatile my_ceil) (double) = argc ? ceil : dummy;
37 /* Test whether ceil (-0.0) is -0.0. */
38 if (signbitd (minus_zerod) && !signbitd (my_ceil (minus_zerod)))
40 /* Test whether ceil (-0.3) is -0.0. */
41 if (signbitd (-0.3) && !signbitd (my_ceil (-0.3)))
46 [gl_cv_func_ceil_ieee=yes],
47 [gl_cv_func_ceil_ieee=no],
49 # Guess yes on glibc systems.
50 *-gnu* | gnu*) gl_cv_func_ceil_ieee="guessing yes" ;;
51 # Guess yes on musl systems.
52 *-musl*) gl_cv_func_ceil_ieee="guessing yes" ;;
53 # Guess yes on native Windows.
54 mingw*) gl_cv_func_ceil_ieee="guessing yes" ;;
55 # If we don't know, obey --enable-cross-guesses.
56 *) gl_cv_func_ceil_ieee="$gl_cross_guess_normal" ;;
61 case "$gl_cv_func_ceil_ieee" in
67 if test $REPLACE_CEIL = 1; then
68 dnl No libraries are needed to link lib/ceil.c.
74 # Determines the libraries needed to get the ceil() function.
76 AC_DEFUN([gl_FUNC_CEIL_LIBS],
78 gl_CACHE_VAL_SILENT([gl_cv_func_ceil_libm], [
79 gl_cv_func_ceil_libm=?
82 [[#ifndef __NO_MATH_INLINES
83 # define __NO_MATH_INLINES 1 /* for glibc */
86 double (*funcptr) (double) = ceil;
88 [[x = funcptr(x) + ceil(x);]])],
89 [gl_cv_func_ceil_libm=])
90 if test "$gl_cv_func_ceil_libm" = "?"; then
95 [[#ifndef __NO_MATH_INLINES
96 # define __NO_MATH_INLINES 1 /* for glibc */
99 double (*funcptr) (double) = ceil;
101 [[x = funcptr(x) + ceil(x);]])],
102 [gl_cv_func_ceil_libm="-lm"])
106 CEIL_LIBM="$gl_cv_func_ceil_libm"