X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=configure.ac;h=c27901509063e3a5cb24f6d190ba834b5f1763aa;hb=40a0da32d5f91b416f45d8e66c4406774f3b6383;hp=2df766b6a77383d45bf588f811a0387c5641d8f7;hpb=d89f22c28473cd2e201500af0f970478105c632a;p=apply-default-acl.git diff --git a/configure.ac b/configure.ac index 2df766b..c279015 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([apply-default-acl], [0.0.3], [michael@orlitzky.com]) +AC_INIT([apply-default-acl], [0.0.6], [michael@orlitzky.com]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/apply-default-acl.c]) AC_CONFIG_FILES([Makefile src/Makefile]) @@ -10,12 +10,14 @@ AC_CONFIG_FILES([Makefile src/Makefile]) # Checks for programs. AC_PROG_CC -# Checks for header files. -AC_CHECK_HEADERS([limits.h stdlib.h string.h sys/acl.h unistd.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_HEADER_STDBOOL +# Predefined header checks. +AC_HEADER_STAT # sys/stat.h +AC_HEADER_STDBOOL # stdbool.h +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_OUTPUT