# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.61]) AC_INIT([IPhreeqc], [2.17.2-4665], [charlton@usgs.gov]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/IPhreeqc.cpp]) AC_DEFINE(SWIG_SHARED_OBJ) AC_DEFINE(PHREEQC_CPP) AC_DEFINE(PHREEQC_CLASS) AC_DEFINE(USE_PHRQ_ALLOC) AC_DEFINE(NDEBUG) # Checks for programs. AC_PROG_CXX AC_PROG_AWK AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET # Check if the fortran interface should be included AC_MSG_CHECKING([if Fortran interface included]) AC_ARG_ENABLE([fortran], [AC_HELP_STRING([--enable-fortran], [include the Fortran interface @<:@default=yes@:>@])], [IPQ_FORTRAN=$enableval], [IPQ_FORTRAN=yes]) if test "X$IPQ_FORTRAN" = "Xyes"; then AC_MSG_RESULT(yes) AC_PROG_FC AC_FC_LIBRARY_LDFLAGS AC_FC_WRAPPERS AC_FC_MAIN AC_SUBST(F77, $FC) AC_SUBST(FFLAGS, $FCFLAGS) else AC_MSG_RESULT(no) fi AM_CONDITIONAL([BUILD_FORTRAN], [test "X$IPQ_FORTRAN" = "Xyes"]) AC_PROG_LIBTOOL # Checks for libraries. # Checks for header files. AC_CHECK_HEADERS([float.h limits.h memory.h stddef.h stdlib.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC AC_FUNC_STRTOD # libc functions AC_CHECK_FUNCS([memmove], , AC_ERROR([memmove not found in libc])) AC_CHECK_FUNCS([memset], , AC_ERROR([memset not found in libc])) AC_CHECK_FUNCS([strchr], , AC_ERROR([strchr not found in libc])) AC_CHECK_FUNCS([strcspn], , AC_ERROR([strcspn not found in libc])) AC_CHECK_FUNCS([strtol], , AC_ERROR([strtol not found in libc])) # libm functions AC_CHECK_FUNCS([floor], , AC_CHECK_LIB(m, floor, , AC_ERROR([cannot find floor])) ) AC_CHECK_FUNCS([pow], , AC_CHECK_LIB(m, pow, , AC_ERROR([cannot find pow])) ) AC_CHECK_FUNCS([sqrt], , AC_CHECK_LIB(m, sqrt, , AC_ERROR([cannot find sqrt])) ) # isfinite AC_LANG_PUSH(C++) AC_CACHE_CHECK([for isfinite], ac_cv_isfinite, [AC_TRY_LINK([#include ], [double x; int y; y = isfinite(x);], ac_cv_isfinite=yes, ac_cv_isfinite=no )]) if test x"$ac_cv_isfinite" = x"yes"; then AC_DEFINE(HAVE_ISFINITE, [], [Has isfinite]) fi AC_LANG_POP(C++) # finite AC_LANG_PUSH(C++) AC_CACHE_CHECK([for finite], ac_cv_finite, [AC_TRY_LINK([#include ], [double x; int y; y = finite(x);], ac_cv_finite=yes, ac_cv_finite=no )]) if test x"$ac_cv_finite" = x"yes"; then AC_DEFINE(HAVE_FINITE, [], [Has finite]) fi AC_LANG_POP(C++) # isnan AC_CHECK_FUNCS([isnan], , AC_CHECK_LIB(m, isnan)) AC_CONFIG_FILES([ Makefile doc/Makefile examples/Makefile src/Makefile tests/Makefile tests/phreeqc.dat tests/ex2 ]) AC_OUTPUT