verify: new macro 'assume'
[gnulib.git] / modules / sinl
1 Description:
2 sinl() function: sine function with long double argument.
3
4 Files:
5 lib/sinl.c
6 lib/trigl.h
7 lib/sincosl.c
8 lib/trigl.c
9 m4/sinl.m4
10
11 Depends-on:
12 math
13 extensions
14 sin             [test $HAVE_SINL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
15 float           [test $HAVE_SINL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
16 isnanl          [test $HAVE_SINL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
17 floor           [test $HAVE_SINL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
18 floorl          [test $HAVE_SINL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
19
20 configure.ac:
21 gl_FUNC_SINL
22 if test $HAVE_SINL = 0; then
23   AC_LIBOBJ([sinl])
24   if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0; then
25     AC_LIBOBJ([sincosl])
26     AC_LIBOBJ([trigl])
27   fi
28 fi
29 gl_MATH_MODULE_INDICATOR([sinl])
30
31 Makefile.am:
32
33 Include:
34 <math.h>
35
36 Link:
37 $(SINL_LIBM)
38
39 License:
40 LGPL
41
42 Maintainer:
43 Paolo Bonzini