Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/frexp-nolibm @ 17111:b8250ce33952
hash-pjw: relax license to LGPLv2+
* modules/hash-pjw (License): Relax, with consent of author.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 26 Sep 2012 20:12:57 -0700 |
parents | 00d1faea7e94 |
children |
rev | line source |
---|---|
9440 | 1 Description: |
2 frexp() function: split a double into its constituents, without requiring libm. | |
3 | |
4 Files: | |
5 lib/frexp.c | |
6 m4/frexp.m4 | |
7 | |
8 Depends-on: | |
9 math | |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
9646
diff
changeset
|
10 isnand-nolibm [test $gl_func_frexp_no_libm != yes] |
9440 | 11 |
12 configure.ac: | |
13 gl_FUNC_FREXP_NO_LIBM | |
14997
00d1faea7e94
frexp, frexp-nolibm: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
14 if test $gl_func_frexp_no_libm != yes; then |
00d1faea7e94
frexp, frexp-nolibm: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
15 AC_LIBOBJ([frexp]) |
00d1faea7e94
frexp, frexp-nolibm: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
16 fi |
9440 | 17 gl_MATH_MODULE_INDICATOR([frexp]) |
18 | |
19 Makefile.am: | |
20 | |
21 Include: | |
22 <math.h> | |
23 | |
24 License: | |
25 LGPL | |
26 | |
27 Maintainer: | |
28 Bruno Haible, Paolo Bonzini | |
29 |