Mercurial > hg > octave-kai > gnulib-hg
annotate modules/fseeko @ 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 | 2c1ba629f5d5 |
children | 6927d3a4e13a |
rev | line source |
---|---|
8708 | 1 Description: |
2 fseeko() function: Reposition a FILE stream. | |
3 | |
4 Files: | |
8868
90e71310a07f
Fix fseeko/ftello on cygwin 1.5.24.
Eric Blake <ebb9@byu.net>
parents:
8718
diff
changeset
|
5 lib/fseeko.c |
9980
2c1ba629f5d5
New private include file lib/stdio-impl.h.
Bruno Haible <bruno@clisp.org>
parents:
9770
diff
changeset
|
6 lib/stdio-impl.h |
8708 | 7 m4/fseeko.m4 |
8 | |
9 Depends-on: | |
9770
4e00098ae436
Ensure that fseeko is declared when possible.
Bruno Haible <bruno@clisp.org>
parents:
9536
diff
changeset
|
10 extensions |
8872 | 11 lseek |
8708 | 12 stdio |
13 | |
8718
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8708
diff
changeset
|
14 configure.ac-early: |
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8708
diff
changeset
|
15 AC_REQUIRE([AC_FUNC_FSEEKO]) |
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8708
diff
changeset
|
16 |
8708 | 17 configure.ac: |
18 gl_FUNC_FSEEKO | |
19 gl_STDIO_MODULE_INDICATOR([fseeko]) | |
20 | |
21 Makefile.am: | |
22 | |
23 Include: | |
24 <stdio.h> | |
25 | |
26 License: | |
9102
404dc8725caf
Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents:
8872
diff
changeset
|
27 LGPLv2+ |
8708 | 28 |
29 Maintainer: | |
30 Bruno Haible | |
31 |