source: LinearAlgebra/configure.ac@ dc322a

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since dc322a was dc322a, checked in by Frederik Heber <heber@…>, 14 years ago

DISTFIX: need to use tar-pax to allow for longer filenames in dist's archive.

  • Property mode set to 100644
File size: 6.8 KB
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(LinearAlgebra, 1.0.0, [heber@ins.uni-bonn.de], [molecuilder], [http://trac.ins.uni-bonn.de/projects/molecuilder/])
6AC_CONFIG_AUX_DIR([build-aux])
7AC_CONFIG_SRCDIR([src/LinearAlgebra/Vector.cpp])
8AC_CONFIG_HEADER([config.h libLinearAlgebra_config.h])
9AC_CONFIG_MACRO_DIR([m4])
10
11# parallel-tests: use parallel test druver
12# color-tests: us coloring to indicate success/failure when available
13# tar-pax: use newer tar implementation with longer filename (>99 chars)
14AM_INIT_AUTOMAKE([dist-bzip2 1.11 parallel-tests color-tests tar-pax])
15
16# Checks for programs.
17AM_PATH_CPPUNIT(1.9.6)
18AC_PROG_CXX
19AC_PROG_CC
20AC_PROG_INSTALL
21AC_CHECK_PROG([LATEX],[latex],[latex],[:])
22AC_CHECK_PROG([BIBTEX],[bibtex],[bibtex],[:])
23AC_CHECK_PROG([DVIPS],[dvips],[dvips],[:])
24AC_CHECK_PROG([PDFLATEX],[pdflatex],[pdflatex],[:])
25AC_CHECK_PROG([XMLTO],[xmlto],[xmlto],[:])
26AM_MISSING_PROG([DOXYGEN], [doxygen])
27
28LT_INIT([static])
29
30# Define these substitions here to keep all version information in one place.
31# For information on how to properly maintain the library version information,
32# refer to the libtool manual, section "Updating library version information":
33# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
34AC_SUBST([LINEARALGEBRA_SO_VERSION], [1:0:0])
35AC_SUBST([LINEARALGEBRA_API_VERSION], [1.0.0])
36
37dnl this macro is used to get the arguments supplied
38dnl to the configure script (./configure --enable-debug)
39dnl Check if we have enable debug support.
40AC_MSG_CHECKING(whether to enable debugging)
41default="no"
42have_debug="no"
43AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes/full] turn on debugging
44 [default=$default]],, enable_debug=$default)
45if test "x$enable_debug" = "xyes"; then
46 AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
47 AC_DEFINE(HAVE_DEBUG,1, ["Use debug setting to compile code."])
48 have_debug="yes"
49elif test "x$enable_debug" = "xfull"; then
50 AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
51 AC_DEFINE(LOG_OBSERVER,1, ["Use observer log."])
52 AC_DEFINE(HAVE_DEBUG,2, ["Use debug setting to compile code."])
53 have_debug="full"
54else
55 AC_DEFINE(NDEBUG,1, ["Don't compile in debugging code."])
56 AC_DEFINE(HAVE_DEBUG,0, ["Use debug setting to compile code."])
57 have_debug="no"
58fi
59AC_MSG_RESULT($have_debug)
60AC_SUBST(HAVE_DEBUG)
61
62dnl this macro is used to get the arguments supplied
63dnl to the configure script (./configure --enable-debug)
64dnl Check if we have enable debug support.
65AC_MSG_CHECKING([whether to enable internal caching of values (speedup!)])
66default="yes"
67AC_ARG_ENABLE(cache, [ --enable-cache=[no/yes] turn on caching
68 [default=$default]],, enable_cache=$default)
69if test "x$enable_cache" = "xno"; then
70 AC_DEFINE(NO_CACHING,1, ["Don't use caching code."])
71 AC_DEFINE(HAVE_CACHE,0, ["cache variables to speed up the code."])
72 AC_MSG_RESULT(no)
73else
74 AC_DEFINE(HAVE_CACHE,1, ["cache variables to speed up the code."])
75 AC_MSG_RESULT(yes)
76fi
77AC_SUBST(HAVE_CACHE)
78
79#AC_MSG_CHECKING(whether to enable profiling)
80#default="no"
81#AC_ARG_ENABLE(debug, [ --enable-profile=[no/yes] turn on profiling
82# [default=$default]],, enable_profile=$default)
83#if test "x$enable_profile" = "xyes"; then
84# CXXFLAGS="$CXXFLAGS -g -DDEBUG -pg"
85# DEBUG=-pg;
86# AC_MSG_RESULT(yes)
87#else
88# AC_MSG_RESULT(no)
89#fi
90
91#AC_MSG_CHECKING(whether to enable serialization)
92#default="no"
93#AC_ARG_ENABLE(debug, [ --enable-serialization=[no/yes] turn on serialization support
94# [default=$default]],, enable_serialization=$default)
95#if test "x$enable_serialization" = "xyes"; then
96# CXXFLAGS="$CXXFLAGS -DSERIALIZATION"
97# serialization=yes;
98# AC_MSG_RESULT(yes)
99#else
100# serialization=no;
101# AC_MSG_RESULT(no)
102#fi
103
104# Checks for libraries.
105AC_CHECK_LIB(m, sqrt, , AC_MSG_ERROR([compatible libc math library not found]))
106
107# Boost libraries
108AX_BOOST_BASE([1.40])
109AX_BOOST_PROGRAM_OPTIONS
110AX_BOOST_SYSTEM
111AX_BOOST_FILESYSTEM
112AX_BOOST_THREAD
113#AX_BOOST_SERIALIZATION
114
115# CodePatterns library (needs operator<<(.., range<>) )
116AM_PATH_CODEPATTERNS([1.0.13], $have_debug,,[AC_MSG_ERROR([Missing CodePatterns library, please specify PKG_CONFIG_PATH or use --with-codepatterns...])])
117
118# Checks for header files.
119AC_HEADER_STDC
120AC_CHECK_HEADERS([sys/time.h])
121AC_HEADER_STDBOOL
122
123AC_FUNC_MALLOC
124AC_FUNC_REALLOC
125AC_CHECK_FUNCS([floor pow sqrt strchr])
126
127# Checks for typedefs, structures, and compiler characteristics.
128AC_C_CONST
129AC_C_INLINE
130AC_C_RESTRICT
131AC_TYPE_SIZE_T
132
133# Checks for library functions.
134# check for GNU Scientific Library
135AC_CHECK_HEADERS([gsl/gsl_blas.h])
136AC_SEARCH_LIBS(dnrm2, goto blas cblas gslblas gslcblas)
137AC_CHECK_LIB(gsl, main, [],
138 [AC_SEARCH_LIBS(cblas_dnrm2, blas cblas gslblas gslcblas)])
139AC_CHECK_LIB(gsl, gsl_blas_dnrm2, , [AC_MSG_ERROR(["No working BLAS found for GSL, stopping."])])
140
141
142# use CppUnit TestRunner or not
143AC_ARG_ENABLE([ecut],AS_HELP_STRING([--enable-ecut],[Use ECut TestRunnerClient (default is no)]),
144 [enable_ecut=$enableval], [enable_ecut=no])
145if test x"$enable_ecut" = xyes; then
146 AC_DEFINE(HAVE_ECUT,1, ["Use ECut TestRunnerClient instead of our own."])
147 AC_SUBST(HAVE_ECUT)
148fi
149
150# with valgrinding testsuite or not
151AC_ARG_WITH([valgrind],AS_HELP_STRING([--with-valgrind],[Use Valgrind on the testsuite (default is no)]),
152 [with_valgrind=$withval], [with_valgrind=no])
153if test x"$with_valgrind" = xyes; then
154 AC_CHECK_HEADER([valgrind/valgrind.h],
155 [
156 # check header
157 AC_DEFINE(HAVE_VALGRIND_TESTSUITE,1, ["Use Valgrind to check the testsuite."])
158 # check path
159 AC_PATH_PROG(VALGRIND, [valgrind], [/bin/false])
160 # set variables
161 AC_SUBST(HAVE_VALGRIND_TESTSUITE)
162 AC_SUBST(VALGRIND)
163 ],
164 [
165 AC_MSG_ERROR(["Valgrind support requested but headers not available."])
166 ]
167 )
168fi
169
170# Check for "extern inline", using a modified version
171# of the test for AC_C_INLINE from acspecific.mt
172AC_CACHE_CHECK([for extern inline], ac_cv_c_extern_inline,
173[ac_cv_c_extern_inline=no
174AC_TRY_COMPILE([extern $ac_cv_c_inline double foo(double x);
175extern $ac_cv_c_inline double foo(double x) { return x+1.0; };
176double foo (double x) { return x + 1.0; };],
177[ foo(1.0) ],
178[ac_cv_c_extern_inline="yes"])
179])
180
181if test "$ac_cv_c_inline" != no ; then
182 AC_DEFINE(HAVE_INLINE,1, ["May use inline routines"])
183 AC_SUBST(HAVE_INLINE)
184fi
185
186#AC_MSG_NOTICE(["CFLAGS: $CFLAGS, CXXFLAGS: $CXXFLAGS, LDFLAGS: $LDFLAGS, CC: $CC, CXX:, $CXX, MPICC: $MPICC, MPILIBS: $MPILIBS, LIBS: $LIBS"])
187
188# test suite
189AC_CONFIG_FILES([
190 tests/CodeChecks/atlocal
191 tests/CodeChecks/Makefile])
192AC_CONFIG_FILES([
193 LinearAlgebra.pc:LinearAlgebra.pc.in
194 LinearAlgebra-debug.pc:LinearAlgebra-debug.pc.in])
195AC_CONFIG_FILES([
196 Makefile
197 doc/Makefile
198 src/LinearAlgebra/Makefile
199])
200AC_CONFIG_FILES([
201 src/unittests/Makefile
202])
203AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.