Merge branch 'upstream' into stable
[gnulib.git] / m4 / logl.m4
1 # logl.m4 serial 3
2 dnl Copyright (C) 2010 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_LOGL],
8 [
9   AC_REQUIRE([gl_MATH_H_DEFAULTS])
10   dnl Persuade glibc <math.h> to declare logl().
11   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
12
13   LOGL_LIBM=
14   AC_CACHE_CHECK([whether logl() can be used without linking with libm],
15     [gl_cv_func_logl_no_libm],
16     [
17       AC_LINK_IFELSE(
18         [AC_LANG_PROGRAM(
19            [[#ifndef __NO_MATH_INLINES
20              # define __NO_MATH_INLINES 1 /* for glibc */
21              #endif
22              #include <math.h>
23              long double x;]],
24            [[return logl (x) > 1;]])],
25         [gl_cv_func_logl_no_libm=yes],
26         [gl_cv_func_logl_no_libm=no])
27     ])
28   if test $gl_cv_func_logl_no_libm = no; then
29     AC_CACHE_CHECK([whether logl() can be used with libm],
30       [gl_cv_func_logl_in_libm],
31       [
32         save_LIBS="$LIBS"
33         LIBS="$LIBS -lm"
34         AC_LINK_IFELSE(
35           [AC_LANG_PROGRAM(
36              [[#ifndef __NO_MATH_INLINES
37                # define __NO_MATH_INLINES 1 /* for glibc */
38                #endif
39                #include <math.h>
40                long double x;]],
41              [[return logl (x) > 1;]])],
42           [gl_cv_func_logl_in_libm=yes],
43           [gl_cv_func_logl_in_libm=no])
44         LIBS="$save_LIBS"
45       ])
46     if test $gl_cv_func_logl_in_libm = yes; then
47       LOGL_LIBM=-lm
48     fi
49   fi
50   if test $gl_cv_func_logl_no_libm = yes \
51      || test $gl_cv_func_logl_in_libm = yes; then
52     dnl Also check whether it's declared.
53     dnl MacOS X 10.3 has logl() in libc but doesn't declare it in <math.h>.
54     AC_CHECK_DECL([logl], , [HAVE_DECL_LOGL=0], [#include <math.h>])
55   else
56     HAVE_DECL_LOGL=0
57     HAVE_LOGL=0
58     AC_LIBOBJ([logl])
59     AC_REQUIRE([gl_FUNC_FREXPL])
60     AC_REQUIRE([gl_FUNC_ISNANL])
61     AC_REQUIRE([gl_FUNC_FLOORL])
62     dnl Append $FREXPL_LIBM to LOGL_LIBM, avoiding gratuitous duplicates.
63     case " $LOGL_LIBM " in
64       *" $FREXPL_LIBM "*) ;;
65       *) LOGL_LIBM="$LOGL_LIBM $FREXPL_LIBM" ;;
66     esac
67     dnl Append $ISNANL_LIBM to LOGL_LIBM, avoiding gratuitous duplicates.
68     case " $LOGL_LIBM " in
69       *" $ISNANL_LIBM "*) ;;
70       *) LOGL_LIBM="$LOGL_LIBM $ISNANL_LIBM" ;;
71     esac
72     dnl Append $FLOORL_LIBM to LOGL_LIBM, avoiding gratuitous duplicates.
73     case " $LOGL_LIBM " in
74       *" $FLOORL_LIBM "*) ;;
75       *) LOGL_LIBM="$LOGL_LIBM $FLOORL_LIBM" ;;
76     esac
77   fi
78   AC_SUBST([LOGL_LIBM])
79 ])