openat, fchmodat, fchownat, linkat, renameat: Fix dependencies.
[gnulib.git] / modules / linkat
1 Description:
2 linkat() function: create a hard link, relative to two directories
3
4 Files:
5 lib/at-func2.c
6 lib/linkat.c
7 m4/linkat.m4
8
9 Depends-on:
10 unistd
11 extensions
12 areadlink        [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
13 areadlinkat      [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
14 dirname-lgpl     [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
15 dosname          [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
16 errno            [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
17 fcntl-h          [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
18 filenamecat-lgpl [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
19 fstat            [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
20 fstatat          [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
21 getcwd-lgpl      [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
22 openat           [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
23 openat-die       [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
24 link             [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
25 link-follow      [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
26 lstat            [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
27 same-inode       [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
28 save-cwd         [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
29 symlink          [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
30
31 configure.ac:
32 gl_FUNC_LINKAT
33 if test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1; then
34   AC_LIBOBJ([linkat])
35 fi
36 if test $HAVE_LINKAT = 0; then
37   AC_LIBOBJ([at-func2])
38 fi
39 gl_UNISTD_MODULE_INDICATOR([linkat])
40
41 Makefile.am:
42
43 Include:
44 <fcntl.h>
45 <unistd.h>
46
47 License:
48 GPL
49
50 Maintainer:
51 Jim Meyering, Eric Blake