fchownat, renameat, unlinkat: Fix dependencies.
[gnulib.git] / modules / renameat
1 Description:
2 renameat() function: rename a file, relative to two directories
3
4 Files:
5 lib/at-func2.c
6 lib/renameat.c
7 m4/renameat.m4
8
9 Depends-on:
10 stdio
11 extensions
12 fcntl-h
13 dosname          [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
14 filenamecat-lgpl [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
15 fstat            [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
16 fstatat          [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
17 getcwd-lgpl      [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
18 openat           [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
19 openat-die       [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
20 rename           [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
21 same-inode       [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
22 save-cwd         [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
23
24 configure.ac:
25 gl_FUNC_RENAMEAT
26 if test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1; then
27   AC_LIBOBJ([renameat])
28 fi
29 if test $HAVE_RENAMEAT = 0; then
30   AC_LIBOBJ([at-func2])
31 fi
32 gl_STDIO_MODULE_INDICATOR([renameat])
33
34 Makefile.am:
35
36 Include:
37 <fcntl.h>
38 <stdio.h>
39
40 License:
41 GPL
42
43 Maintainer:
44 Jim Meyering, Eric Blake