From: Michael Orlitzky Date: Mon, 26 Feb 2018 19:28:17 +0000 (-0500) Subject: configure.ac: add limits.h to the AC_CHECK_HEADERS list. X-Git-Tag: v0.1.0~3 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=f20847f2296271a8efab1f5013e3b96259a99dc6 configure.ac: add limits.h to the AC_CHECK_HEADERS list. --- diff --git a/configure.ac b/configure.ac index b3afe4a..dd028ff 100644 --- a/configure.ac +++ b/configure.ac @@ -18,8 +18,8 @@ AC_HEADER_STDC # stdlib.h string.h (implied: errno.h limits.h stdio.h) AC_TYPE_MODE_T # Check for header files not covered by the predefined macros above. -AC_CHECK_HEADERS([ fcntl.h ftw.h getopt.h libgen.h sys/acl.h sys/libacl.h ]) -AC_CHECK_HEADERS([ sys/types.h unistd.h ]) +AC_CHECK_HEADERS([ fcntl.h ftw.h getopt.h libgen.h limits.h sys/acl.h ]) +AC_CHECK_HEADERS([ sys/libacl.h sys/types.h unistd.h ]) LT_INIT