diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/frexpl | 27 | ||||
-rw-r--r-- | modules/math | 1 | ||||
-rw-r--r-- | modules/mathl | 4 |
3 files changed, 29 insertions, 3 deletions
diff --git a/modules/frexpl b/modules/frexpl new file mode 100644 index 0000000000..0bb8f586d8 --- /dev/null +++ b/modules/frexpl @@ -0,0 +1,27 @@ +Description: +frexpl() function: split a 'long double' into its constituents. + +Files: +lib/frexpl.c +lib/frexp.c +m4/frexpl.m4 + +Depends-on: +math +isnanl-nolibm + +configure.ac: +gl_FUNC_FREXPL +gl_MATH_MODULE_INDICATOR([frexpl]) + +Makefile.am: + +Include: +<math.h> + +License: +LGPL + +Maintainer: +Bruno Haible, Paolo Bonzini + diff --git a/modules/math b/modules/math index 7d265bdae7..288ab92a0d 100644 --- a/modules/math +++ b/modules/math @@ -22,6 +22,7 @@ math.h: math_.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''ABSOLUTE_MATH_H''@|$(ABSOLUTE_MATH_H)|g' \ -e 's|@''GNULIB_FREXP''@|$(GNULIB_FREXP)|g' \ + -e 's|@''GNULIB_FREXPL''@|$(GNULIB_FREXPL)|g' \ -e 's|@''GNULIB_MATHL''@|$(GNULIB_MATHL)|g' \ -e 's|@''HAVE_DECL_ACOSL''@|$(HAVE_DECL_ACOSL)|g' \ -e 's|@''HAVE_DECL_ASINL''@|$(HAVE_DECL_ASINL)|g' \ diff --git a/modules/mathl b/modules/mathl index 4a7c5953df..b8767b0f99 100644 --- a/modules/mathl +++ b/modules/mathl @@ -9,8 +9,6 @@ lib/ceill.c lib/cosl.c lib/expl.c lib/floorl.c -lib/frexpl.c -lib/frexp.c lib/ldexpl.c lib/logl.c lib/sincosl.c @@ -23,7 +21,7 @@ m4/mathl.m4 Depends-on: math -isnanl-nolibm +frexpl configure.ac: gl_FUNC_LONG_DOUBLE_MATH |