From: Michael Orlitzky Date: Fri, 2 Mar 2018 21:05:44 +0000 (-0500) Subject: configure.ac: fix header name sys/libacl.h -> acl/libacl.h. X-Git-Tag: v0.3.0~1 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=3149daa9c8f443bdb9dc086316c130046ec852cf configure.ac: fix header name sys/libacl.h -> acl/libacl.h. --- diff --git a/configure.ac b/configure.ac index 26b7ca2..bd51920 100644 --- a/configure.ac +++ b/configure.ac @@ -15,8 +15,8 @@ AC_HEADER_STDBOOL # stdbool.h AC_HEADER_STDC # stdlib.h string.h (implied: errno.h limits.h stdio.h) # Check for header files not covered by the predefined macros above. -AC_CHECK_HEADERS([ fcntl.h getopt.h libgen.h limits.h linux/xattr.h ]) -AC_CHECK_HEADERS([ sys/acl.h sys/libacl.h unistd.h ]) +AC_CHECK_HEADERS([ acl/libacl.h fcntl.h getopt.h libgen.h limits.h ]) +AC_CHECK_HEADERS([ linux/xattr.h sys/acl.h unistd.h ]) # We need openat() with O_NOFOLLOW from POSIX-2008. Without them, we # can't operate securely; I would rather refuse to be built.