Mercurial > hg > octave-kai > gnulib-hg
annotate modules/dtoastr @ 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 | d5718604e475 |
children |
rev | line source |
---|---|
14169
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
1 Description: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
2 Convert double to accurate string. |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
3 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
4 Files: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
5 lib/ftoastr.h |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
6 lib/ftoastr.c |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
7 lib/dtoastr.c |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
8 m4/c-strtod.m4 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
9 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
10 Depends-on: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
11 intprops |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
12 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
13 configure.ac: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
14 AC_REQUIRE([gl_C99_STRTOLD]) |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
15 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
16 Makefile.am: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
17 lib_SOURCES += dtoastr.c |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
18 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
19 Include: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
20 "ftoastr.h" |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
21 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
22 License: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
23 GPL |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
24 |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
25 Maintainer: |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff
changeset
|
26 Paul Eggert |