maint: update copyright
[gnulib.git] / m4 / roundl.m4
1 # roundl.m4 serial 15
2 dnl Copyright (C) 2007, 2009-2014 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.
6
7 AC_DEFUN([gl_FUNC_ROUNDL],
8 [
9   m4_divert_text([DEFAULTS], [gl_roundl_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
12
13   dnl Persuade glibc <math.h> to declare roundl().
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15
16   gl_CHECK_MATH_LIB([ROUNDL_LIBM], [x = roundl (x);],
17     [extern
18      #ifdef __cplusplus
19      "C"
20      #endif
21      long double roundl (long double);
22     ])
23   if test "$ROUNDL_LIBM" != missing; then
24     HAVE_ROUNDL=1
25     dnl Also check whether it's declared.
26     dnl IRIX 6.5 has roundl() in libm but doesn't declare it in <math.h>.
27     AC_CHECK_DECLS([roundl], , [HAVE_DECL_ROUNDL=0], [[#include <math.h>]])
28
29     m4_ifdef([gl_FUNC_ROUNDL_IEEE], [
30       if test $gl_roundl_required = ieee && test $REPLACE_ROUNDL = 0; then
31         AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
32         AC_CACHE_CHECK([whether roundl works according to ISO C 99 with IEC 60559],
33           [gl_cv_func_roundl_ieee],
34           [
35             save_LIBS="$LIBS"
36             LIBS="$LIBS $ROUNDL_LIBM"
37             AC_RUN_IFELSE(
38               [AC_LANG_SOURCE([[
39 #ifndef __NO_MATH_INLINES
40 # define __NO_MATH_INLINES 1 /* for glibc */
41 #endif
42 #include <math.h>
43 extern
44 #ifdef __cplusplus
45 "C"
46 #endif
47 long double roundl (long double);
48 ]gl_LONG_DOUBLE_MINUS_ZERO_CODE[
49 ]gl_LONG_DOUBLE_SIGNBIT_CODE[
50 static long double dummy (long double f) { return 0; }
51 int main (int argc, char *argv[])
52 {
53   long double (*my_roundl) (long double) = argc ? roundl : dummy;
54   int result = 0;
55   /* Test whether roundl (-0.0L) is -0.0L.  */
56   if (signbitl (minus_zerol) && !signbitl (my_roundl (minus_zerol)))
57     result |= 1;
58   /* Test whether roundl (-0.3L) is -0.0L.  */
59   if (signbitl (-0.3L) && !signbitl (my_roundl (-0.3L)))
60     result |= 2;
61   return result;
62 }
63               ]])],
64               [gl_cv_func_roundl_ieee=yes],
65               [gl_cv_func_roundl_ieee=no],
66               [case "$host_os" in
67                          # Guess yes on glibc systems.
68                  *-gnu*) gl_cv_func_roundl_ieee="guessing yes" ;;
69                          # If we don't know, assume the worst.
70                  *)      gl_cv_func_roundl_ieee="guessing no" ;;
71                esac
72               ])
73             LIBS="$save_LIBS"
74           ])
75         case "$gl_cv_func_roundl_ieee" in
76           *yes) ;;
77           *) REPLACE_ROUNDL=1 ;;
78         esac
79       fi
80     ])
81   else
82     HAVE_ROUNDL=0
83     HAVE_DECL_ROUNDL=0
84   fi
85   if test $HAVE_ROUNDL = 0 || test $REPLACE_ROUNDL = 1; then
86     dnl Find libraries needed to link lib/roundl.c.
87     if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1; then
88       AC_REQUIRE([gl_FUNC_ROUND])
89       ROUNDL_LIBM="$ROUND_LIBM"
90     else
91       AC_CHECK_DECLS([ceill, floorl], , , [[#include <math.h>]])
92       if test "$ac_cv_have_decl_floorl" = yes \
93          && test "$ac_cv_have_decl_ceill" = yes; then
94         gl_FUNC_FLOORL_LIBS
95         gl_FUNC_CEILL_LIBS
96         if test "$FLOORL_LIBM" != '?' && test "$CEILL_LIBM" != '?'; then
97           AC_DEFINE([HAVE_FLOORL_AND_CEILL], [1],
98             [Define if the both the floorl() and ceill() functions exist.])
99           ROUNDL_LIBM=
100           dnl Append $FLOORL_LIBM to ROUNDL_LIBM, avoiding gratuitous duplicates.
101           case " $ROUNDL_LIBM " in
102             *" $FLOORL_LIBM "*) ;;
103             *) ROUNDL_LIBM="$ROUNDL_LIBM $FLOORL_LIBM" ;;
104           esac
105           dnl Append $CEILL_LIBM to ROUNDL_LIBM, avoiding gratuitous duplicates.
106           case " $ROUNDL_LIBM " in
107             *" $CEILL_LIBM "*) ;;
108             *) ROUNDL_LIBM="$ROUNDL_LIBM $CEILL_LIBM" ;;
109           esac
110         else
111           ROUNDL_LIBM=
112         fi
113       else
114         ROUNDL_LIBM=
115       fi
116     fi
117   fi
118   AC_SUBST([ROUNDL_LIBM])
119 ])