Expand range of versions of glibc for which _GNU_SOURCE is needed to get crypt.
[gnulib.git] / modules / mkfifoat
1 Description:
2 mkfifoat() and mknodat(): create named FIFOs relative to a directory
3
4 Files:
5 lib/mkfifoat.c
6 lib/mknodat.c
7 m4/mkfifoat.m4
8
9 Depends-on:
10 sys_stat
11 extensions
12 fcntl-h
13 mkfifo          [test $HAVE_MKFIFOAT = 0]
14 mknod           [test $HAVE_MKNODAT = 0]
15 openat          [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
16
17 configure.ac:
18 gl_FUNC_MKFIFOAT
19 if test $HAVE_MKFIFOAT = 0; then
20   AC_LIBOBJ([mkfifoat])
21 fi
22 if test $HAVE_MKNODAT = 0; then
23   AC_LIBOBJ([mknodat])
24 fi
25 gl_UNISTD_MODULE_INDICATOR([mkfifoat])
26 gl_UNISTD_MODULE_INDICATOR([mknodat])
27
28 Makefile.am:
29
30 Include:
31 <fcntl.h>
32 <sys/stat.h>
33
34 License:
35 GPL
36
37 Maintainer:
38 Jim Meyering, Eric Blake