# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) AC_INIT(xlslib, 0.2.5, dhoerl@mac.com) AC_CONFIG_SRCDIR([src/common/systype.h]) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(src/common/xlconfig.h) # Checks for programs. AC_PROG_CXX AC_PROG_CC # AC_PROG_RANLIB AC_PROG_LIBTOOL # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T # Checks for library functions. AC_HEADER_STDC AC_CHECK_FUNCS([memset strchr]) AC_CONFIG_FILES([Makefile src/Makefile targets/Makefile targets/test/Makefile]) AC_OUTPUT