Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/wcsdup @ 17259:bc20efc34eba octave-stable
branch to handle patches for Octave stable
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 03 Jan 2013 14:26:52 -0500 |
parents | 7f3083b176a2 |
children |
rev | line source |
---|---|
14295 | 1 Description: |
2 wcsdup() function: duplicate a wide string. | |
3 | |
4 Files: | |
5 lib/wcsdup.c | |
6 lib/wcsdup-impl.h | |
7 m4/wcsdup.m4 | |
8 | |
9 Depends-on: | |
10 wchar | |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14295
diff
changeset
|
11 wcslen [test $HAVE_WCSDUP = 0] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14295
diff
changeset
|
12 wmemcpy [test $HAVE_WCSDUP = 0] |
14295 | 13 |
14 configure.ac: | |
15 gl_FUNC_WCSDUP | |
15148
7f3083b176a2
wcsdup: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
16 if test $HAVE_WCSDUP = 0; then |
7f3083b176a2
wcsdup: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 AC_LIBOBJ([wcsdup]) |
7f3083b176a2
wcsdup: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
18 fi |
14295 | 19 gl_WCHAR_MODULE_INDICATOR([wcsdup]) |
20 | |
21 Makefile.am: | |
22 | |
23 Include: | |
24 <wchar.h> | |
25 | |
26 License: | |
27 LGPL | |
28 | |
29 Maintainer: | |
30 Bruno Haible |