]> gitweb.michael.orlitzky.com - apply-default-acl.git/blob - configure.ac
run-tests.sh: simplify the EXPECTED output in test 32.
[apply-default-acl.git] / configure.ac
1 AC_PREREQ([2.68])
2 AC_INIT([apply-default-acl], [0.3.1], [michael@orlitzky.com])
3 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
4 AC_CONFIG_FILES([Makefile src/Makefile])
5 AC_CONFIG_SRCDIR([src/apply-default-acl.c])
6 AC_CONFIG_MACRO_DIRS([m4])
7
8 # Checks for programs.
9 AC_PROG_CC
10 AM_PROG_AR
11
12 # Predefined header checks.
13 AC_HEADER_DIRENT # dirent.h
14 AC_HEADER_STAT # sys/stat.h
15 AC_HEADER_STDBOOL # stdbool.h
16 AC_HEADER_STDC # stdlib.h string.h (implied: errno.h limits.h stdio.h)
17
18 # Check for header files not covered by the predefined macros above.
19 AC_HEADER_REQUIRE(acl/libacl.h)
20 AC_HEADER_REQUIRE(fcntl.h)
21 AC_HEADER_REQUIRE(getopt.h)
22 AC_HEADER_REQUIRE(libgen.h)
23 AC_HEADER_REQUIRE(limits.h)
24 AC_HEADER_REQUIRE(linux/xattr.h)
25 AC_HEADER_REQUIRE(sys/acl.h)
26 AC_HEADER_REQUIRE(unistd.h)
27
28 # We need openat() with O_NOFOLLOW from POSIX-2008. Without them, we
29 # can't operate securely; I would rather refuse to be built.
30 AC_CHECK_FUNC(openat,
31 [],
32 AC_MSG_ERROR(missing required openat function))
33 AC_CHECK_DECLS([O_DIRECTORY],
34 [],
35 [AC_MSG_ERROR(missing required O_DIRECTORY flag in fcntl.h)],
36 [[#include <fcntl.h>]])
37 AC_CHECK_DECLS([O_NOFOLLOW],
38 [],
39 [AC_MSG_ERROR(missing required O_NOFOLLOW flag in fcntl.h)],
40 [[#include <fcntl.h>]])
41 AC_CHECK_DECLS([O_PATH],
42 [],
43 [AC_MSG_ERROR(missing required O_PATH flag in fcntl.h)],
44 [[#define _GNU_SOURCE
45 #include <fcntl.h>]])
46
47 LT_INIT
48 AC_OUTPUT