Mercurial > hg > octave-kai > gnulib-hg
annotate modules/strpbrk @ 16023:dc33aa820898
New module 'fstatat', split off from module 'openat'.
* lib/openat.h (statat, lstatat): Enable only if GNULIB_FSTATAT is
defined.
* m4/fstatat.m4: New file. extracted from m4/openat.m4.
* m4/openat.m4 (gl_FUNC_OPENAT): Don't set GNULIB_FSTATAT. Don't invoke
gl_FUNC_FSTATAT.
(gl_FUNC_FSTATAT): Moved to m4/fstatat.m4.
* modules/fstatat: New file, extracted from modules/openat.
* modules/openat (Files): Remove lib/fstatat.c.
(Depends-on): Remove lstat.
(configure.ac): Remove AC_LIBOBJ of fstatat.
* modules/fstatat-tests: New file, extracted from modules/openat-tests.
* modules/openat-tests (Files): Remove tests/test-fstatat.c,
tests/test-lstat.h, tests/test-stat.h.
(Depends-on): Remove getcwd-lgpl.
(Makefile.am): Remove rules for test-fstatat.
* doc/posix-functions/fstatat.texi: Mention module 'fstatat' instead
of module 'openat'.
* NEWS: Mention the change.
* modules/getcwd (Depends-on): Add fstatat.
* modules/linkat (Depends-on): Likewise.
* modules/mkfifoat-tests (Depends-on): Likewise.
* modules/utimensat (Depends-on): Add fstatat. Remove openat.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Thu, 03 Nov 2011 12:03:53 +0100 |
parents | ca5461c4906c |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 strpbrk() function: search a string for any of a set of characters. |
4110 | 3 |
10756 | 4 Status: |
5 obsolete | |
6 | |
7 Notice: | |
8 This module is obsolete. | |
9 | |
4110 | 10 Files: |
11 lib/strpbrk.c | |
12 m4/strpbrk.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_STRPBRK | |
15108
ca5461c4906c
strpbrk: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10756
diff
changeset
|
19 if test $HAVE_STRPBRK = 0; then |
ca5461c4906c
strpbrk: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10756
diff
changeset
|
20 AC_LIBOBJ([strpbrk]) |
ca5461c4906c
strpbrk: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10756
diff
changeset
|
21 gl_PREREQ_STRPBRK |
ca5461c4906c
strpbrk: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10756
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([strpbrk]) |
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:
4197
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:
4197
diff
changeset
|
32 |
4197 | 33 Maintainer: |
34 Bruno Haible, glibc |