Mercurial > hg > octave-jordi > gnulib-hg
annotate modules/strdup @ 18070:d460ec17f09f
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Tue, 28 Jul 2015 13:57:32 -0700 |
parents | eabd04107c92 |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 strdup() function: duplicate a string. |
4110 | 3 |
16870
eabd04107c92
Revert "strdup: undeprecate, IRIX 6.5 needs it"
Simon Josefsson <simon@josefsson.org>
parents:
16868
diff
changeset
|
4 Status: |
eabd04107c92
Revert "strdup: undeprecate, IRIX 6.5 needs it"
Simon Josefsson <simon@josefsson.org>
parents:
16868
diff
changeset
|
5 obsolete |
eabd04107c92
Revert "strdup: undeprecate, IRIX 6.5 needs it"
Simon Josefsson <simon@josefsson.org>
parents:
16868
diff
changeset
|
6 |
eabd04107c92
Revert "strdup: undeprecate, IRIX 6.5 needs it"
Simon Josefsson <simon@josefsson.org>
parents:
16868
diff
changeset
|
7 Notice: |
eabd04107c92
Revert "strdup: undeprecate, IRIX 6.5 needs it"
Simon Josefsson <simon@josefsson.org>
parents:
16868
diff
changeset
|
8 This module is obsolete. But you may want to use the strdup-posix module. |
eabd04107c92
Revert "strdup: undeprecate, IRIX 6.5 needs it"
Simon Josefsson <simon@josefsson.org>
parents:
16868
diff
changeset
|
9 |
4110 | 10 Files: |
11 lib/strdup.c | |
12 m4/strdup.m4 | |
13 | |
14 Depends-on: | |
7944
a1d177cd9523
* doc/gnulib-tool.texi (Initial import): Update to match current
Paul Eggert <eggert@cs.ucla.edu>
parents:
7497
diff
changeset
|
15 string |
4110 | 16 |
17 configure.ac: | |
18 gl_FUNC_STRDUP | |
15104
037e4c930d72
strdup, strdup-posix: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10755
diff
changeset
|
19 if test $ac_cv_func_strdup = no; then |
037e4c930d72
strdup, strdup-posix: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10755
diff
changeset
|
20 AC_LIBOBJ([strdup]) |
037e4c930d72
strdup, strdup-posix: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10755
diff
changeset
|
21 gl_PREREQ_STRDUP |
037e4c930d72
strdup, strdup-posix: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10755
diff
changeset
|
22 fi |
8054
aa8abb5db935
Enforce the use of gnulib modules for unportable <string.h> functions.
Bruno Haible <bruno@clisp.org>
parents:
7944
diff
changeset
|
23 gl_STRING_MODULE_INDICATOR([strdup]) |
4110 | 24 |
25 Makefile.am: | |
26 | |
27 Include: | |
7944
a1d177cd9523
* doc/gnulib-tool.texi (Initial import): Update to match current
Paul Eggert <eggert@cs.ucla.edu>
parents:
7497
diff
changeset
|
28 <string.h> |
4110 | 29 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4964
diff
changeset
|
30 License: |
9102
404dc8725caf
Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents:
8054
diff
changeset
|
31 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4964
diff
changeset
|
32 |
4197 | 33 Maintainer: |
34 all, glibc |