Mercurial > hg > octave-kai > gnulib-hg
annotate modules/canonicalize @ 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 | 7d9297067a18 |
children |
rev | line source |
---|---|
5131 | 1 Description: |
2 Return the canonical absolute name of a given file. | |
3 | |
4 Files: | |
5 lib/canonicalize.h | |
6 lib/canonicalize.c | |
7 m4/canonicalize.m4 | |
12019
4e6951cd4f33
canonicalize, canonicalize-lgpl: honor // if distinct from /
Eric Blake <ebb9@byu.net>
parents:
12015
diff
changeset
|
8 m4/double-slash-root.m4 |
5131 | 9 |
10 Depends-on: | |
9227
484ada1ccebf
canonicalize: Avoid a false-positive cycle failure.
Jim Meyering <jim@meyering.net>
parents:
9169
diff
changeset
|
11 areadlink-with-size |
11941 | 12 errno |
12009
5905adc25666
canonicalize, canonicalize-lgpl: update module dependencies
Eric Blake <ebb9@byu.net>
parents:
11941
diff
changeset
|
13 extensions |
9227
484ada1ccebf
canonicalize: Avoid a false-positive cycle failure.
Jim Meyering <jim@meyering.net>
parents:
9169
diff
changeset
|
14 file-set |
484ada1ccebf
canonicalize: Avoid a false-positive cycle failure.
Jim Meyering <jim@meyering.net>
parents:
9169
diff
changeset
|
15 hash-triple |
12009
5905adc25666
canonicalize, canonicalize-lgpl: update module dependencies
Eric Blake <ebb9@byu.net>
parents:
11941
diff
changeset
|
16 lstat |
10750 | 17 memmove |
14734
0e1b87c3d416
canonicalize, canonicalize-lgpl: Avoid crash dialog on MacOS X.
Bruno Haible <bruno@clisp.org>
parents:
13073
diff
changeset
|
18 nocrash |
12009
5905adc25666
canonicalize, canonicalize-lgpl: update module dependencies
Eric Blake <ebb9@byu.net>
parents:
11941
diff
changeset
|
19 pathmax |
7581
45c727466eb8
Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7497
diff
changeset
|
20 sys_stat |
5131 | 21 xalloc |
22 xgetcwd | |
23 | |
24 configure.ac: | |
12009
5905adc25666
canonicalize, canonicalize-lgpl: update module dependencies
Eric Blake <ebb9@byu.net>
parents:
11941
diff
changeset
|
25 gl_FUNC_CANONICALIZE_FILENAME_MODE |
7798
d58de0c4e214
2007-01-08 Bruno Haible <bruno@clisp.org>
Bruno Haible <bruno@clisp.org>
parents:
7581
diff
changeset
|
26 gl_MODULE_INDICATOR([canonicalize]) |
13073
03de1efbfdd3
Resolve conflict between the two kinds of module indicators.
Bruno Haible <bruno@clisp.org>
parents:
12019
diff
changeset
|
27 gl_MODULE_INDICATOR_FOR_TESTS([canonicalize]) |
12015
9317d4a9ac96
canonicalize, canonicalize-lgpl: use <stdlib.h>
Eric Blake <ebb9@byu.net>
parents:
12012
diff
changeset
|
28 gl_STDLIB_MODULE_INDICATOR([canonicalize_file_name]) |
5131 | 29 |
30 Makefile.am: | |
15180
7d9297067a18
canonicalize: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14734
diff
changeset
|
31 lib_SOURCES += canonicalize.c |
5131 | 32 |
33 Include: | |
34 "canonicalize.h" | |
35 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5159
diff
changeset
|
36 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5159
diff
changeset
|
37 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5159
diff
changeset
|
38 |
5131 | 39 Maintainer: |
40 Jim Meyering |