libc-config: Fix __GNUC_PREREQ macro.
[gnulib.git] / m4 / ceil.m4
blob72443a739c0b2f106e4d429c0141dd8d30865777
1 # ceil.m4 serial 10
2 dnl Copyright (C) 2007, 2009-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_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.
12   gl_FUNC_CEIL_LIBS
13   if test "$CEIL_LIBM" = "?"; then
14     CEIL_LIBM=
15   fi
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],
21         [
22           save_LIBS="$LIBS"
23           LIBS="$LIBS $CEIL_LIBM"
24           AC_RUN_IFELSE(
25             [AC_LANG_SOURCE([[
26 #ifndef __NO_MATH_INLINES
27 # define __NO_MATH_INLINES 1 /* for glibc */
28 #endif
29 #include <math.h>
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 (*my_ceil) (double) = argc ? ceil : dummy;
36   int result = 0;
37   /* Test whether ceil (-0.0) is -0.0.  */
38   if (signbitd (minus_zerod) && !signbitd (my_ceil (minus_zerod)))
39     result |= 1;
40   /* Test whether ceil (-0.3) is -0.0.  */
41   if (signbitd (-0.3) && !signbitd (my_ceil (-0.3)))
42     result |= 2;
43   return result;
45             ]])],
46             [gl_cv_func_ceil_ieee=yes],
47             [gl_cv_func_ceil_ieee=no],
48             [case "$host_os" in
49                        # Guess yes on glibc systems.
50                *-gnu*) gl_cv_func_ceil_ieee="guessing yes" ;;
51                        # Guess yes on native Windows.
52                mingw*) gl_cv_func_ceil_ieee="guessing yes" ;;
53                        # If we don't know, assume the worst.
54                *)      gl_cv_func_ceil_ieee="guessing no" ;;
55              esac
56             ])
57           LIBS="$save_LIBS"
58         ])
59       case "$gl_cv_func_ceil_ieee" in
60         *yes) ;;
61         *) REPLACE_CEIL=1 ;;
62       esac
63     fi
64   ])
65   if test $REPLACE_CEIL = 1; then
66     dnl No libraries are needed to link lib/ceil.c.
67     CEIL_LIBM=
68   fi
69   AC_SUBST([CEIL_LIBM])
72 # Determines the libraries needed to get the ceil() function.
73 # Sets CEIL_LIBM.
74 AC_DEFUN([gl_FUNC_CEIL_LIBS],
76   gl_CACHE_VAL_SILENT([gl_cv_func_ceil_libm], [
77     gl_cv_func_ceil_libm=?
78     AC_LINK_IFELSE(
79       [AC_LANG_PROGRAM(
80          [[#ifndef __NO_MATH_INLINES
81            # define __NO_MATH_INLINES 1 /* for glibc */
82            #endif
83            #include <math.h>
84            double x;]],
85          [[x = ceil(x);]])],
86       [gl_cv_func_ceil_libm=])
87     if test "$gl_cv_func_ceil_libm" = "?"; then
88       save_LIBS="$LIBS"
89       LIBS="$LIBS -lm"
90       AC_LINK_IFELSE(
91         [AC_LANG_PROGRAM(
92            [[#ifndef __NO_MATH_INLINES
93              # define __NO_MATH_INLINES 1 /* for glibc */
94              #endif
95              #include <math.h>
96              double x;]],
97            [[x = ceil(x);]])],
98         [gl_cv_func_ceil_libm="-lm"])
99       LIBS="$save_LIBS"
100     fi
101   ])
102   CEIL_LIBM="$gl_cv_func_ceil_libm"