Mercurial > hg > octave-kai > gnulib-hg
annotate modules/lseek @ 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 | 16f47458947e |
children | 6a9ea5d7b466 |
rev | line source |
---|---|
8872 | 1 Description: |
2 lseek() function: Reposition a file descriptor. | |
3 | |
4 Files: | |
5 lib/lseek.c | |
6 m4/lseek.m4 | |
7 | |
8 Depends-on: | |
9 unistd | |
15474
51231c56c0a1
Add dependencies to the 'largefile' module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15026
diff
changeset
|
10 largefile |
15752
b86e9061a6d0
New module 'msvc-nothrow'. Makes _get_osfhandle safe on MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15474
diff
changeset
|
11 msvc-nothrow [test $REPLACE_LSEEK = 1] |
15781 | 12 fstat [test $REPLACE_LSEEK = 1] |
8872 | 13 |
14 configure.ac: | |
15 gl_FUNC_LSEEK | |
15026
a5ed10e5034d
lseek: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9104
diff
changeset
|
16 if test $REPLACE_LSEEK = 1; then |
a5ed10e5034d
lseek: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9104
diff
changeset
|
17 AC_LIBOBJ([lseek]) |
a5ed10e5034d
lseek: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9104
diff
changeset
|
18 fi |
8872 | 19 gl_UNISTD_MODULE_INDICATOR([lseek]) |
20 | |
21 Makefile.am: | |
22 | |
23 Include: | |
24 <unistd.h> | |
25 | |
26 License: | |
9104
142022763349
Use the synonymous term "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents:
8872
diff
changeset
|
27 LGPLv2+ |
8872 | 28 |
29 Maintainer: | |
30 Eric Blake |