# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) AC_INIT([islib], [0.1], [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 AC_PROG_RANLIB # Checks for libraries. AC_CHECK_LIB([boost_filesystem], [-lboost_filesystem]) # Checks for header files. AC_CHECK_HEADERS([string.h unistd.h utime.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_INLINE AC_TYPE_MODE_T AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_TYPE_SSIZE_T # Checks for library functions. AC_FUNC_STRERROR_R AC_CHECK_FUNCS([localtime_r mkdir pow utime]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT