# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) AC_INIT([cbwls], [0.1], [laumann.thomas@gmail.com], [cbwls]) AC_CONFIG_SRCDIR(src) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CXX AC_PROG_CC AC_PROG_RANLIB AM_PROG_AR # Checks for header files. AC_CHECK_HEADERS([malloc.h stdint.h stdlib.h string.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T AC_TYPE_UINT32_T AC_TYPE_UINT64_T # Checks for library functions. AC_FUNC_MALLOC AC_CONFIG_FILES([config.make]) AC_OUTPUT