1Description:
2log10l() function: base 10 logarithmic function.
3
4Files:
5lib/log10l.c
6m4/log10l.m4
7
8Depends-on:
9math
10extensions
11log10           [{ test $HAVE_LOG10L = 0 || test $REPLACE_LOG10L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
12float           [{ test $HAVE_LOG10L = 0 || test $REPLACE_LOG10L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
13logl            [{ test $HAVE_LOG10L = 0 || test $REPLACE_LOG10L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
14
15configure.ac:
16gl_FUNC_LOG10L
17if test $HAVE_LOG10L = 0 || test $REPLACE_LOG10L = 1; then
18  AC_LIBOBJ([log10l])
19fi
20gl_MATH_MODULE_INDICATOR([log10l])
21
22Makefile.am:
23
24Include:
25<math.h>
26
27Link:
28$(LOG10L_LIBM)
29
30License:
31LGPL
32
33Maintainer:
34Bruno Haible
35