Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/lstat @ 15474:51231c56c0a1
Add dependencies to the 'largefile' module.
* modules/fopen (Depends-on): Add 'largefile'.
* modules/freopen (Depends-on): Likewise.
* modules/fseeko (Depends-on): Likewise.
* modules/ftello (Depends-on): Likewise.
* modules/glob (Depends-on): Likewise.
* modules/lseek (Depends-on): Likewise.
* modules/lstat (Depends-on): Likewise.
* modules/mkostemp (Depends-on): Likewise.
* modules/mkostemps (Depends-on): Likewise.
* modules/mkstemp (Depends-on): Likewise.
* modules/mkstemps (Depends-on): Likewise.
* modules/open (Depends-on): Likewise.
* modules/openat (Depends-on): Likewise.
* modules/pread (Depends-on): Likewise.
* modules/pwrite (Depends-on): Likewise.
* modules/scandir (Depends-on): Likewise.
* modules/stat (Depends-on): Likewise.
* modules/tmpfile (Depends-on): Likewise.
* m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Do not require AC_SYS_LARGEFILE,
since the containing module now depends on the largefile module.
* m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Likewise.
* doc/posix-functions/fopen.texi: Mention that the problem of 32-bit
off_t is fixed by gnulib.
* doc/posix-functions/freopen.texi: Likewise.
* doc/posix-functions/fseeko.texi: Likewise.
* doc/posix-functions/fstatat.texi: Likewise.
* doc/posix-functions/ftello.texi: Likewise.
* doc/posix-functions/glob.texi: Likewise.
* doc/posix-functions/lseek.texi: Likewise.
* doc/posix-functions/lstat.texi: Likewise.
* doc/posix-functions/mkstemp.texi: Likewise.
* doc/posix-functions/open.texi: Likewise.
* doc/posix-functions/openat.texi: Likewise.
* doc/posix-functions/pread.texi: Likewise.
* doc/posix-functions/pwrite.texi: Likewise.
* doc/posix-functions/scandir.texi: Likewise.
* doc/posix-functions/stat.texi: Likewise.
* doc/posix-functions/tmpfile.texi: Likewise.
* doc/glibc-functions/mkostemp.texi: Likewise.
* doc/glibc-functions/mkostemps.texi: Likewise.
* doc/glibc-functions/mkstemps.texi: Likewise.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 26 Jul 2011 02:48:03 +0200 |
parents | 475b62531f9b |
children |
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 | |
6 m4/lstat.m4 | |
7 | |
8 Depends-on: | |
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
|
9 sys_stat |
15474
51231c56c0a1
Add dependencies to the 'largefile' module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15027
diff
changeset
|
10 largefile |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14393
diff
changeset
|
11 dosname [test $REPLACE_LSTAT = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14393
diff
changeset
|
12 stat [test $REPLACE_LSTAT = 1] |
4110 | 13 |
14 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
|
15 gl_FUNC_LSTAT |
15027
475b62531f9b
lstat, openat: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
16 if test $REPLACE_LSTAT = 1; then |
475b62531f9b
lstat, openat: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 AC_LIBOBJ([lstat]) |
475b62531f9b
lstat, openat: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
18 gl_PREREQ_LSTAT |
475b62531f9b
lstat, openat: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
19 fi |
10688
989b49566cae
Move the lstat() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7581
diff
changeset
|
20 gl_SYS_STAT_MODULE_INDICATOR([lstat]) |
4110 | 21 |
22 Makefile.am: | |
23 | |
24 Include: | |
10688
989b49566cae
Move the lstat() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7581
diff
changeset
|
25 <sys/stat.h> |
4110 | 26 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
27 License: |
10733
76ce53d77ad7
* modules/lstat (License): Relicense: LGPL -> LGPLv2+.
Jim Meyering <meyering@redhat.com>
parents:
10688
diff
changeset
|
28 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
29 |
4197 | 30 Maintainer: |
31 Jim Meyering |