dnl Process this file with autoconf to produce a configure script. AC_INIT(aescrypt.c) AC_CONFIG_HEADER(config.h) AC_PREFIX_DEFAULT(/usr/local) dnl Checks for programs. AC_PROG_CC dnl Checks for libraries. dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_C_BIGENDIAN dnl Checks for library functions. dnl Check for files AC_OUTPUT(Makefile)