source: configure.ac@ caece4

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 caece4 was 74459a, checked in by Frederik Heber <heber@…>, 11 years ago

Added --disable-action-thread to allow disabling of extra run thread.

  • this removes all functionality related to having ActionQueue::run() executed in a distinct thread.
  • the extra thread is currently disabled by default as probably some stuff in QtGUI will be broken (bonds disappearing while being drawn ...)
  • Property mode set to 100644
File size: 14.4 KB
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(MoleCuilder, 1.4.4, [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.
18AC_PROG_CXX
19AC_PROG_INSTALL
20
21# check for cppunit (taken from svn.apache.org/../xmlbeanscxx)
22AM_PATH_CPPUNIT(1.9.6)
23AM_CONDITIONAL(CONDCPPUNIT, test "$CPPUNIT_LIBS")
24
25dnl Check if we have enable python
26# python module
27AC_MSG_CHECKING(whether to enable python module)
28AC_ARG_ENABLE(
29 [python],
30 AS_HELP_STRING([--enable-python],[turn on python module [default=yes]]),
31 enable_python=$enableval,
32 enable_python="yes")
33AC_MSG_RESULT($enable_python)
34AS_IF([test x"$enable_python" != x"no"],[
35 # Python (for boost::python)
36 AM_PATH_PYTHON([2.2])
37 AX_PYTHON
38 AC_DEFINE(HAVE_PYTHON,1, ["Build python module and scripts."])
39])
40AM_CONDITIONAL([CONDPYTHON], [test x"$enable_python" != x"no"])
41AC_SUBST(HAVE_PYTHON)
42
43dnl Check whether no extra thread for ActionQueue shall be used
44AC_MSG_CHECKING(whether to enable ActionQueue's run thread)
45AC_ARG_ENABLE(
46 [action_thread],
47 AS_HELP_STRING([--enable-action-thread],[turn on extra run thread for ActionQueue [default=yes]]),
48 enable_action_thread=$enableval,
49 enable_action_thread="no"
50)
51AC_MSG_RESULT($enable_action_thread)
52AS_IF([test x"$enable_action_thread" != x"no"],[
53 AC_DEFINE(HAVE_ACTION_THREAD,1, ["Have extra run thread for ActionQueue."])
54])
55AM_CONDITIONAL([CONDACTIONTHREAD], [test x"$enable_action_thread" != x"no"])
56AC_SUBST(HAVE_ACTION_THREAD)
57
58dnl Check if we have enable qtgui
59# Qt programs
60AC_MSG_CHECKING(whether to enable Qt-based GUI)
61AC_ARG_ENABLE(
62 [qtgui],
63 AS_HELP_STRING([--enable-qtgui],[turn on Qt GUI compilation [default=yes]]),
64 enable_qtgui=$enableval,
65 enable_qtgui="yes")
66AC_MSG_RESULT($enable_qtgui)
67AS_IF([test x"$enable_qtgui" != x"no"],[
68 AC_ARG_WITH(
69 [Qt-bin],
70 [AS_HELP_STRING([--with-Qt-bin], [give path to Qt binaries])],
71 [have_qtgui_path=$withval],
72 have_qtgui_path="")
73 AC_PATH_PROGS([QT_MOC],
74 [moc-qt4 moc],
75 [AC_MSG_ERROR(["Qts moc not found, please use --with-Qt-bin."])],
76 [$have_qtgui_path]
77 )
78 AC_PATH_PROGS([QT_RCC],
79 [rcc-qt4 rcc],
80 [AC_MSG_ERROR(["Qts rcc not found, please use --with-Qt-bin."])],
81 [$have_qtgui_path]
82 )
83 AC_PATH_PROGS([QT_UIC],
84 [uic-qt4 uic],
85 [AC_MSG_ERROR(["Qts uic not found, please use --with-Qt-bin."])],
86 [$have_qtgui_path]
87 )
88 PKG_CHECK_MODULES([QT], [QtCore QtGui Qt3D], [
89 ])
90 AC_SUBST([QT_CFLAGS])
91 AC_SUBST([QT_LIBS])
92 AC_DEFINE(HAVE_QTGUI,1, ["Build Qt-based GUI"])
93])
94AM_CONDITIONAL([CONDQTGUI], [test x"$enable_qtgui" != x"no"])
95AC_SUBST(HAVE_QTGUI)
96
97# check additionally for QWT to enable plotting of potentials
98AC_MSG_CHECKING(whether to enable Qwt-based plotting)
99#enable_qwt=yes
100AC_ARG_ENABLE(
101 [qwt],
102 AS_HELP_STRING([--enable-qwt],[turn on Qwt compilation [default=yes]]),
103 enable_qwt=$enableval,
104 enable_qwt="yes")
105AC_MSG_RESULT($enable_qwt)
106AS_IF([test x"$enable_qwt" != x"no"],[
107 MOL_AC_HAVE_QWT_IFELSE(
108 [
109 enable_qwt=yes
110 AC_DEFINE(HAVE_QWT,1, ["Build Qwt-based plotting"])
111 ],
112 [
113 enable_qwt=no
114 AC_MSG_WARN([Qwt not found, disabling plotting in QtUI.])
115 ]
116 )
117])
118AM_CONDITIONAL([CONDQWT], [test x"$enable_qwt" != x"no"])
119AC_SUBST(HAVE_QWT)
120
121# use doxygen
122DX_HTML_FEATURE(ON)
123DX_PS_FEATURE(OFF)
124DX_PDF_FEATURE(OFF)
125DX_INIT_DOXYGEN(MoleCuilder, Doxyfile, ${docdir})
126
127# use libtool
128LT_INIT([static])
129
130# Define these substitions here to keep all version information in one place.
131# For information on how to properly maintain the library version information,
132# refer to the libtool manual, section "Updating library version information":
133# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
134AC_SUBST([MOLECUILDER_SO_VERSION], [13:2:1])
135AC_SUBST([MOLECUILDER_API_VERSION], [1.4.4])
136
137dnl this macro is used to get the arguments supplied
138dnl to the configure script (./configure --enable-debug)
139dnl Check if we have enable debug support.
140AC_MSG_CHECKING(whether to enable debugging)
141have_debug="no"
142AC_ARG_ENABLE(
143 [debug],
144 AS_HELP_STRING([--enable-debug],[turn on debugging [default=no]]),
145 enable_debug=$enableval,
146 enable_debug="no")
147AC_MSG_RESULT($enable_debug)
148AS_IF([test x"$enable_debug" = x"yes"],[
149 AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
150 AC_DEFINE(HAVE_DEBUG,1, ["Use debug setting to compile code."])
151 have_debug="yes"
152],[
153 AS_IF([test x"$enable_debug" = x"full"],[
154 AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
155 AC_DEFINE(LOG_OBSERVER,1, ["Use observer log."])
156 AC_DEFINE(HAVE_DEBUG,2, ["Use debug setting to compile code."])
157 AC_DEFINE(QT_DEBUG,, ["Enable Qt debug messages."])
158 have_debug="full"
159 ],[
160 AC_DEFINE(NDEBUG,1, ["Don't compile in debugging code."])
161 AC_DEFINE(HAVE_DEBUG,0, ["Use debug setting to compile code."])
162 AC_DEFINE(QT_NO_DEBUG,, ["Disable Qt debug messages."])
163 have_debug="no"
164 ])
165])
166AC_SUBST(HAVE_DEBUG)
167
168dnl this macro is used to get the arguments supplied
169dnl to the configure script (./configure --enable-debug)
170dnl Check if we have enable debug support.
171AC_MSG_CHECKING(whether to enable internal caching/lazy evaluation)
172AC_ARG_ENABLE(
173 [cache],
174 AS_HELP_STRING([--enable-cache],[turn on internal lazy evaluation [default=yes]]),
175 enable_cache=$enableval,
176 enable_cache="yes")
177AC_MSG_RESULT($enable_cache)
178AS_IF([test x"$enable_cache" != x"no"],[
179 AC_DEFINE(HAVE_CACHE,1, ["cache variables to speed up the code."])
180],[
181 AC_DEFINE(NO_CACHING,1, ["Don't use caching code."])
182 AC_DEFINE(HAVE_CACHE,0, ["cache variables to speed up the code."])
183])
184AC_SUBST(HAVE_CACHE)
185
186# Checks for libraries.
187AC_CHECK_LIB(m, sqrt, , AC_MSG_ERROR([compatible libc math library not found]))
188
189# Boost
190BOOST_REQUIRE([1.40])
191
192# Boost headers only
193BOOST_ANY
194BOOST_ARRAY
195BOOST_BIMAP
196BOOST_BIND
197BOOST_CAST
198BOOST_CONVERSION
199BOOST_EXCEPTION
200BOOST_FOREACH
201BOOST_FUNCTION
202BOOST_FUSION
203BOOST_GRAPH
204BOOST_ITERATOR
205BOOST_MULTIARRAY
206BOOST_MPL
207BOOST_PREPROCESSOR
208BOOST_RANDOM
209BOOST_SMART_PTR
210BOOST_STRING_ALGO
211BOOST_TOKENIZER
212
213# Boost headers with libraries
214BOOST_FILESYSTEM
215BOOST_IOSTREAMS
216BOOST_PROGRAM_OPTIONS
217AS_IF([test x"$enable_python" != x"no"], [BOOST_PYTHON])
218BOOST_SERIALIZATION
219BOOST_THREADS
220
221
222# CodePatterns library (extended toString.hpp)
223AM_PATH_CODEPATTERNS([1.2.7], $have_debug,,[AC_MSG_ERROR([Missing CodePatterns library, please specify PKG_CONFIG_PATH or use --with-codepatterns...])])
224
225# JobMarket library (needs boost/archive/iserializer.hpp before MemDebug.hpp)
226AC_MSG_CHECKING(whether to enable jobmarket)
227AC_ARG_ENABLE(
228 [jobmarket],
229 AS_HELP_STRING([--enable-jobmarket],[turn on JobMarket feature [default=yes]]),
230 enable_jobmarket=$enableval,
231 enable_jobmarket="yes")
232AC_MSG_RESULT($enable_jobmarket)
233AS_IF([test x"$enable_jobmarket" != x"no"],[
234 # JobMarket library (needs priorizing of jobs)
235 AM_PATH_JOBMARKET([1.1.4], $have_debug,[
236 # the following is only required if we have JobMarket
237 BOOST_ASIO
238 AC_DEFINE(HAVE_JOBMARKET,1, ["use JobMarket to calculate fragment jobs."])
239 ],[
240 enable_jobmarket="no"
241 ])
242]
243#[
244# AC_DEFINE(HAVE_JOBMARKET,0, ["use JobMarket to calculate fragment jobs."])
245#]
246)
247AC_SUBST(HAVE_JOBMARKET)
248AM_CONDITIONAL([CONDJOBMARKET], [test x"$enable_jobmarket" = x"yes"])
249
250# VMG library
251AC_MSG_CHECKING(whether to compile in long-range support via VMG)
252AC_ARG_ENABLE(
253 [vmg],
254 [AS_HELP_STRING([--enable-vmg], [turn on long-range potential calculation via VMG [default=no]])],
255 [enable_vmg=$enableval],
256 enable_vmg="no")
257AC_MSG_RESULT($enable_vmg)
258AS_IF([test x"$enable_vmg" != x"no"],[
259 PKG_CHECK_MODULES(VMG, VMG >= 0.1)
260 AC_SUBST(VMG_CFLAGS)
261 AC_SUBST(VMG_LIBS)
262 AC_DEFINE(HAVE_VMG,1, ["use VMG to calculate long-range contributions."])
263
264 # check whether to use mpi
265 AC_ARG_WITH(
266 [vmg-mpi],
267 [AS_HELP_STRING([--with-vmg-mpi], [whether to use MPI for communication in VMGJobs])],
268 [with_vmg_mpi=yes],
269 [with_vmg_mpi=no])
270 AS_IF(
271 [test "x$with_vmg_mpi" != xno],
272 [
273 AC_LANG_SAVE
274 AC_LANG_CPLUSPLUS
275 LX_FIND_MPI
276 AC_LANG_RESTORE
277 AS_IF([test "x$have_CXX_mpi" = xyes],[
278 AC_DEFINE([MPICH_SKIP_MPICXX], [1], [Skip C++ bindings])
279 AC_DEFINE([OMPI_SKIP_MPICXX], [1], [Skip C++ bindings])
280 AC_DEFINE([MPI_NO_CPPBIND], [1], [Skip C++ bindings])
281 AC_DEFINE([_MPICC_H], [1], [Skip C++ bindings])
282 AC_DEFINE([MPIBULL_SKIP_MPICXX], [1], [Skip C++ bindings])
283 ])
284 ],
285 [])
286])
287AM_CONDITIONAL([CONDVMG], [test x"$enable_vmg" = x"yes"])
288AM_CONDITIONAL([CONDVMGMPI], [test x"$have_CXX_mpi" = x"yes"])
289
290
291# Check for Levenberg-Marquardt implementation
292AC_MSG_CHECKING(whether to enable function fitting via levmar)
293AC_ARG_ENABLE(
294 [levmar],
295 AS_HELP_STRING([--enable-levmar],[turn on LevMar feature [default=no]]),
296 enable_levmar=$enableval,
297 enable_levmar="no")
298AC_MSG_RESULT($enable_levmar)
299# don't use AS_IF here as it expands (and tests) AC_F77_FUN evene if levmar
300# is disabled.
301if test x"$enable_levmar" = x"yes"; then
302 AX_LAPACK([enable_levmar=yes],[enable_levmar=no])
303fi
304AS_IF([test x"$enable_levmar" = x"yes"],[
305 AC_ARG_WITH(
306 [levmar],
307 [AS_HELP_STRING([--with-levmar], [give path to LevMar package])],
308 [have_levmar_path=$withval],
309 [enable_levmar=no])
310 ],[enable_levmar=no])
311AS_IF([test x"$enable_levmar" = x"yes"],[
312 LEVMAR_CPPFLAGS="-I${have_levmar_path}/include"
313 LEVMAR_LDFLAGS="-L${have_levmar_path}/lib"
314 LEVMAR_LIBS="-llevmar"
315 AC_SUBST(LEVMAR_CPPFLAGS)
316 AC_SUBST(LEVMAR_LDFLAGS)
317 AC_SUBST(LEVMAR_LIBS)
318 AC_DEFINE(HAVE_LEVMAR,1, ["use levmar for non-linear minimisation/potential fitting."])
319 ],[AC_MSG_WARN(["Missing LAPACK, disabling off levmar"])])
320AM_CONDITIONAL([CONDLEVMAR], [test x"$enable_levmar" = x"yes"])
321
322# Checks for header files.
323AC_HEADER_STDC
324AC_CHECK_HEADERS([sys/time.h])
325AC_HEADER_STDBOOL
326
327AC_FUNC_MALLOC
328AC_FUNC_REALLOC
329AC_CHECK_FUNCS([floor pow sqrt strchr])
330
331# Checks for typedefs, structures, and compiler characteristics.
332AC_C_CONST
333AC_C_INLINE
334AC_C_RESTRICT
335AC_TYPE_SIZE_T
336
337# Checks for library functions.
338# check for GNU Scientific Library
339AC_CHECK_HEADERS([gsl/gsl_blas.h])
340AC_SEARCH_LIBS(dnrm2, gslblas gslcblas goto blas cblas)
341AC_SEARCH_LIBS(cblas_dnrm2, gslblas gslcblas blas cblas)
342AC_SEARCH_LIBS(gsl_blas_dnrm2,, gsl)
343#AC_CHECK_LIB(gsl, gsl_blas_dnrm2, , [AC_MSG_ERROR(["No working BLAS found for GSL, stopping."])])
344AC_CHECK_LIB(gsl, main)
345
346# use CppUnit TestRunner or not
347AC_MSG_CHECKING(whether to enable ECut TestRunnerClient)
348AC_ARG_ENABLE(
349 [ecut],
350 AS_HELP_STRING([--enable-ecut],[Use ECut TestRunnerClient [default=no]]),
351 enable_ecut=$disableval,
352 enable_ecut="no")
353AC_MSG_RESULT($enable_ecut)
354AS_IF([test x"$enable_ecut" = x"yes"],[
355 AC_DEFINE(HAVE_ECUT,1, ["Use ECut TestRunnerClient instead of our own."])
356 AC_SUBST(HAVE_ECUT)
357])
358AM_CONDITIONAL([CONDECUT], [test x"$enable_ecut" = x"yes"])
359
360# with valgrinding testsuite or not
361AC_MSG_CHECKING(whether to enable valgrind memory checking in testsuite)
362AC_ARG_ENABLE(
363 [valgrind],
364 AS_HELP_STRING([--enable-valgrind],[Use Valgrind on the testsuite [default=no]]),
365 enable_valgrind=$enableval,
366 enable_valgrind="no")
367AC_MSG_RESULT($enable_valgrind)
368AS_IF([test x"$enable_valgrind" = x"yes"], [
369 AC_CHECK_HEADER([valgrind/valgrind.h],
370 [
371 # check header
372 AC_DEFINE(HAVE_VALGRIND_TESTSUITE,1, ["Use Valgrind to check the testsuite."])
373 # check path
374 AC_PATH_PROG(VALGRIND, [valgrind], [/bin/false])
375 # set variables
376 AC_SUBST(HAVE_VALGRIND_TESTSUITE)
377 AC_SUBST(VALGRIND)
378 ],
379 [
380 AC_MSG_ERROR(["Valgrind support requested but headers not available."])
381 ]
382 )
383])
384
385# Check for "extern inline", using a modified version
386# of the test for AC_C_INLINE from acspecific.mt
387AC_CACHE_CHECK([for extern inline], ac_cv_c_extern_inline,
388[ac_cv_c_extern_inline=no
389AC_TRY_COMPILE([extern $ac_cv_c_inline double foo(double x);
390extern $ac_cv_c_inline double foo(double x) { return x+1.0; };
391double foo (double x) { return x + 1.0; };],
392[ foo(1.0) ],
393[ac_cv_c_extern_inline="yes"])
394])
395
396if test "$ac_cv_c_inline" != no ; then
397 AC_DEFINE(HAVE_INLINE,1, ["May use inline routines"])
398 AC_SUBST(HAVE_INLINE)
399fi
400
401#AC_MSG_NOTICE(["CFLAGS: $CFLAGS, CXXFLAGS: $CXXFLAGS, LDFLAGS: $LDFLAGS, CC: $CC, CXX:, $CXX, MPICC: $MPICC, MPILIBS: $MPILIBS, LIBS: $LIBS"])
402
403# test suite
404
405AC_CONFIG_FILES([
406 tests/Makefile])
407
408AC_CONFIG_TESTDIR(tests/CodeChecks)
409AC_CONFIG_FILES([
410 tests/CodeChecks/atlocal
411 tests/CodeChecks/Makefile])
412
413AC_CONFIG_TESTDIR(tests/Fragmentations)
414AC_CONFIG_FILES([
415 tests/Fragmentations/atlocal
416 tests/Fragmentations/Makefile])
417AC_CONFIG_FILES([tests/Fragmentations/analyzer], [chmod +x tests/Fragmentations/analyzer])
418AC_CONFIG_FILES([tests/Fragmentations/joiner], [chmod +x tests/Fragmentations/joiner])
419AC_CONFIG_FILES([tests/Fragmentations/molecuilder], [chmod +x tests/Fragmentations/molecuilder])
420
421AC_CONFIG_TESTDIR(tests/JobMarket)
422AC_CONFIG_FILES([
423 tests/JobMarket/atlocal
424 tests/JobMarket/Makefile])
425AC_CONFIG_FILES([tests/JobMarket/molecuilder], [chmod +x tests/JobMarket/molecuilder])
426
427AC_CONFIG_TESTDIR(tests/regression)
428AC_CONFIG_FILES([
429 tests/regression/atlocal
430 tests/regression/Makefile])
431AC_CONFIG_FILES([tests/regression/molecuilder], [chmod +x tests/regression/molecuilder])
432AC_CONFIG_FILES([tests/regression/runpython], [chmod +x tests/regression/runpython])
433
434AC_CONFIG_TESTDIR(tests/Tesselations)
435AC_CONFIG_FILES([
436 tests/Tesselations/atlocal
437 tests/Tesselations/Makefile])
438AC_CONFIG_FILES([tests/Tesselations/molecuilder], [chmod +x tests/Tesselations/molecuilder])
439
440AC_CONFIG_FILES([
441 doc/molecuilder.xml])
442AC_CONFIG_FILES([
443 MoleCuilder.pc:MoleCuilder.pc.in])
444AC_CONFIG_FILES([
445 Makefile
446 doc/Makefile
447 src/Makefile
448 data/icons/Makefile
449 utils/Makefile
450])
451AC_CONFIG_FILES([
452 src/unittests/Makefile
453])
454
455# produce python scripts and tests only when python's present
456AC_CONFIG_TESTDIR([tests/Python])
457AC_CONFIG_FILES([tests/Python/atlocal])
458AM_COND_IF([CONDPYTHON],[
459 AC_CONFIG_FILES([utils/Python/boxmaker.py:utils/Python/boxmaker.py.in], [chmod +x utils/Python/boxmaker.py])
460 AC_CONFIG_FILES([utils/Python/python_wrapper:utils/Python/python_wrapper.in], [chmod +x utils/Python/python_wrapper])
461 AC_CONFIG_FILES([tests/Python/run], [chmod +x tests/Python/run])
462])
463AC_CONFIG_FILES([tests/Python/Makefile])
464
465AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.