* build-aux/bootstrap (slurp): Remove obsolescent gettext.m4 patch.
[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 getcwd-lgpl      [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
20 openat           [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
21 link             [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
22 link-follow      [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
23 lstat            [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
24 same-inode       [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
25 save-cwd         [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
26 symlink          [test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1]
27
28 configure.ac:
29 gl_FUNC_LINKAT
30 if test $HAVE_LINKAT = 0 || test $REPLACE_LINKAT = 1; then
31   AC_LIBOBJ([linkat])
32 fi
33 if test $HAVE_LINKAT = 0; then
34   AC_LIBOBJ([at-func2])
35 fi
36 gl_UNISTD_MODULE_INDICATOR([linkat])
37
38 Makefile.am:
39
40 Include:
41 <fcntl.h>
42 <unistd.h>
43
44 License:
45 GPL
46
47 Maintainer:
48 Jim Meyering, Eric Blake