source: configure.ac@ 81c980b

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

Set version to 1.1.3.

  • Codename "Donald Duck" (the license plate of his first car in a 1938 comic) :)
  • Property mode set to 100644
File size: 7.9 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 have_debug="full"
59else
60 AC_DEFINE(NDEBUG,1, ["Don't compile in debugging code."])
61 AC_DEFINE(HAVE_DEBUG,0, ["Use debug setting to compile code."])
62 have_debug="no"
63fi
64AC_MSG_RESULT($have_debug)
65AC_SUBST(HAVE_DEBUG)
66
67dnl this macro is used to get the arguments supplied
68dnl to the configure script (./configure --enable-debug)
69dnl Check if we have enable debug support.
70AC_MSG_CHECKING([whether to enable internal caching of values (speedup!)])
71default="yes"
72AC_ARG_ENABLE(cache, [ --enable-cache=[no/yes] turn on caching
73 [default=$default]],, enable_cache=$default)
74if test "x$enable_cache" = "xno"; then
75 AC_DEFINE(NO_CACHING,1, ["Don't use caching code."])
76 AC_DEFINE(HAVE_CACHE,0, ["cache variables to speed up the code."])
77 AC_MSG_RESULT(no)
78else
79 AC_DEFINE(HAVE_CACHE,1, ["cache variables to speed up the code."])
80 AC_MSG_RESULT(yes)
81fi
82AC_SUBST(HAVE_CACHE)
83
84#AC_MSG_CHECKING(whether to enable profiling)
85#default="no"
86#AC_ARG_ENABLE(debug, [ --enable-profile=[no/yes] turn on profiling
87# [default=$default]],, enable_profile=$default)
88#if test "x$enable_profile" = "xyes"; then
89# CXXFLAGS="$CXXFLAGS -g -DDEBUG -pg"
90# DEBUG=-pg;
91# AC_MSG_RESULT(yes)
92#else
93# AC_MSG_RESULT(no)
94#fi
95
96#AC_MSG_CHECKING(whether to enable serialization)
97#default="no"
98#AC_ARG_ENABLE(debug, [ --enable-serialization=[no/yes] turn on serialization support
99# [default=$default]],, enable_serialization=$default)
100#if test "x$enable_serialization" = "xyes"; then
101# CXXFLAGS="$CXXFLAGS -DSERIALIZATION"
102# serialization=yes;
103# AC_MSG_RESULT(yes)
104#else
105# serialization=no;
106# AC_MSG_RESULT(no)
107#fi
108
109# Checks for libraries.
110AC_CHECK_LIB(m, sqrt, , AC_MSG_ERROR([compatible libc math library not found]))
111
112# Boost libraries
113BOOST_REQUIRE([1.40])
114BOOST_EXCEPTION
115BOOST_FILESYSTEM
116BOOST_PROGRAM_OPTIONS
117BOOST_RANDOM
118BOOST_THREADS
119
120#QT4 libraries
121gw_CHECK_QT4
122AX_CHECK_GLU
123#AC_MSG_NOTICE(["GLU_CFLAGS: $GLU_CFLAGS, GLU_CXXFLAGS: $GLU_CXXFLAGS, GLU_LDFLAGS: $GLU_LDFLAGS, GLU_LIBS: $GLU_LIBS"])
124
125# CodePatterns library (needs operator<<(.., range<>) )
126AM_PATH_CODEPATTERNS([1.0.13], $have_debug,,[AC_MSG_ERROR([Missing CodePatterns library, please specify PKG_CONFIG_PATH or use --with-codepatterns...])])
127
128# Checks for header files.
129AC_HEADER_STDC
130AC_CHECK_HEADERS([sys/time.h])
131AC_HEADER_STDBOOL
132
133AC_FUNC_MALLOC
134AC_FUNC_REALLOC
135AC_CHECK_FUNCS([floor pow sqrt strchr])
136
137# Checks for typedefs, structures, and compiler characteristics.
138AC_C_CONST
139AC_C_INLINE
140AC_C_RESTRICT
141AC_TYPE_SIZE_T
142
143# Checks for library functions.
144# check for GNU Scientific Library
145AC_CHECK_HEADERS([gsl/gsl_blas.h])
146AC_SEARCH_LIBS(dnrm2, goto blas cblas gslblas gslcblas)
147AC_CHECK_LIB(gsl, main, [],
148 [AC_SEARCH_LIBS(cblas_dnrm2, blas cblas gslblas gslcblas)])
149AC_CHECK_LIB(gsl, gsl_blas_dnrm2, , [AC_MSG_ERROR(["No working BLAS found for GSL, stopping."])])
150
151# add replacement/saturation hydrogen or not
152AC_ARG_ENABLE([hydrogen],AS_HELP_STRING([--enable-hydrogen],[Adding saturation hydrogen (default is yes)]),
153 [enable_hydrogen=$enableval], [enable_hydrogen=yes])
154if test x"$enable_hydrogen" = xyes; then
155 AC_DEFINE(ADDHYDROGEN,1, ["Adding saturation hydrogen"])
156 AC_SUBST(ADDHYDROGEN)
157fi
158
159# use CppUnit TestRunner or not
160AC_ARG_ENABLE([ecut],AS_HELP_STRING([--enable-ecut],[Use ECut TestRunnerClient (default is no)]),
161 [enable_ecut=$enableval], [enable_ecut=no])
162if test x"$enable_ecut" = xyes; then
163 AC_DEFINE(HAVE_ECUT,1, ["Use ECut TestRunnerClient instead of our own."])
164 AC_SUBST(HAVE_ECUT)
165fi
166
167# with valgrinding testsuite or not
168AC_ARG_WITH([valgrind],AS_HELP_STRING([--with-valgrind],[Use Valgrind on the testsuite (default is no)]),
169 [with_valgrind=$withval], [with_valgrind=no])
170if test x"$with_valgrind" = xyes; then
171 AC_CHECK_HEADER([valgrind/valgrind.h],
172 [
173 # check header
174 AC_DEFINE(HAVE_VALGRIND_TESTSUITE,1, ["Use Valgrind to check the testsuite."])
175 # check path
176 AC_PATH_PROG(VALGRIND, [valgrind], [/bin/false])
177 # set variables
178 AC_SUBST(HAVE_VALGRIND_TESTSUITE)
179 AC_SUBST(VALGRIND)
180 ],
181 [
182 AC_MSG_ERROR(["Valgrind support requested but headers not available."])
183 ]
184 )
185fi
186
187# Check for "extern inline", using a modified version
188# of the test for AC_C_INLINE from acspecific.mt
189AC_CACHE_CHECK([for extern inline], ac_cv_c_extern_inline,
190[ac_cv_c_extern_inline=no
191AC_TRY_COMPILE([extern $ac_cv_c_inline double foo(double x);
192extern $ac_cv_c_inline double foo(double x) { return x+1.0; };
193double foo (double x) { return x + 1.0; };],
194[ foo(1.0) ],
195[ac_cv_c_extern_inline="yes"])
196])
197
198if test "$ac_cv_c_inline" != no ; then
199 AC_DEFINE(HAVE_INLINE,1, ["May use inline routines"])
200 AC_SUBST(HAVE_INLINE)
201fi
202
203#AC_MSG_NOTICE(["CFLAGS: $CFLAGS, CXXFLAGS: $CXXFLAGS, LDFLAGS: $LDFLAGS, CC: $CC, CXX:, $CXX, MPICC: $MPICC, MPILIBS: $MPILIBS, LIBS: $LIBS"])
204
205# test suite
206AC_CONFIG_FILES([
207 tests/Makefile])
208
209AC_CONFIG_TESTDIR(tests/CodeChecks)
210AC_CONFIG_FILES([
211 tests/CodeChecks/atlocal
212 tests/CodeChecks/Makefile])
213
214AC_CONFIG_TESTDIR(tests/Fragmentations)
215AC_CONFIG_FILES([
216 tests/Fragmentations/atlocal
217 tests/Fragmentations/Makefile])
218AC_CONFIG_FILES([tests/Fragmentations/molecuilder], [chmod +x tests/Fragmentations/molecuilder])
219
220AC_CONFIG_TESTDIR(tests/regression)
221AC_CONFIG_FILES([
222 tests/regression/atlocal
223 tests/regression/Makefile])
224AC_CONFIG_FILES([tests/regression/molecuilder], [chmod +x tests/regression/molecuilder])
225
226AC_CONFIG_TESTDIR(tests/Tesselations)
227AC_CONFIG_FILES([
228 tests/Tesselations/atlocal
229 tests/Tesselations/Makefile])
230AC_CONFIG_FILES([tests/Tesselations/molecuilder], [chmod +x tests/Tesselations/molecuilder])
231
232AC_CONFIG_FILES([
233 doc/molecuilder.xml])
234AC_CONFIG_FILES([
235 MoleCuilder.pc:MoleCuilder.pc.in])
236AC_CONFIG_FILES([
237 Makefile
238 doc/Makefile
239 src/Makefile
240])
241AC_CONFIG_FILES([
242 src/unittests/Makefile
243])
244AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.