Mercurial > hg > octave-shane > gnulib-hg
annotate modules/faccessat @ 17267:ee4cb5937493
unicodeio: depend on stdio, not ignore-value
* lib/unicodeio.c: Do not include ignore-value.h.
(fwrite_success_callback): Use plain fwrite, not ignore_value + fwrite.
* modules/unicodeio (Depends-on): Depend on stdio, not ignore-value.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 04 Jan 2013 01:55:52 +0000 |
parents | af797cb33018 |
children |
rev | line source |
---|---|
11945 | 1 Description: |
2 faccessat() function: check user's permissions for a file. | |
3 | |
4 Files: | |
5 lib/faccessat.c | |
16033
917610de47d7
New modules 'at-internal', 'openat-h', split off from module 'openat'.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
6 lib/at-func.c |
11945 | 7 m4/faccessat.m4 |
8 | |
9 Depends-on: | |
16063
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
10 unistd |
11945 | 11 extensions |
16063
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
12 at-internal [test $HAVE_FACCESSAT = 0] |
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
13 dosname [test $HAVE_FACCESSAT = 0] |
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
14 errno [test $HAVE_FACCESSAT = 0] |
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
15 fchdir [test $HAVE_FACCESSAT = 0] |
16105
a2d45c112907
Depend on module fcntl-h when AT_FDCWD is used.
Bruno Haible <bruno@clisp.org>
parents:
16063
diff
changeset
|
16 fcntl-h [test $HAVE_FACCESSAT = 0] |
16063
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
17 openat-die [test $HAVE_FACCESSAT = 0] |
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
18 openat-h [test $HAVE_FACCESSAT = 0] |
c3b6b5b6bc32
More conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
16062
diff
changeset
|
19 save-cwd [test $HAVE_FACCESSAT = 0] |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
12298
diff
changeset
|
20 euidaccess [test $HAVE_FACCESSAT = 0] |
11945 | 21 |
22 configure.ac: | |
12298
6cb1877033fc
better AC_REQUIRE expanded-before-required-warning avoidance
Jim Meyering <meyering@redhat.com>
parents:
12296
diff
changeset
|
23 gl_FUNC_FACCESSAT |
16062
d0e219cc1e43
faccessat: Move AC_LIBOBJ invocation to module description.
Bruno Haible <bruno@clisp.org>
parents:
16033
diff
changeset
|
24 if test $HAVE_FACCESSAT = 0; then |
d0e219cc1e43
faccessat: Move AC_LIBOBJ invocation to module description.
Bruno Haible <bruno@clisp.org>
parents:
16033
diff
changeset
|
25 AC_LIBOBJ([faccessat]) |
d0e219cc1e43
faccessat: Move AC_LIBOBJ invocation to module description.
Bruno Haible <bruno@clisp.org>
parents:
16033
diff
changeset
|
26 gl_PREREQ_FACCESSAT |
d0e219cc1e43
faccessat: Move AC_LIBOBJ invocation to module description.
Bruno Haible <bruno@clisp.org>
parents:
16033
diff
changeset
|
27 fi |
11969
25d12bf7e5bf
openat: provide more convenience names
Eric Blake <ebb9@byu.net>
parents:
11945
diff
changeset
|
28 gl_MODULE_INDICATOR([faccessat]) |
11945 | 29 gl_UNISTD_MODULE_INDICATOR([faccessat]) |
30 | |
31 Makefile.am: | |
32 | |
33 Include: | |
34 <fcntl.h> | |
35 <unistd.h> | |
36 | |
37 Link: | |
38 $(LIB_EACCESS) | |
39 | |
40 License: | |
41 GPL | |
42 | |
43 Maintainer: | |
44 Jim Meyering, Eric Blake |