Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/lstat @ 5933:35504bd557fa
Remove stat module & update lstat.
* MODULES.html.sh (stat): Remove.
* MODULES.html: Regenerated.
* config/srclist.txt (GLIBC sources): Remove stat.
* lib/stat.c: Remove this file...
(slash_aware_lstat): ...moving this content and its support...
* lib/lstat.c (rpl_lstat): ...into here.
* lib/lstat.h: New file.
* m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
* m4/stat.m4: Remove this file.
* modules/lstat (Description): Correct function name.
(Files): Add "lstat.h".
(Depends-on): Remove stat, add xalloc, stat-macros.
* modules/stat: Remove this file.
(Include): Add "lstat.h", remove <sys/stat.h>.
author | Derek R. Price <derek@ximbiot.com> |
---|---|
date | Fri, 24 Jun 2005 14:53:03 +0000 |
parents | 6962b5c5069f |
children | 884bb4ba6eae |
rev | line source |
---|---|
4110 | 1 Description: |
5933
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5813
diff
changeset
|
2 lstat() function: return information about a file or symbolic link. |
4110 | 3 |
4 Files: | |
5 lib/lstat.c | |
5933
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5813
diff
changeset
|
6 lib/lstat.h |
4110 | 7 m4/lstat.m4 |
8 | |
9 Depends-on: | |
5933
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5813
diff
changeset
|
10 xalloc |
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5813
diff
changeset
|
11 stat-macros |
4110 | 12 |
13 configure.ac: | |
5016
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
4197
diff
changeset
|
14 gl_FUNC_LSTAT |
4110 | 15 |
16 Makefile.am: | |
17 | |
18 Include: | |
5933
35504bd557fa
Remove stat module & update lstat.
Derek R. Price <derek@ximbiot.com>
parents:
5813
diff
changeset
|
19 "lstat.h" |
4110 | 20 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
21 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
22 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
23 |
4197 | 24 Maintainer: |
25 Jim Meyering |