Make the permissions type abstract
[haskell-directory.git] / configure.ac
1 AC_INIT([Haskell directory package], [1.0], [libraries@haskell.org], [directory])
2
3 # Safety check: Ensure that we are in the correct source directory.
4 AC_CONFIG_SRCDIR([include/HsDirectory.h])
5
6 AC_CONFIG_HEADERS([include/HsDirectoryConfig.h])
7
8 AC_ARG_WITH([cc],
9             [C compiler],
10             [CC=$withval])
11 AC_PROG_CC()
12
13 # check for specific header (.h) files that we are interested in
14 AC_CHECK_HEADERS([sys/types.h unistd.h sys/stat.h])
15
16 AC_OUTPUT