# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(PCP_Utilities, 1.0, heber@ins.uni-bonn.de) AC_CONFIG_SRCDIR([CreateGaAs.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE # Checks for programs. AC_PROG_AWK AC_PROG_CXX AC_PROG_CC AM_MISSING_PROG([DOXYGEN], [doxygen]) # Checks for libraries. AC_CHECK_LIB(m, sqrt, ,AC_MSG_ERROR([compatible libc math library not found])) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stdlib.h string.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([pow sqrt strchr strrchr strstr]) AC_CONFIG_FILES([Makefile doc/Makefile Nanotubes.pl ReSequenceDX.pl]) AC_OUTPUT