unistr/u8-strstr tests: Avoid test failure with ASAN.
[gnulib.git] / modules / mkfifoat
blobce6e87ab58550f8691f976177a78bff62488290e
1 Description:
2 mkfifoat() function and mknodat() function: create named FIFOs relative to a
3 directory
5 Files:
6 lib/mkfifoat.c
7 lib/mknodat.c
8 lib/at-func.c
9 m4/mkfifoat.m4
11 Depends-on:
12 sys_stat
13 extensions
14 fcntl-h         [test $HAVE_MKFIFOAT = 0 || test $REPLACE_MKFIFOAT = 1 || test $HAVE_MKNODAT = 0 || test $REPLACE_MKNODAT = 1]
15 fstatat         [test $REPLACE_MKFIFOAT = 1 || test $REPLACE_MKNODAT = 1]
16 at-internal     [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
17 errno           [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
18 fchdir          [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
19 filename        [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
20 openat-die      [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
21 openat-h        [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
22 save-cwd        [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
23 mkfifo          [test $HAVE_MKFIFOAT = 0]
24 mknod           [test $HAVE_MKNODAT = 0]
26 configure.ac:
27 gl_FUNC_MKFIFOAT
28 gl_CONDITIONAL([GL_COND_OBJ_MKFIFOAT],
29                [test $HAVE_MKFIFOAT = 0 || test $REPLACE_MKFIFOAT = 1])
30 gl_CONDITIONAL([GL_COND_OBJ_MKNODAT],
31                [test $HAVE_MKNODAT = 0 || test $REPLACE_MKNODAT = 1])
32 gl_SYS_STAT_MODULE_INDICATOR([mkfifoat])
33 gl_SYS_STAT_MODULE_INDICATOR([mknodat])
35 Makefile.am:
36 if GL_COND_OBJ_MKFIFOAT
37 lib_SOURCES += mkfifoat.c
38 endif
39 if GL_COND_OBJ_MKNODAT
40 lib_SOURCES += mknodat.c
41 endif
43 Include:
44 <fcntl.h>
45 <sys/stat.h>
47 License:
48 GPL
50 Maintainer:
51 Jim Meyering, Eric Blake