# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) AC_INIT([alstede], [0.2.4], [no-define]) AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([$PACKAGE_NAME], [$PACKAGE_VERSION]) # Checks for programs. AC_PROG_CXX AC_PROG_INSTALL # Checks for libraries. AC_CHECK_LIB([boost_filesystem], [-lboost_filesystem]) AC_CHECK_LIB([islib], [-lislib]) # Checks for header files. AC_CHECK_HEADERS([sys/stat.h]) AC_CHECK_HEADERS([getopt.h]) AC_CHECK_HEADERS([unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL AC_TYPE_SIZE_T # Checks for library functions. AC_CHECK_FUNCS([tzset]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT