Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/wcrtomb @ 15332:c762e3063952
dtotimespec: new module
* lib/timespec.h (dtotimespec): New decl.
* lib/dtotimespec.c, modules/dtotimespec: New files.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Thu, 30 Jun 2011 15:14:25 -0700 |
parents | 3a6cc9531119 |
children |
rev | line source |
---|---|
10936 | 1 Description: |
2 wcrtomb() function: convert wide character to multibyte character. | |
3 | |
4 Files: | |
5 lib/wcrtomb.c | |
6 m4/wcrtomb.m4 | |
11527
4fe203c3f828
Replace wcrtomb, wcsrtombs, wcsnrtombs if mbstate_t has to be replaced.
Bruno Haible <bruno@clisp.org>
parents:
10968
diff
changeset
|
7 m4/mbrtowc.m4 |
10936 | 8 m4/mbstate_t.m4 |
10939
4ee0271437dd
Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
10936
diff
changeset
|
9 m4/locale-fr.m4 |
4ee0271437dd
Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
10936
diff
changeset
|
10 m4/locale-ja.m4 |
4ee0271437dd
Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
10936
diff
changeset
|
11 m4/locale-zh.m4 |
4ee0271437dd
Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
Bruno Haible <bruno@clisp.org>
parents:
10936
diff
changeset
|
12 m4/codeset.m4 |
10936 | 13 |
14 Depends-on: | |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
12499
diff
changeset
|
15 wchar |
12499
9deb67d8d0d7
Add missing dependencies to 'extensions' module.
Bruno Haible <bruno@clisp.org>
parents:
11527
diff
changeset
|
16 extensions |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
12499
diff
changeset
|
17 mbsinit [test $HAVE_WCRTOMB = 0 || test $REPLACE_WCRTOMB = 1] |
10936 | 18 |
19 configure.ac: | |
20 gl_FUNC_WCRTOMB | |
15140
3a6cc9531119
wcrtomb: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
21 if test $HAVE_WCRTOMB = 0 || test $REPLACE_WCRTOMB = 1; then |
3a6cc9531119
wcrtomb: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
22 AC_LIBOBJ([wcrtomb]) |
3a6cc9531119
wcrtomb: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
23 gl_PREREQ_WCRTOMB |
3a6cc9531119
wcrtomb: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
24 fi |
10936 | 25 gl_WCHAR_MODULE_INDICATOR([wcrtomb]) |
26 | |
27 Makefile.am: | |
28 | |
29 Include: | |
30 <wchar.h> | |
31 | |
32 License: | |
10968
2692e4e28041
Relicense regex dependencies under LGPLv2+.
Bruno Haible <bruno@clisp.org>
parents:
10939
diff
changeset
|
33 LGPLv2+ |
10936 | 34 |
35 Maintainer: | |
36 Bruno Haible | |
37 |