Mercurial > hg > octave-kai > gnulib-hg
annotate modules/raise @ 15887:89c762414427
New module 'atanf'.
* lib/math.in.h (atanf): New declaration.
* lib/atanf.c: New file.
* m4/atanf.m4: New file.
* m4/math_h.m4 (gl_MATH_H): Test whether atanf is declared.
(gl_MATH_H_DEFAULTS): Initialize GNULIB_ATANF, HAVE_ATANF.
* modules/math (Makefile.am): Substitute GNULIB_ATANF, HAVE_ATANF.
* modules/atanf: New file.
* tests/test-math-c++.cc: Check the declaration of atanf.
* doc/posix-functions/atanf.texi: Mention the new module.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 08 Oct 2011 23:55:44 +0200 |
parents | 51a803e5cfdc |
children |
rev | line source |
---|---|
5141 | 1 Description: |
2 Send a signal to the executing process. | |
3 | |
4 Files: | |
5 lib/raise.c | |
15755 | 6 m4/raise.m4 |
5141 | 7 |
8 Depends-on: | |
15758
51a803e5cfdc
signal-h: Rename from signal.
Bruno Haible <bruno@clisp.org>
parents:
15755
diff
changeset
|
9 signal-h |
15755 | 10 msvc-inval [test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1] |
5141 | 11 |
12 configure.ac: | |
15755 | 13 gl_FUNC_RAISE |
14 if test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1; then | |
15 AC_LIBOBJ([raise]) | |
16 gl_PREREQ_RAISE | |
17 fi | |
18 gl_SIGNAL_MODULE_INDICATOR([raise]) | |
5141 | 19 |
20 Makefile.am: | |
21 | |
22 Include: | |
10752 | 23 <signal.h> |
5141 | 24 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5141
diff
changeset
|
25 License: |
10576 | 26 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5141
diff
changeset
|
27 |
5141 | 28 Maintainer: |
15755 | 29 Jim Meyering, Bruno Haible |
5141 | 30 |