source: configure.ac@ 7ff53f

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 7ff53f was d7d022, checked in by Frederik Heber <heber@…>, 13 years ago

Added serialization functionality to class element.

  • also added extensive unit test on class element.
  • we use boost::serialization.
  • Property mode set to 100644
File size: 8.2 KB
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(MoleCuilder, 1.1.3, [heber@ins.uni-bonn.de], [molecuilder], [http://trac.ins.uni-bonn.de/projects/molecuilder/])
6AC_CONFIG_AUX_DIR([build-aux])
7AC_CONFIG_SRCDIR([src/builder.cpp])
8AC_CONFIG_HEADER([config.h libmolecuilder_config.h])
9AC_CONFIG_MACRO_DIR([m4])
10AC_CONFIG_SUBDIRS([LinearAlgebra])
11
12# parallel-tests: use parallel test druver
13# color-tests: us coloring to indicate success/failure when available
14# tar-pax: use newer tar implementation with longer filename (>99 chars)
15AM_INIT_AUTOMAKE([dist-bzip2 1.5 parallel-tests color-tests tar-pax])
16
17# Checks for programs.
18AM_PATH_CPPUNIT(1.9.6)
19AC_PROG_CXX
20AC_PROG_CC
21AC_PROG_INSTALL
22
23# use doxygen
24DX_HTML_FEATURE(ON)
25DX_PS_FEATURE(OFF)
26DX_PDF_FEATURE(OFF)
27DX_INIT_DOXYGEN(MoleCuilder, Doxyfile, $(docdir))
28
29# use libtool
30LT_INIT([static])
31
32# Define these substitions here to keep all version information in one place.
33# For information on how to properly maintain the library version information,
34# refer to the libtool manual, section "Updating library version information":
35# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
36AC_SUBST([MOLECUILDER_SO_VERSION], [4:0:0])
37AC_SUBST([MOLECUILDER_API_VERSION], [1.1.3])
38
39# for libLinearAlgebra
40AC_SUBST([LINEARALGEBRA_SO_VERSION], [1:0:0])
41
42dnl this macro is used to get the arguments supplied
43dnl to the configure script (./configure --enable-debug)
44dnl Check if we have enable debug support.
45AC_MSG_CHECKING(whether to enable debugging)
46default="no"
47have_debug="no"
48AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes/full] turn on debugging
49 [default=$default]],, enable_debug=$default)
50if test "x$enable_debug" = "xyes"; then
51 AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
52 AC_DEFINE(HAVE_DEBUG,1, ["Use debug setting to compile code."])
53 have_debug="yes"
54elif test "x$enable_debug" = "xfull"; then
55 AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
56 AC_DEFINE(LOG_OBSERVER,1, ["Use observer log."])
57 AC_DEFINE(HAVE_DEBUG,2, ["Use debug setting to compile code."])
58 AC_DEFINE(QT_DEBUG,, ["Enable Qt debug messages."])
59 have_debug="full"
60else
61 AC_DEFINE(NDEBUG,1, ["Don't compile in debugging code."])
62 AC_DEFINE(HAVE_DEBUG,0, ["Use debug setting to compile code."])
63 AC_DEFINE(QT_NO_DEBUG,, ["Disable Qt debug messages."])
64 have_debug="no"
65fi
66AC_MSG_RESULT($have_debug)
67AC_SUBST(HAVE_DEBUG)
68
69dnl this macro is used to get the arguments supplied
70dnl to the configure script (./configure --enable-debug)
71dnl Check if we have enable debug support.
72AC_MSG_CHECKING([whether to enable internal caching of values (speedup!)])
73default="yes"
74AC_ARG_ENABLE(cache, [ --enable-cache=[no/yes] turn on caching
75 [default=$default]],, enable_cache=$default)
76if test "x$enable_cache" = "xno"; then
77 AC_DEFINE(NO_CACHING,1, ["Don't use caching code."])
78 AC_DEFINE(HAVE_CACHE,0, ["cache variables to speed up the code."])
79 AC_MSG_RESULT(no)
80else
81 AC_DEFINE(HAVE_CACHE,1, ["cache variables to speed up the code."])
82 AC_MSG_RESULT(yes)
83fi
84AC_SUBST(HAVE_CACHE)
85
86#AC_MSG_CHECKING(whether to enable profiling)
87#default="no"
88#AC_ARG_ENABLE(debug, [ --enable-profile=[no/yes] turn on profiling
89# [default=$default]],, enable_profile=$default)
90#if test "x$enable_profile" = "xyes"; then
91# CXXFLAGS="$CXXFLAGS -g -DDEBUG -pg"
92# DEBUG=-pg;
93# AC_MSG_RESULT(yes)
94#else
95# AC_MSG_RESULT(no)
96#fi
97
98#AC_MSG_CHECKING(whether to enable serialization)
99#default="no"
100#AC_ARG_ENABLE(debug, [ --enable-serialization=[no/yes] turn on serialization support
101# [default=$default]],, enable_serialization=$default)
102#if test "x$enable_serialization" = "xyes"; then
103# CXXFLAGS="$CXXFLAGS -DSERIALIZATION"
104# serialization=yes;
105# AC_MSG_RESULT(yes)
106#else
107# serialization=no;
108# AC_MSG_RESULT(no)
109#fi
110
111# Checks for libraries.
112AC_CHECK_LIB(m, sqrt, , AC_MSG_ERROR([compatible libc math library not found]))
113
114# Boost
115BOOST_REQUIRE([1.40])
116
117# Boost headers only
118BOOST_ANY
119BOOST_BIND
120BOOST_CONVERSION
121BOOST_EXCEPTION
122BOOST_FOREACH
123BOOST_FUNCTION
124BOOST_PREPROCESSOR
125BOOST_RANDOM
126BOOST_SMART_PTR
127BOOST_TOKENIZER
128
129# Boost headers with libraries
130BOOST_FILESYSTEM
131BOOST_PROGRAM_OPTIONS
132BOOST_SERIALIZATION
133BOOST_THREADS
134
135#QT4 libraries
136BNV_HAVE_QT
137#gw_CHECK_QT4
138#AX_CHECK_GLU
139#AC_MSG_NOTICE(["GLU_CFLAGS: $GLU_CFLAGS, GLU_CXXFLAGS: $GLU_CXXFLAGS, GLU_LDFLAGS: $GLU_LDFLAGS, GLU_LIBS: $GLU_LIBS"])
140
141
142# CodePatterns library (needs Observer::Channels )
143AM_PATH_CODEPATTERNS([1.1.5], $have_debug,,[AC_MSG_ERROR([Missing CodePatterns library, please specify PKG_CONFIG_PATH or use --with-codepatterns...])])
144
145# Checks for header files.
146AC_HEADER_STDC
147AC_CHECK_HEADERS([sys/time.h])
148AC_HEADER_STDBOOL
149
150AC_FUNC_MALLOC
151AC_FUNC_REALLOC
152AC_CHECK_FUNCS([floor pow sqrt strchr])
153
154# Checks for typedefs, structures, and compiler characteristics.
155AC_C_CONST
156AC_C_INLINE
157AC_C_RESTRICT
158AC_TYPE_SIZE_T
159
160# Checks for library functions.
161# check for GNU Scientific Library
162AC_CHECK_HEADERS([gsl/gsl_blas.h])
163AC_SEARCH_LIBS(dnrm2, goto blas cblas gslblas gslcblas)
164AC_CHECK_LIB(gsl, main, [],
165 [AC_SEARCH_LIBS(cblas_dnrm2, blas cblas gslblas gslcblas)])
166AC_CHECK_LIB(gsl, gsl_blas_dnrm2, , [AC_MSG_ERROR(["No working BLAS found for GSL, stopping."])])
167
168# add replacement/saturation hydrogen or not
169AC_ARG_ENABLE([hydrogen],AS_HELP_STRING([--enable-hydrogen],[Adding saturation hydrogen (default is yes)]),
170 [enable_hydrogen=$enableval], [enable_hydrogen=yes])
171if test x"$enable_hydrogen" = xyes; then
172 AC_DEFINE(ADDHYDROGEN,1, ["Adding saturation hydrogen"])
173 AC_SUBST(ADDHYDROGEN)
174fi
175
176# use CppUnit TestRunner or not
177AC_ARG_ENABLE([ecut],AS_HELP_STRING([--enable-ecut],[Use ECut TestRunnerClient (default is no)]),
178 [enable_ecut=$enableval], [enable_ecut=no])
179if test x"$enable_ecut" = xyes; then
180 AC_DEFINE(HAVE_ECUT,1, ["Use ECut TestRunnerClient instead of our own."])
181 AC_SUBST(HAVE_ECUT)
182fi
183
184# with valgrinding testsuite or not
185AC_ARG_WITH([valgrind],AS_HELP_STRING([--with-valgrind],[Use Valgrind on the testsuite (default is no)]),
186 [with_valgrind=$withval], [with_valgrind=no])
187if test x"$with_valgrind" = xyes; then
188 AC_CHECK_HEADER([valgrind/valgrind.h],
189 [
190 # check header
191 AC_DEFINE(HAVE_VALGRIND_TESTSUITE,1, ["Use Valgrind to check the testsuite."])
192 # check path
193 AC_PATH_PROG(VALGRIND, [valgrind], [/bin/false])
194 # set variables
195 AC_SUBST(HAVE_VALGRIND_TESTSUITE)
196 AC_SUBST(VALGRIND)
197 ],
198 [
199 AC_MSG_ERROR(["Valgrind support requested but headers not available."])
200 ]
201 )
202fi
203
204# Check for "extern inline", using a modified version
205# of the test for AC_C_INLINE from acspecific.mt
206AC_CACHE_CHECK([for extern inline], ac_cv_c_extern_inline,
207[ac_cv_c_extern_inline=no
208AC_TRY_COMPILE([extern $ac_cv_c_inline double foo(double x);
209extern $ac_cv_c_inline double foo(double x) { return x+1.0; };
210double foo (double x) { return x + 1.0; };],
211[ foo(1.0) ],
212[ac_cv_c_extern_inline="yes"])
213])
214
215if test "$ac_cv_c_inline" != no ; then
216 AC_DEFINE(HAVE_INLINE,1, ["May use inline routines"])
217 AC_SUBST(HAVE_INLINE)
218fi
219
220#AC_MSG_NOTICE(["CFLAGS: $CFLAGS, CXXFLAGS: $CXXFLAGS, LDFLAGS: $LDFLAGS, CC: $CC, CXX:, $CXX, MPICC: $MPICC, MPILIBS: $MPILIBS, LIBS: $LIBS"])
221
222# test suite
223AC_CONFIG_FILES([
224 tests/Makefile])
225
226AC_CONFIG_TESTDIR(tests/CodeChecks)
227AC_CONFIG_FILES([
228 tests/CodeChecks/atlocal
229 tests/CodeChecks/Makefile])
230
231AC_CONFIG_TESTDIR(tests/Fragmentations)
232AC_CONFIG_FILES([
233 tests/Fragmentations/atlocal
234 tests/Fragmentations/Makefile])
235AC_CONFIG_FILES([tests/Fragmentations/molecuilder], [chmod +x tests/Fragmentations/molecuilder])
236
237AC_CONFIG_TESTDIR(tests/regression)
238AC_CONFIG_FILES([
239 tests/regression/atlocal
240 tests/regression/Makefile])
241AC_CONFIG_FILES([tests/regression/molecuilder], [chmod +x tests/regression/molecuilder])
242
243AC_CONFIG_TESTDIR(tests/Tesselations)
244AC_CONFIG_FILES([
245 tests/Tesselations/atlocal
246 tests/Tesselations/Makefile])
247AC_CONFIG_FILES([tests/Tesselations/molecuilder], [chmod +x tests/Tesselations/molecuilder])
248
249AC_CONFIG_FILES([
250 doc/molecuilder.xml])
251AC_CONFIG_FILES([
252 MoleCuilder.pc:MoleCuilder.pc.in])
253AC_CONFIG_FILES([
254 Makefile
255 doc/Makefile
256 src/Makefile
257])
258AC_CONFIG_FILES([
259 src/unittests/Makefile
260])
261AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.