1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(aescrypt.c)
3AC_CONFIG_HEADER(config.h)
4
5AC_PREFIX_DEFAULT(/usr/local)
6
7dnl Checks for programs.
8AC_PROG_CC
9
10dnl Checks for libraries.
11
12dnl Checks for header files.
13AC_HEADER_STDC
14AC_CHECK_HEADERS(fcntl.h)
15
16dnl Checks for typedefs, structures, and compiler characteristics.
17AC_C_CONST
18AC_TYPE_SIZE_T
19
20AC_CHECK_SIZEOF(int)
21AC_CHECK_SIZEOF(long)
22
23AC_C_BIGENDIAN
24
25dnl Checks for library functions.
26
27dnl Check for files
28
29AC_OUTPUT(Makefile)
30