gnulib-tool.py: Regenerate aclocal.m4 before using 'autoconf -t ...'.
[gnulib.git] / modules / chown
blobd3f2d1e10e35fffff7fad35f6cccf4fdc7bf344d
1 Description:
2 chown() function: change ownership of a file, following symlinks.
4 Files:
5 lib/chown.c
6 lib/fchown-stub.c
7 m4/chown.m4
9 Depends-on:
10 unistd
11 fstat           [test $HAVE_CHOWN = 0 || test $REPLACE_CHOWN = 1]
12 open            [test $HAVE_CHOWN = 0 || test $REPLACE_CHOWN = 1]
13 stat            [test $HAVE_CHOWN = 0 || test $REPLACE_CHOWN = 1]
14 stdbool         [test $HAVE_CHOWN = 0 || test $REPLACE_CHOWN = 1]
15 sys_stat        [test $HAVE_CHOWN = 0 || test $REPLACE_CHOWN = 1]
17 configure.ac:
18 gl_FUNC_CHOWN
19 gl_CONDITIONAL([GL_COND_OBJ_CHOWN],
20                [test $HAVE_CHOWN = 0 || test $REPLACE_CHOWN = 1])
21 gl_CONDITIONAL([GL_COND_OBJ_FCHOWN_STUB],
22                [test $REPLACE_CHOWN = 1 && test $ac_cv_func_fchown = no])
23 gl_UNISTD_MODULE_INDICATOR([chown])
25 Makefile.am:
26 if GL_COND_OBJ_CHOWN
27 lib_SOURCES += chown.c
28 endif
29 if GL_COND_OBJ_FCHOWN_STUB
30 lib_SOURCES += fchown-stub.c
31 endif
33 Include:
34 <unistd.h>
36 License:
37 LGPLv2+
39 Maintainer:
40 Jim Meyering