]> gitweb.michael.orlitzky.com - apply-default-acl.git/blob - configure.ac
Bump configure.ac to version 0.0.4.
[apply-default-acl.git] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.68])
5 AC_INIT([apply-default-acl], [0.0.4], [michael@orlitzky.com])
6 AM_INIT_AUTOMAKE
7 AC_CONFIG_SRCDIR([src/apply-default-acl.c])
8 AC_CONFIG_FILES([Makefile src/Makefile])
9
10 # Checks for programs.
11 AC_PROG_CC
12
13 # Checks for header files.
14 AC_CHECK_HEADERS([limits.h stdlib.h string.h sys/acl.h unistd.h])
15
16 # Checks for typedefs, structures, and compiler characteristics.
17 AC_HEADER_STDBOOL
18 AC_TYPE_MODE_T
19
20
21 AC_OUTPUT