From: Michael Orlitzky Date: Fri, 2 Mar 2018 21:01:30 +0000 (-0500) Subject: configure.ac: remove check for the (not used) sys/types.h header. X-Git-Tag: v0.3.0~3 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=b1f9447809f7c7b35f6f8f24b33b1cd2be2e30fc configure.ac: remove check for the (not used) sys/types.h header. --- diff --git a/configure.ac b/configure.ac index 5b10ac6..cf5ccce 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ 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 sys/types.h unistd.h ]) +AC_CHECK_HEADERS([ sys/acl.h sys/libacl.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.