Add script for determining the set of symbols to export from a library.
[gnulib.git] / m4 / mkfifoat.m4
blobc48cbc2bc185e7a2df26c6dfeadc7130939953f4
1 # serial 3
2 # See if we need to provide mkfifoat/mknodat replacement.
4 dnl Copyright (C) 2009-2019 Free Software Foundation, Inc.
5 dnl This file is free software; the Free Software Foundation
6 dnl gives unlimited permission to copy and/or distribute it,
7 dnl with or without modifications, as long as this notice is preserved.
9 # Written by Eric Blake.
11 AC_DEFUN([gl_FUNC_MKFIFOAT],
13   AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
14   AC_REQUIRE([gl_FUNC_OPENAT])
15   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
16   AC_CHECK_FUNCS_ONCE([mkfifoat mknodat])
17   if test $ac_cv_func_mkfifoat = no; then
18     # No known system has mkfifoat but not mknodat
19     HAVE_MKFIFOAT=0
20     HAVE_MKNODAT=0
21   fi