[14de469] | 1 | # -*- Autoconf -*-
|
---|
| 2 | # Process this file with autoconf to produce a configure script.
|
---|
| 3 |
|
---|
| 4 | AC_PREREQ(2.59)
|
---|
[134f43] | 5 | AC_INIT(MoleCuilder, 1.4.2, [heber@ins.uni-bonn.de], [molecuilder], [http://trac.ins.uni-bonn.de/projects/molecuilder/])
|
---|
[bf4b9f] | 6 | AC_CONFIG_AUX_DIR([build-aux])
|
---|
[14de469] | 7 | AC_CONFIG_SRCDIR([src/builder.cpp])
|
---|
[861874] | 8 | AC_CONFIG_HEADER([config.h libmolecuilder_config.h])
|
---|
| 9 | AC_CONFIG_MACRO_DIR([m4])
|
---|
[bf4b9f] | 10 | AC_CONFIG_SUBDIRS([LinearAlgebra])
|
---|
[14de469] | 11 |
|
---|
[dc322a] | 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)
|
---|
[4cf35ac] | 15 | AM_INIT_AUTOMAKE([dist-bzip2 1.5 parallel-tests color-tests tar-pax])
|
---|
[14de469] | 16 |
|
---|
| 17 | # Checks for programs.
|
---|
| 18 | AC_PROG_CXX
|
---|
[54a746] | 19 | AC_PROG_INSTALL
|
---|
[14de469] | 20 |
|
---|
[0cfc27] | 21 | # check for cppunit (taken from svn.apache.org/../xmlbeanscxx)
|
---|
| 22 | AM_PATH_CPPUNIT(1.9.6)
|
---|
| 23 | AM_CONDITIONAL(CONDCPPUNIT, test "$CPPUNIT_LIBS")
|
---|
| 24 |
|
---|
[c015b3] | 25 | dnl Check if we have enable python
|
---|
| 26 | # python module
|
---|
| 27 | AC_MSG_CHECKING(whether to enable python module)
|
---|
[f99714] | 28 | AC_ARG_ENABLE(
|
---|
| 29 | [python],
|
---|
| 30 | AS_HELP_STRING([--enable-python],[turn on python module [default=yes]]),
|
---|
| 31 | enable_python=$enableval,
|
---|
| 32 | enable_python="yes")
|
---|
[c015b3] | 33 | AC_MSG_RESULT($enable_python)
|
---|
| 34 | AS_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 | ])
|
---|
| 40 | AM_CONDITIONAL([CONDPYTHON], [test x"$enable_python" != x"no"])
|
---|
| 41 | AC_SUBST(HAVE_PYTHON)
|
---|
| 42 |
|
---|
| 43 | dnl Check if we have enable qtgui
|
---|
[e5cec4] | 44 | # Qt programs
|
---|
[c015b3] | 45 | AC_MSG_CHECKING(whether to enable Qt-based GUI)
|
---|
[f99714] | 46 | AC_ARG_ENABLE(
|
---|
| 47 | [qtgui],
|
---|
| 48 | AS_HELP_STRING([--enable-qtgui],[turn on Qt GUI compilation [default=yes]]),
|
---|
| 49 | enable_qtgui=$enableval,
|
---|
| 50 | enable_qtgui="yes")
|
---|
[c015b3] | 51 | AC_MSG_RESULT($enable_qtgui)
|
---|
| 52 | AS_IF([test x"$enable_qtgui" != x"no"],[
|
---|
[93909a] | 53 | AC_ARG_WITH(
|
---|
| 54 | [Qt-bin],
|
---|
| 55 | [AS_HELP_STRING([--with-Qt-bin], [give path to Qt binaries])],
|
---|
| 56 | [have_qtgui_path=$withval],
|
---|
| 57 | have_qtgui_path="")
|
---|
[c015b3] | 58 | AC_PATH_PROGS([QT_MOC],
|
---|
[e5cec4] | 59 | [moc-qt4 moc],
|
---|
| 60 | [AC_MSG_ERROR(["Qts moc not found, please use --with-Qt-bin."])],
|
---|
[c015b3] | 61 | [$have_qtgui_path]
|
---|
[e5cec4] | 62 | )
|
---|
[5b991a] | 63 | AC_PATH_PROGS([QT_RCC],
|
---|
| 64 | [rcc-qt4 rcc],
|
---|
| 65 | [AC_MSG_ERROR(["Qts rcc not found, please use --with-Qt-bin."])],
|
---|
| 66 | [$have_qtgui_path]
|
---|
| 67 | )
|
---|
[e5cec4] | 68 | AC_PATH_PROGS([QT_UIC],
|
---|
| 69 | [uic-qt4 uic],
|
---|
| 70 | [AC_MSG_ERROR(["Qts uic not found, please use --with-Qt-bin."])],
|
---|
[c015b3] | 71 | [$have_qtgui_path]
|
---|
[e5cec4] | 72 | )
|
---|
[c015b3] | 73 | PKG_CHECK_MODULES([QT], [QtCore QtGui Qt3D], [
|
---|
| 74 | ])
|
---|
| 75 | AC_SUBST([QT_CFLAGS])
|
---|
| 76 | AC_SUBST([QT_LIBS])
|
---|
| 77 | AC_DEFINE(HAVE_QTGUI,1, ["Build Qt-based GUI"])
|
---|
[e5cec4] | 78 | ])
|
---|
[c015b3] | 79 | AM_CONDITIONAL([CONDQTGUI], [test x"$enable_qtgui" != x"no"])
|
---|
| 80 | AC_SUBST(HAVE_QTGUI)
|
---|
[e5cec4] | 81 |
|
---|
[ec188c] | 82 | # use doxygen
|
---|
| 83 | DX_HTML_FEATURE(ON)
|
---|
| 84 | DX_PS_FEATURE(OFF)
|
---|
| 85 | DX_PDF_FEATURE(OFF)
|
---|
[3158e6] | 86 | DX_INIT_DOXYGEN(MoleCuilder, Doxyfile, ${docdir})
|
---|
[ec188c] | 87 |
|
---|
| 88 | # use libtool
|
---|
[a0064e] | 89 | LT_INIT([static])
|
---|
[861874] | 90 |
|
---|
| 91 | # Define these substitions here to keep all version information in one place.
|
---|
| 92 | # For information on how to properly maintain the library version information,
|
---|
| 93 | # refer to the libtool manual, section "Updating library version information":
|
---|
| 94 | # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
---|
[134f43] | 95 | AC_SUBST([MOLECUILDER_SO_VERSION], [13:1:0])
|
---|
| 96 | AC_SUBST([MOLECUILDER_API_VERSION], [1.4.2])
|
---|
[06aedc] | 97 |
|
---|
[dc031c] | 98 | dnl this macro is used to get the arguments supplied
|
---|
| 99 | dnl to the configure script (./configure --enable-debug)
|
---|
| 100 | dnl Check if we have enable debug support.
|
---|
| 101 | AC_MSG_CHECKING(whether to enable debugging)
|
---|
| 102 | have_debug="no"
|
---|
[f99714] | 103 | AC_ARG_ENABLE(
|
---|
| 104 | [debug],
|
---|
| 105 | AS_HELP_STRING([--enable-debug],[turn on debugging [default=no]]),
|
---|
| 106 | enable_debug=$enableval,
|
---|
| 107 | enable_debug="no")
|
---|
| 108 | AC_MSG_RESULT($enable_debug)
|
---|
| 109 | AS_IF([test x"$enable_debug" = x"yes"],[
|
---|
[dc031c] | 110 | AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
|
---|
| 111 | AC_DEFINE(HAVE_DEBUG,1, ["Use debug setting to compile code."])
|
---|
| 112 | have_debug="yes"
|
---|
[f99714] | 113 | ],[
|
---|
| 114 | AS_IF([test x"$enable_debug" = x"full"],[
|
---|
| 115 | AC_DEFINE(MEMDEBUG,1, ["Use memory debugger."])
|
---|
| 116 | AC_DEFINE(LOG_OBSERVER,1, ["Use observer log."])
|
---|
| 117 | AC_DEFINE(HAVE_DEBUG,2, ["Use debug setting to compile code."])
|
---|
| 118 | AC_DEFINE(QT_DEBUG,, ["Enable Qt debug messages."])
|
---|
| 119 | have_debug="full"
|
---|
| 120 | ],[
|
---|
| 121 | AC_DEFINE(NDEBUG,1, ["Don't compile in debugging code."])
|
---|
| 122 | AC_DEFINE(HAVE_DEBUG,0, ["Use debug setting to compile code."])
|
---|
| 123 | AC_DEFINE(QT_NO_DEBUG,, ["Disable Qt debug messages."])
|
---|
| 124 | have_debug="no"
|
---|
| 125 | ])
|
---|
| 126 | ])
|
---|
[dc031c] | 127 | AC_SUBST(HAVE_DEBUG)
|
---|
| 128 |
|
---|
| 129 | dnl this macro is used to get the arguments supplied
|
---|
| 130 | dnl to the configure script (./configure --enable-debug)
|
---|
| 131 | dnl Check if we have enable debug support.
|
---|
[f3b8a5] | 132 | AC_MSG_CHECKING(whether to enable internal caching/lazy evaluation)
|
---|
[f99714] | 133 | AC_ARG_ENABLE(
|
---|
| 134 | [cache],
|
---|
| 135 | AS_HELP_STRING([--enable-cache],[turn on internal lazy evaluation [default=yes]]),
|
---|
| 136 | enable_cache=$enableval,
|
---|
| 137 | enable_cache="yes")
|
---|
[f3b8a5] | 138 | AC_MSG_RESULT($enable_cache)
|
---|
[f99714] | 139 | AS_IF([test x"$enable_cache" != x"no"],[
|
---|
| 140 | AC_DEFINE(HAVE_CACHE,1, ["cache variables to speed up the code."])
|
---|
| 141 | ],[
|
---|
[dc031c] | 142 | AC_DEFINE(NO_CACHING,1, ["Don't use caching code."])
|
---|
| 143 | AC_DEFINE(HAVE_CACHE,0, ["cache variables to speed up the code."])
|
---|
[f99714] | 144 | ])
|
---|
[dc031c] | 145 | AC_SUBST(HAVE_CACHE)
|
---|
| 146 |
|
---|
[14de469] | 147 | # Checks for libraries.
|
---|
[861874] | 148 | AC_CHECK_LIB(m, sqrt, , AC_MSG_ERROR([compatible libc math library not found]))
|
---|
[14de469] | 149 |
|
---|
[f08ae7] | 150 | # Boost
|
---|
[79de12] | 151 | BOOST_REQUIRE([1.40])
|
---|
[f08ae7] | 152 |
|
---|
| 153 | # Boost headers only
|
---|
| 154 | BOOST_ANY
|
---|
[794bc8] | 155 | BOOST_ARRAY
|
---|
[4f04ab8] | 156 | BOOST_BIMAP
|
---|
[f08ae7] | 157 | BOOST_BIND
|
---|
[503acc1] | 158 | BOOST_CAST
|
---|
[f08ae7] | 159 | BOOST_CONVERSION
|
---|
[79de12] | 160 | BOOST_EXCEPTION
|
---|
[f08ae7] | 161 | BOOST_FOREACH
|
---|
| 162 | BOOST_FUNCTION
|
---|
[619a0e] | 163 | BOOST_FUSION
|
---|
[4f04ab8] | 164 | BOOST_GRAPH
|
---|
[30c753] | 165 | BOOST_ITERATOR
|
---|
[794bc8] | 166 | BOOST_MULTIARRAY
|
---|
[619a0e] | 167 | BOOST_MPL
|
---|
[f08ae7] | 168 | BOOST_PREPROCESSOR
|
---|
| 169 | BOOST_RANDOM
|
---|
| 170 | BOOST_SMART_PTR
|
---|
[7f570c] | 171 | BOOST_STRING_ALGO
|
---|
[f08ae7] | 172 | BOOST_TOKENIZER
|
---|
| 173 |
|
---|
| 174 | # Boost headers with libraries
|
---|
[79de12] | 175 | BOOST_FILESYSTEM
|
---|
[d920b9] | 176 | BOOST_IOSTREAMS
|
---|
[79de12] | 177 | BOOST_PROGRAM_OPTIONS
|
---|
[c015b3] | 178 | AS_IF([test x"$enable_python" != x"no"], [BOOST_PYTHON])
|
---|
[d7d022] | 179 | BOOST_SERIALIZATION
|
---|
[79de12] | 180 | BOOST_THREADS
|
---|
[fa861b] | 181 |
|
---|
[f08ae7] | 182 |
|
---|
[51e0e3] | 183 | # CodePatterns library (extended toString.hpp)
|
---|
| 184 | AM_PATH_CODEPATTERNS([1.2.7], $have_debug,,[AC_MSG_ERROR([Missing CodePatterns library, please specify PKG_CONFIG_PATH or use --with-codepatterns...])])
|
---|
[3027f8] | 185 |
|
---|
[004d5c] | 186 | # JobMarket library (needs boost/archive/iserializer.hpp before MemDebug.hpp)
|
---|
| 187 | AC_ARG_ENABLE(
|
---|
| 188 | [jobmarket],
|
---|
| 189 | AS_HELP_STRING([--enable-jobmarket],[turn on JobMarket feature [default=yes]]),
|
---|
| 190 | enable_jobmarket=$enableval,
|
---|
| 191 | enable_jobmarket="yes")
|
---|
| 192 | AC_MSG_RESULT($enable_jobmarket)
|
---|
| 193 | AS_IF([test x"$enable_jobmarket" != x"no"],[
|
---|
[a953c4] | 194 | # JobMarket library (needs priorizing of jobs)
|
---|
| 195 | AM_PATH_JOBMARKET([1.1.4], $have_debug,[
|
---|
[004d5c] | 196 | # the following is only required if we have JobMarket
|
---|
| 197 | BOOST_ASIO
|
---|
| 198 | AC_DEFINE(HAVE_JOBMARKET,1, ["use JobMarket to calculate fragment jobs."])
|
---|
| 199 | ],[
|
---|
| 200 | enable_jobmarket="no"
|
---|
| 201 | ])
|
---|
| 202 | ]
|
---|
| 203 | #[
|
---|
| 204 | # AC_DEFINE(HAVE_JOBMARKET,0, ["use JobMarket to calculate fragment jobs."])
|
---|
| 205 | #]
|
---|
| 206 | )
|
---|
| 207 | AC_SUBST(HAVE_JOBMARKET)
|
---|
| 208 | AM_CONDITIONAL([CONDJOBMARKET], [test x"$enable_jobmarket" = x"yes"])
|
---|
[3027f8] | 209 |
|
---|
[d2a0f6d] | 210 | # VMG library
|
---|
| 211 | AC_MSG_CHECKING(whether to compile in long-range support via VMG)
|
---|
| 212 | AC_ARG_ENABLE(
|
---|
| 213 | [vmg],
|
---|
| 214 | [AS_HELP_STRING([--enable-vmg], [turn on long-range potential calculation via VMG [default=no]])],
|
---|
| 215 | [enable_vmg=$enableval],
|
---|
| 216 | enable_vmg="no")
|
---|
| 217 | AC_MSG_RESULT($enable_vmg)
|
---|
| 218 | AS_IF([test x"$enable_vmg" != x"no"],[
|
---|
| 219 | PKG_CHECK_MODULES(VMG, VMG >= 0.1)
|
---|
| 220 | AC_SUBST(VMG_CFLAGS)
|
---|
| 221 | AC_SUBST(VMG_LIBS)
|
---|
[69c733] | 222 | AC_DEFINE(HAVE_VMG,1, ["use VMG to calculate long-range contributions."])
|
---|
[8a8c8c] | 223 |
|
---|
| 224 | # check whether to use mpi
|
---|
| 225 | AC_ARG_WITH(
|
---|
| 226 | [vmg-mpi],
|
---|
| 227 | [AS_HELP_STRING([--with-vmg-mpi], [whether to use MPI for communication in VMGJobs])],
|
---|
| 228 | [with_vmg_mpi=yes],
|
---|
| 229 | [with_vmg_mpi=no])
|
---|
| 230 | AS_IF(
|
---|
| 231 | [test "x$with_vmg_mpi" != xno],
|
---|
| 232 | [
|
---|
| 233 | AC_LANG_SAVE
|
---|
| 234 | AC_LANG_CPLUSPLUS
|
---|
| 235 | LX_FIND_MPI
|
---|
| 236 | AC_LANG_RESTORE
|
---|
| 237 | AS_IF([test "x$have_CXX_mpi" = xyes],[
|
---|
| 238 | AC_DEFINE([MPICH_SKIP_MPICXX], [1], [Skip C++ bindings])
|
---|
| 239 | AC_DEFINE([OMPI_SKIP_MPICXX], [1], [Skip C++ bindings])
|
---|
| 240 | AC_DEFINE([MPI_NO_CPPBIND], [1], [Skip C++ bindings])
|
---|
| 241 | AC_DEFINE([_MPICC_H], [1], [Skip C++ bindings])
|
---|
| 242 | AC_DEFINE([MPIBULL_SKIP_MPICXX], [1], [Skip C++ bindings])
|
---|
| 243 | ])
|
---|
| 244 | ],
|
---|
| 245 | [])
|
---|
[d2a0f6d] | 246 | ])
|
---|
| 247 | AM_CONDITIONAL([CONDVMG], [test x"$enable_vmg" = x"yes"])
|
---|
[8a8c8c] | 248 | AM_CONDITIONAL([CONDVMGMPI], [test x"$have_CXX_mpi" = x"yes"])
|
---|
[d2a0f6d] | 249 |
|
---|
| 250 |
|
---|
[f06d52] | 251 | # Check for Levenberg-Marquardt implementation
|
---|
[48d20d] | 252 | AC_ARG_ENABLE(
|
---|
| 253 | [levmar],
|
---|
| 254 | AS_HELP_STRING([--enable-levmar],[turn on LevMar feature [default=no]]),
|
---|
| 255 | enable_levmar=$enableval,
|
---|
| 256 | enable_levmar="no")
|
---|
| 257 | AS_IF([test x"$enable_levmar" = x"yes"],[
|
---|
| 258 | AX_LAPACK([enable_levmar=yes],[enable_levmar=no])])
|
---|
[f06d52] | 259 | AC_MSG_CHECKING(whether to compile in Levenberg-Marquardt)
|
---|
| 260 | AS_IF([test x"$enable_levmar" = x"yes"],[
|
---|
| 261 | AC_ARG_WITH(
|
---|
| 262 | [levmar],
|
---|
| 263 | [AS_HELP_STRING([--with-levmar], [give path to LevMar package])],
|
---|
| 264 | [have_levmar_path=$withval],
|
---|
| 265 | [enable_levmar=no])
|
---|
| 266 | ],[enable_levmar=no])
|
---|
| 267 | AC_MSG_RESULT($enable_levmar)
|
---|
| 268 | AS_IF([test x"$enable_levmar" = x"yes"],[
|
---|
| 269 | LEVMAR_CPPFLAGS="-I${have_levmar_path}/include"
|
---|
| 270 | LEVMAR_LDFLAGS="-L${have_levmar_path}/lib"
|
---|
| 271 | LEVMAR_LIBS="-llevmar"
|
---|
| 272 | AC_SUBST(LEVMAR_CPPFLAGS)
|
---|
| 273 | AC_SUBST(LEVMAR_LDFLAGS)
|
---|
| 274 | AC_SUBST(LEVMAR_LIBS)
|
---|
[24ac59] | 275 | AC_DEFINE(HAVE_LEVMAR,1, ["use levmar for non-linear minimisation/potential fitting."])
|
---|
[f06d52] | 276 | ])
|
---|
| 277 | AM_CONDITIONAL([CONDLEVMAR], [test x"$enable_levmar" = x"yes"])
|
---|
| 278 |
|
---|
[14de469] | 279 | # Checks for header files.
|
---|
| 280 | AC_HEADER_STDC
|
---|
| 281 | AC_CHECK_HEADERS([sys/time.h])
|
---|
| 282 | AC_HEADER_STDBOOL
|
---|
| 283 |
|
---|
[d3a46d] | 284 | AC_FUNC_MALLOC
|
---|
| 285 | AC_FUNC_REALLOC
|
---|
| 286 | AC_CHECK_FUNCS([floor pow sqrt strchr])
|
---|
| 287 |
|
---|
[14de469] | 288 | # Checks for typedefs, structures, and compiler characteristics.
|
---|
| 289 | AC_C_CONST
|
---|
| 290 | AC_C_INLINE
|
---|
| 291 | AC_C_RESTRICT
|
---|
| 292 | AC_TYPE_SIZE_T
|
---|
| 293 |
|
---|
| 294 | # Checks for library functions.
|
---|
| 295 | # check for GNU Scientific Library
|
---|
[bd3e55] | 296 | AC_CHECK_HEADERS([gsl/gsl_blas.h])
|
---|
[db1a72] | 297 | AC_SEARCH_LIBS(dnrm2, gslblas gslcblas goto blas cblas)
|
---|
| 298 | AC_SEARCH_LIBS(cblas_dnrm2, gslblas gslcblas blas cblas)
|
---|
| 299 | AC_SEARCH_LIBS(gsl_blas_dnrm2,, gsl)
|
---|
| 300 | #AC_CHECK_LIB(gsl, gsl_blas_dnrm2, , [AC_MSG_ERROR(["No working BLAS found for GSL, stopping."])])
|
---|
| 301 | AC_CHECK_LIB(gsl, main)
|
---|
[14de469] | 302 |
|
---|
[490038] | 303 | # use CppUnit TestRunner or not
|
---|
[f99714] | 304 | AC_MSG_CHECKING(whether to enable ECut TestRunnerClient)
|
---|
| 305 | AC_ARG_ENABLE(
|
---|
| 306 | [ecut],
|
---|
| 307 | AS_HELP_STRING([--enable-ecut],[Use ECut TestRunnerClient [default=no]]),
|
---|
| 308 | enable_ecut=$disableval,
|
---|
| 309 | enable_ecut="no")
|
---|
| 310 | AC_MSG_RESULT($enable_ecut)
|
---|
| 311 | AS_IF([test x"$enable_ecut" = x"yes"],[
|
---|
[9b6b2f] | 312 | AC_DEFINE(HAVE_ECUT,1, ["Use ECut TestRunnerClient instead of our own."])
|
---|
| 313 | AC_SUBST(HAVE_ECUT)
|
---|
[f99714] | 314 | ])
|
---|
[fbbcde] | 315 | AM_CONDITIONAL([CONDECUT], [test x"$enable_ecut" = x"yes"])
|
---|
[9b6b2f] | 316 |
|
---|
[490038] | 317 | # with valgrinding testsuite or not
|
---|
[f3b8a5] | 318 | AC_MSG_CHECKING(whether to enable valgrind memory checking in testsuite)
|
---|
[f99714] | 319 | AC_ARG_ENABLE(
|
---|
| 320 | [valgrind],
|
---|
| 321 | AS_HELP_STRING([--enable-valgrind],[Use Valgrind on the testsuite [default=no]]),
|
---|
| 322 | enable_valgrind=$enableval,
|
---|
| 323 | enable_valgrind="no")
|
---|
| 324 | AC_MSG_RESULT($enable_valgrind)
|
---|
| 325 | AS_IF([test x"$enable_valgrind" = x"yes"], [
|
---|
[490038] | 326 | AC_CHECK_HEADER([valgrind/valgrind.h],
|
---|
| 327 | [
|
---|
| 328 | # check header
|
---|
| 329 | AC_DEFINE(HAVE_VALGRIND_TESTSUITE,1, ["Use Valgrind to check the testsuite."])
|
---|
| 330 | # check path
|
---|
| 331 | AC_PATH_PROG(VALGRIND, [valgrind], [/bin/false])
|
---|
| 332 | # set variables
|
---|
| 333 | AC_SUBST(HAVE_VALGRIND_TESTSUITE)
|
---|
| 334 | AC_SUBST(VALGRIND)
|
---|
| 335 | ],
|
---|
| 336 | [
|
---|
| 337 | AC_MSG_ERROR(["Valgrind support requested but headers not available."])
|
---|
| 338 | ]
|
---|
| 339 | )
|
---|
[f3b8a5] | 340 | ])
|
---|
[490038] | 341 |
|
---|
[14de469] | 342 | # Check for "extern inline", using a modified version
|
---|
| 343 | # of the test for AC_C_INLINE from acspecific.mt
|
---|
| 344 | AC_CACHE_CHECK([for extern inline], ac_cv_c_extern_inline,
|
---|
| 345 | [ac_cv_c_extern_inline=no
|
---|
| 346 | AC_TRY_COMPILE([extern $ac_cv_c_inline double foo(double x);
|
---|
| 347 | extern $ac_cv_c_inline double foo(double x) { return x+1.0; };
|
---|
| 348 | double foo (double x) { return x + 1.0; };],
|
---|
| 349 | [ foo(1.0) ],
|
---|
| 350 | [ac_cv_c_extern_inline="yes"])
|
---|
| 351 | ])
|
---|
| 352 |
|
---|
| 353 | if test "$ac_cv_c_inline" != no ; then
|
---|
| 354 | AC_DEFINE(HAVE_INLINE,1, ["May use inline routines"])
|
---|
| 355 | AC_SUBST(HAVE_INLINE)
|
---|
| 356 | fi
|
---|
| 357 |
|
---|
[bd3e55] | 358 | #AC_MSG_NOTICE(["CFLAGS: $CFLAGS, CXXFLAGS: $CXXFLAGS, LDFLAGS: $LDFLAGS, CC: $CC, CXX:, $CXX, MPICC: $MPICC, MPILIBS: $MPILIBS, LIBS: $LIBS"])
|
---|
[a19da5d] | 359 |
|
---|
[0ca39c] | 360 | # test suite
|
---|
[878044] | 361 |
|
---|
[5079a0] | 362 | AC_CONFIG_FILES([
|
---|
[689639] | 363 | tests/Makefile])
|
---|
| 364 |
|
---|
| 365 | AC_CONFIG_TESTDIR(tests/CodeChecks)
|
---|
[d0a719] | 366 | AC_CONFIG_FILES([
|
---|
| 367 | tests/CodeChecks/atlocal
|
---|
| 368 | tests/CodeChecks/Makefile])
|
---|
[689639] | 369 |
|
---|
[740d40] | 370 | AC_CONFIG_TESTDIR(tests/Fragmentations)
|
---|
[038713] | 371 | AC_CONFIG_FILES([
|
---|
[740d40] | 372 | tests/Fragmentations/atlocal
|
---|
| 373 | tests/Fragmentations/Makefile])
|
---|
[878044] | 374 | AC_CONFIG_FILES([tests/Fragmentations/analyzer], [chmod +x tests/Fragmentations/analyzer])
|
---|
| 375 | AC_CONFIG_FILES([tests/Fragmentations/joiner], [chmod +x tests/Fragmentations/joiner])
|
---|
[740d40] | 376 | AC_CONFIG_FILES([tests/Fragmentations/molecuilder], [chmod +x tests/Fragmentations/molecuilder])
|
---|
[689639] | 377 |
|
---|
[004d5c] | 378 | AC_CONFIG_TESTDIR(tests/JobMarket)
|
---|
| 379 | AC_CONFIG_FILES([
|
---|
| 380 | tests/JobMarket/atlocal
|
---|
| 381 | tests/JobMarket/Makefile])
|
---|
| 382 | AC_CONFIG_FILES([tests/JobMarket/molecuilder], [chmod +x tests/JobMarket/molecuilder])
|
---|
| 383 |
|
---|
[689639] | 384 | AC_CONFIG_TESTDIR(tests/regression)
|
---|
| 385 | AC_CONFIG_FILES([
|
---|
| 386 | tests/regression/atlocal
|
---|
| 387 | tests/regression/Makefile])
|
---|
| 388 | AC_CONFIG_FILES([tests/regression/molecuilder], [chmod +x tests/regression/molecuilder])
|
---|
| 389 |
|
---|
| 390 | AC_CONFIG_TESTDIR(tests/Tesselations)
|
---|
[5079a0] | 391 | AC_CONFIG_FILES([
|
---|
[a85f45] | 392 | tests/Tesselations/atlocal
|
---|
| 393 | tests/Tesselations/Makefile])
|
---|
| 394 | AC_CONFIG_FILES([tests/Tesselations/molecuilder], [chmod +x tests/Tesselations/molecuilder])
|
---|
[689639] | 395 |
|
---|
[5079a0] | 396 | AC_CONFIG_FILES([
|
---|
| 397 | doc/molecuilder.xml])
|
---|
[861874] | 398 | AC_CONFIG_FILES([
|
---|
[878044] | 399 | MoleCuilder.pc:MoleCuilder.pc.in])
|
---|
[5079a0] | 400 | AC_CONFIG_FILES([
|
---|
| 401 | Makefile
|
---|
[ec188c] | 402 | doc/Makefile
|
---|
[938ffd] | 403 | src/Makefile
|
---|
[5b991a] | 404 | data/icons/Makefile
|
---|
[04e1fb] | 405 | utils/Makefile
|
---|
[85949a] | 406 | ])
|
---|
| 407 | AC_CONFIG_FILES([
|
---|
[878044] | 408 | src/unittests/Makefile
|
---|
[85949a] | 409 | ])
|
---|
[d0b3aca] | 410 |
|
---|
[c015b3] | 411 | # produce python scripts and tests only when python's present
|
---|
[24e19e] | 412 | AC_CONFIG_TESTDIR([tests/Python])
|
---|
| 413 | AC_CONFIG_FILES([tests/Python/atlocal])
|
---|
[c015b3] | 414 | AM_COND_IF([CONDPYTHON],[
|
---|
[9fd196] | 415 | AC_CONFIG_FILES([utils/Python/boxmaker.py:utils/Python/boxmaker.py.in], [chmod +x utils/Python/boxmaker.py])
|
---|
| 416 | AC_CONFIG_FILES([utils/Python/python_wrapper:utils/Python/python_wrapper.in], [chmod +x utils/Python/python_wrapper])
|
---|
[c015b3] | 417 | AC_CONFIG_FILES([tests/Python/run], [chmod +x tests/Python/run])
|
---|
| 418 | ])
|
---|
[24e19e] | 419 | AC_CONFIG_FILES([tests/Python/Makefile])
|
---|
[d0b3aca] | 420 |
|
---|
[14de469] | 421 | AC_OUTPUT
|
---|