177 lines
8.3 KiB
Text
177 lines
8.3 KiB
Text
-*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.61)
|
|
AC_INIT([cantera], [2.0.1], [nick@ices.utexas.edu])
|
|
AC_CONFIG_HEADER(config.h)
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
#AX_ENABLE_BUILDDIR
|
|
AM_INIT_AUTOMAKE(-Wall -Werror)
|
|
|
|
# snarf and provide versioning numbers
|
|
AX_SPLIT_VERSION
|
|
GENERIC_MAJOR_VERSION=$AX_MAJOR_VERSION
|
|
GENERIC_MINOR_VERSION=$AX_MINOR_VERSION
|
|
GENERIC_MICRO_VERSION=$AX_POINT_VERSION
|
|
GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION
|
|
GENERIC_RELEASE=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION
|
|
|
|
AC_SUBST(GENERIC_VERSION)
|
|
AC_SUBST(GENERIC_MAJOR_VERSION)
|
|
AC_SUBST(GENERIC_MINOR_VERSION)
|
|
AC_SUBST(GENERIC_MICRO_VERSION)
|
|
AC_SUBST(GENERIC_RELEASE)
|
|
|
|
PACKAGE_DESCRIPTION="An object-oriented software toolkit for chemical kinetics, thermodynamics, and transport processes."
|
|
AC_SUBST([PACKAGE_DESCRIPTION])
|
|
PACKAGE_URL="http://code.google.com/p/cantera/"
|
|
AC_SUBST([PACKAGE_URL])
|
|
|
|
# add various Defines
|
|
AC_DEFINE([LAPACK_FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions])
|
|
LAPACK_FTN_TRAILING_UNDERSCORE=1
|
|
AC_DEFINE([FTN_TRAILING_UNDERSCORE],1,[Define to add underscore after fortran functions])
|
|
FTN_TRAILING_UNDERSCORE=1
|
|
AC_DEFINE([LAPACK_NAMES_LOWERCASE],1,[Define to make lapack functions lowercase])
|
|
LAPACK_NAMES_LOWERCASE=1
|
|
AC_DEFINE([LAPACK_FTN_STRING_LEN_AT_END],1,[Define to add string to end of lapack functions])
|
|
LAPACK_FTN_STRING_LEN_AT_END=1
|
|
AC_DEFINE([INCL_PURE_FLUIDS],1,[Define to include pure fluids])
|
|
INCL_PURE_FLUIDS=1
|
|
AC_DEFINE([WITH_PURE_FLUIDS],1,[Define to include pure fluids])
|
|
WITH_PURE_FLUIDS=1
|
|
AC_DEFINE([WITH_LATTICE_SOLID],1,[Define to include Lattice Solids])
|
|
WITH_LATTICE_SOLID=1
|
|
AC_DEFINE([WITH_METAL],1,[Define to include metals])
|
|
WITH_METAL=1
|
|
AC_DEFINE([WITH_STOICH_SUBSTANCE],1,[Define to include stoichiometric substances])
|
|
WITH_STOICH_SUBSTANCE=1
|
|
AC_DEFINE([WITH_IDEAL_SOLUTIONS],1,[Define to include ideal solutions])
|
|
WITH_IDEAL_SOLUTIONS=1
|
|
AC_DEFINE([HAS_SSTREAM],1,[Define to include sstream])
|
|
HAS_SSTREAM=1
|
|
|
|
AC_DEFINE_UNQUOTED([CANTERA_DATA], ["$prefix/data"],
|
|
[Default data directory])
|
|
|
|
AC_CHECK_TYPES([uint8_t, uint16_t, uint32_t, int32_t, uint64_t, int64_t])
|
|
AH_BOTTOM([
|
|
typedef double doublereal; // Fortran double precision
|
|
typedef int integer; // Fortran integer
|
|
typedef int ftnlen; // Fortran hidden string length type
|
|
|
|
#define STRING_LEN_AT_END
|
|
#define STORE_MOLE_FRACTIONS
|
|
|
|
#ifdef DEBUG_MODE
|
|
#define DEBUG_MODE_ENABLED 1
|
|
#else
|
|
#define DEBUG_MODE_ENABLED 0
|
|
#endif
|
|
])
|
|
|
|
# ------------------------------
|
|
# Checks for required programs
|
|
# ------------------------------
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
AC_PROG_FC
|
|
AC_PROG_F77
|
|
|
|
AC_PROG_LIBTOOL
|
|
AM_SANITY_CHECK
|
|
|
|
# ----------------
|
|
# Doxygen support
|
|
# ----------------
|
|
|
|
DX_HTML_FEATURE(ON)
|
|
DX_CHM_FEATURE(OFF)
|
|
DX_CHI_FEATURE(OFF)
|
|
|
|
DX_MAN_FEATURE(OFF)
|
|
DX_RTF_FEATURE(OFF)
|
|
DX_XML_FEATURE(OFF)
|
|
DX_PDF_FEATURE(ON)
|
|
DX_PS_FEATURE(OFF)
|
|
DX_INIT_DOXYGEN(cantera, doc/doxygen/cantera.dox, docs)
|
|
|
|
# Generate Output Files
|
|
AC_OUTPUT(Makefile \
|
|
ext/Makefile \
|
|
ext/libexecstream/Makefile \
|
|
ext/f2c_math/Makefile \
|
|
ext/f2c_libs/Makefile \
|
|
ext/f2c_libs/arithchk/Makefile \
|
|
ext/f2c_blas/Makefile \
|
|
ext/f2c_lapack/Makefile \
|
|
ext/cvode/Makefile \
|
|
ext/cvode/source/Makefile \
|
|
test_problems/Makefile \
|
|
test_problems/mixGasTransport/Makefile \
|
|
test_problems/ChemEquil_gri_matrix/Makefile \
|
|
test_problems/ChemEquil_gri_pairs/Makefile \
|
|
test_problems/ChemEquil_ionizedGas/Makefile \
|
|
test_problems/ChemEquil_red1/Makefile \
|
|
test_problems/CpJump/Makefile \
|
|
test_problems/cxx_ex/Makefile \
|
|
test_problems/diamondSurf/Makefile \
|
|
test_problems/diamondSurf_dupl/Makefile \
|
|
test_problems/fracCoeff/Makefile \
|
|
test_problems/multiGasTransport/Makefile \
|
|
test_problems/negATest/Makefile \
|
|
test_problems/NASA9poly_test/Makefile \
|
|
test_problems/printUtilUnitTest/Makefile \
|
|
test_problems/pureFluidTest/Makefile \
|
|
test_problems/silane_equil/Makefile \
|
|
test_problems/spectroscopy/Makefile \
|
|
test_problems/surfkin/Makefile \
|
|
test_problems/surfSolverTest/Makefile \
|
|
test_problems/VPsilane_test/Makefile \
|
|
test_problems/VCSnonideal/Makefile \
|
|
test_problems/cathermo/Makefile \
|
|
test_problems/cathermo/DH_graph_1/Makefile \
|
|
test_problems/cathermo/HMW_dupl_test/Makefile \
|
|
test_problems/cathermo/HMW_graph_CpvT/Makefile \
|
|
test_problems/cathermo/HMW_graph_HvT/Makefile \
|
|
test_problems/cathermo/HMW_graph_GvI/Makefile \
|
|
test_problems/cathermo/HMW_graph_GvT/Makefile \
|
|
test_problems/cathermo/HMW_graph_VvT/Makefile \
|
|
test_problems/cathermo/HMW_test_1/Makefile \
|
|
test_problems/cathermo/HMW_test_3/Makefile \
|
|
test_problems/cathermo/ims/Makefile \
|
|
test_problems/cathermo/issp/Makefile \
|
|
test_problems/cathermo/stoichSubSSTP/Makefile \
|
|
test_problems/cathermo/testIAPWS/Makefile \
|
|
test_problems/cathermo/testIAPWSPres/Makefile \
|
|
test_problems/cathermo/testIAPWSTripP/Makefile \
|
|
test_problems/cathermo/testWaterPDSS/Makefile \
|
|
test_problems/cathermo/testWaterTP/Makefile \
|
|
test_problems/cathermo/VPissp/Makefile \
|
|
test_problems/cathermo/wtWater/Makefile \
|
|
test_problems/PecosTransport/Makefile \
|
|
doc/Makefile \
|
|
doc/doxygen/Makefile \
|
|
src/Makefile \
|
|
src/fortran/Makefile \
|
|
src/base/Makefile \
|
|
src/converters/Makefile \
|
|
src/kinetics/Makefile \
|
|
src/numerics/Makefile src/oneD/Makefile \
|
|
src/thermo/Makefile \
|
|
src/transport/Makefile \
|
|
src/spectra/Makefile src/zeroD/Makefile \
|
|
src/equil/Makefile \
|
|
src/tpx/Makefile \
|
|
cantera.pc)
|
|
|
|
# skipped tests
|
|
# test_problems/ck2cti/Makefile
|
|
# test_problems/nasa9_reader/Makefile
|
|
# test_problems/rankine_democxx/Makefile
|
|
# test_problems/VCSnonideal/NaCl_equil/Makefile
|
|
|
|
# FINAL SUMMARY
|
|
AX_SUMMARIZE_CONFIG
|
|
|