Mercurial > hg > octave-kai > gnulib-hg
annotate modules/pipe-posix @ 14310:00537d144c48
New module 'iswblank'.
* lib/wctype.in.h (iswblank): Don't declare if GNULIB_ISWBLANK is 0.
* modules/iswblank: New file.
* modules/wctype-h (Files): Remove lib/iswblank.c.
(Makefile.am): Substitute GNULIB_ISWBLANK.
* m4/iswblank.m4: New file, partially extracted from m4/wctype_h.m4.
* m4/wctype_h.m4 (gl_WCTYPE_MODULE_INDICATOR): New macro.
(gl_WCTYPE_H_DEFAULTS): New macro.
(gl_WCTYPE_H): Require it. Remove iswblank related code.
* modules/iswblank-tests: New file.
* tests/test-iswblank.c: New file, extraced from tests/test-wctype-h.c.
* tests/test-wctype-h.c (main): Remove iswblank tests.
* tests/test-wctype-h-c++.cc: Guard the signature test of iswblank.
* doc/posix-functions/iswblank.texi: Mention module 'iswblank' instead
of 'wctype-h'.
* NEWS: Mention the change.
* modules/mbchar (Depends-on): Add iswblank.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 06 Feb 2011 22:07:24 +0100 |
parents | 29a686188651 |
children | 6645dea6c600 |
rev | line source |
---|---|
13923 | 1 Description: |
13925
29a686188651
pipe-posix: Make it work in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
13923
diff
changeset
|
2 pipe() function: Creation of a pipe. |
13923 | 3 |
4 Files: | |
13925
29a686188651
pipe-posix: Make it work in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
13923
diff
changeset
|
5 lib/pipe.c |
29a686188651
pipe-posix: Make it work in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
13923
diff
changeset
|
6 m4/pipe.m4 |
13923 | 7 |
8 Depends-on: | |
9 unistd | |
10 | |
11 configure.ac: | |
13925
29a686188651
pipe-posix: Make it work in C++ mode.
Bruno Haible <bruno@clisp.org>
parents:
13923
diff
changeset
|
12 gl_FUNC_PIPE |
13923 | 13 gl_UNISTD_MODULE_INDICATOR([pipe]) |
14 | |
15 Makefile.am: | |
16 | |
17 Include: | |
18 <unistd.h> | |
19 | |
20 License: | |
21 LGPLv2+ | |
22 | |
23 Maintainer: | |
24 Eric Blake |