-
Notifications
You must be signed in to change notification settings - Fork 39
/
configure.ac
323 lines (251 loc) · 9.62 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.65)
AC_INIT([queso], [0.57.1], [queso-users@googlegroups.com])
PACKAGE_DESCRIPTION="The parallel C++ statistical library QUESO: Quantification of uncertainty for estimation, simulation and optimization"
AC_SUBST([PACKAGE_DESCRIPTION])
PACKAGE_URL="https://github.com/libqueso/queso"
AC_SUBST([PACKAGE_URL])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS(config_queso.h.tmp)
dnl Prefixes everything in the temporary file with QUESO_
AX_PREFIX_CONFIG_H(config_queso.h,QUESO,config_queso.h.tmp)
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_TARGET()
AM_INIT_AUTOMAKE([color-tests subdir-objects])
AM_SILENT_RULES(yes) # use silent rules where available - automake 1.11
# Release versioning
AX_SPLIT_VERSION
GENERIC_MAJOR_VERSION=$AX_MAJOR_VERSION
GENERIC_MINOR_VERSION=$AX_MINOR_VERSION
GENERIC_MICRO_VERSION=$AX_POINT_VERSION
# Defines needed by Environment.C (formerly in queso.h)
# The values are not quoted strings per queso.h history (Environment.C uses for arithmetic)
AC_DEFINE_UNQUOTED([MAJOR_VERSION], ${GENERIC_MAJOR_VERSION}, "Major version")
AC_DEFINE_UNQUOTED([MINOR_VERSION], ${GENERIC_MINOR_VERSION}, "Minor version")
AC_DEFINE_UNQUOTED([MICRO_VERSION], ${GENERIC_MICRO_VERSION}, "Micro version")
# Generating a libtool library
GENERIC_RELEASE=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION
AC_SUBST(GENERIC_RELEASE)
AC_SUBST(GENERIC_MAJOR_VERSION)
AC_SUBST(GENERIC_MINOR_VERSION)
AC_SUBST(GENERIC_MICRO_VERSION)
LT_INIT
# Set default CFLAGS & CXXFLAGS IF the user hasn't specified anything
AC_MSG_CHECKING(if CFLAGS is set)
if test "x$CFLAGS" = "x"; then
CFLAGS="-g -O2 -Wall"
AC_MSG_RESULT(no... setting to -g -O2 -Wall)
else
AC_MSG_RESULT(yes)
fi
AC_MSG_CHECKING(if CXXFLAGS is set)
if test "x$CXXFLAGS" = "x"; then
CXXFLAGS="-g -O2 -Wall"
AC_MSG_RESULT(no... setting to -g -O2 -Wall)
else
AC_MSG_RESULT(yes)
fi
# Required for some macros
# AX_AM_MACROS
#-----------------------
# Check for debug mode?
#-----------------------
AC_MSG_CHECKING(whether to enable debugging)
debug_default="no"
AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes] turn on debugging
[default=$debug_default]],, enable_debug=$debug_default)
if test "x$enable_debug" = "xyes"; then
QUESO_CPPFLAGS="$CPPFLAGS -DDEBUG"
AC_SUBST(QUESO_CPPFLAGS)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
#############################################
# Check if the user explicitly disabled mpi #
#############################################
AC_ARG_ENABLE(mpi,
AS_HELP_STRING([--disable-mpi],
[build without message passing support]),
[enable_mpi=no],
[enable_mpi=yes])
##############################################
# Check if the user disabled program options #
##############################################
AC_ARG_ENABLE([boost-program-options],
AS_HELP_STRING([--enable-boost-program-options], [Enables use
of boost program options for parsing the QUESO
input file. GetPot will not be used.]),
[case "${enableval}" in
yes) enable_program_options=yes ;;
no) enable_program_options=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --disable-boost-program-options) ;;
esac],
[enable_program_options=no])
#-------------------
# Compilers and MPI
#-------------------
AC_PROG_CC
AC_PROG_CXX
AC_PROG_FC
AC_LANG([C])
HAVE_MPI=0
if test "x$enable_mpi" = "xyes"; then
ACX_MPI(CC="$MPICC", [AC_MSG_ERROR([Could not find MPI.])])
HAVE_MPI=1
fi
AC_LANG([C++])
if test "x$enable_mpi" = "xyes"; then
ACX_MPI(CXX="$MPICXX", [AC_MSG_ERROR([Could not find MPI.])])
HAVE_MPI=1
fi
AC_SUBST(HAVE_MPI)
AM_CONDITIONAL(MPI_ENABLED, test x$HAVE_MPI = x1)
# --------------------------------------------------------------
# Allow the user to explicitly turn off C++11 support by saying
# --disable-cxx11. Otherwise, C++11 support is enabled by default
# although libmesh does not (currently) use any C++11 features.
# --------------------------------------------------------------
AC_ARG_ENABLE(cxx11,
AC_HELP_STRING([--disable-cxx11],
[build without C++11 support]),
[case "${enableval}" in
yes) enablecxx11=yes ;;
no) enablecxx11=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --disable-cxx11) ;;
esac],
[enablecxx11=yes])
if (test "x$enablecxx11" = "xyes"); then
# --------------------------------------------------------------
# Standard autoconf macro for determining the proper -std=c++11
# flag for the current compiler. Adds the result to CXXFLAGS if
# one is found. See ax_cxx_compile_stdcxx_11.m4 for details.
# --------------------------------------------------------------
AX_CXX_COMPILE_STDCXX_11([noext],[optional])
fi
QUESO_TEST_CXX11_ISNAN
QUESO_TEST_CXX11_ISFINITE
QUESO_TEST_CXX11_UNIQUE_PTR
QUESO_TEST_CXX11_SHARED_PTR
#-------------------------
# External Library Checks
#-------------------------
# Check for Trilinos (optional)
#Kemelli: The lowest version used to be 8.0.7, now is 11.0.2, to accomodate the changes in -lteuchos*.
HAVE_TRILINOS=0
AX_TRILINOS_BASE(11.0.2,[HAVE_TRILINOS=1],[HAVE_TRILINOS=0])
if test "$HAVE_TRILINOS" = "1" ;then
#AX_TRILINOS_EPETRA([HAVE_TRILINOS=1],[HAVE_TRILINOS=0])
AX_TRILINOS_EPETRA([HAVE_TRILINOS=1],AC_MSG_ERROR([Could not find Epetra - which is required if Trilinos is enabled.]))
fi
AC_SUBST(HAVE_TRILINOS)
AM_CONDITIONAL(TRILINOS_ENABLED,test x$HAVE_TRILINOS = x1)
AC_CACHE_SAVE
# Check for libmesh with SLEPc support (optional)
AX_LIBMESH_SLEPC(0.9.1,no)
AC_CACHE_SAVE
# Check for GSL (required)
AC_LANG([C])
AX_PATH_GSL(1.10,AM_CONDITIONAL([UQBT_GSL], [test 'TRUE']),AC_MSG_ERROR([Could not find required GSL version.]))
AC_CACHE_SAVE
# Check for boost (required)
AC_LANG([C++])
HAVE_BOOST=1
BOOST_REQUIRE([1.35], [HAVE_BOOST=0])
AS_IF([test "x$enable_program_options" != "xno"],
[
AS_IF([test "$HAVE_BOOST" = "0"],
[
AC_MSG_ERROR(["cannot enable program options without boost"])
])
BOOST_PROGRAM_OPTIONS
])
AS_IF([test "x$enable_program_options" = "xno"],
[
AC_DEFINE(DISABLE_BOOST_PROGRAM_OPTIONS, 1, [Flag determining whether boost program options is disabled])
])
BOOST_FIND_HEADER([boost/scoped_ptr.hpp])
BOOST_FIND_HEADER([boost/shared_ptr.hpp])
BOOST_FIND_HEADER([boost/math/special_functions.hpp])
AM_CONDITIONAL(HAVE_BOOST, test x$HAVE_BOOST = x1)
AC_CACHE_SAVE
# Check for GLPK (optional)
AX_PATH_GLPK([4.35],[no])
# Check for HDF5 (optional)
AX_PATH_HDF5_NEW([1.8.0],[no])
# Check for ANN (external library)
# AX_PATH_ANN
#### TODO: Make sure that the ANN uses L-infinity (Max) norm
# Check for ANN feature
AX_ENABLE_ANN
# Check for libGRVY (optional as of QUESO version 0.46.0)
AX_PATH_GRVY_NEW([0.29],[no])
# Check for slepc
#AX_PATH_SLEPC_NEW([3.3],[no])
AC_CACHE_SAVE
# -------------------------------------------------------------
# cppunit C++ unit testing -- enabled by default
# -------------------------------------------------------------
AC_ARG_ENABLE(cppunit,
AS_HELP_STRING([--disable-cppunit],
[Build without cppunit C++ unit testing support]))
AS_IF([test "x$enable_cppunit" != "xno"], [
AM_PATH_CPPUNIT([1.10.0],[enablecppunit=yes],[enablecppunit=no])
])
AM_CONDITIONAL(QUESO_ENABLE_CPPUNIT, test x$enablecppunit = xyes)
#----------------
# Doxygen support
#----------------
DX_HTML_FEATURE(ON)
DX_CHM_FEATURE(OFF)
DX_CHI_FEATURE(OFF)
DX_MAN_FEATURE(OFF)
DX_RTF_FEATURE(OFF)
DX_XML_FEATURE(OFF)
DX_PDF_FEATURE(OFF)
DX_PS_FEATURE(OFF)
DX_INIT_DOXYGEN([queso],[doxygen/queso.dox],[docs])
#--------------------------
# Checks for code coverage
#-------------------------
AX_CODE_COVERAGE
# Query configuration environment
AX_SUMMARIZE_ENV
# Generate makefiles
AC_CONFIG_FILES([
queso.pc
queso-deps.pc
Makefile
inc/queso/Makefile
src/Makefile
src/contrib/ANN/Makefile
src/contrib/ANN/test/Makefile
examples/Makefile
test/Makefile
doxygen/Makefile
doxygen/queso.dox
doxygen/txt_common/about_vpath.page
])
AC_CONFIG_FILES(test/test_StatisticalInverseProblem/test_parallel_h5.sh, [chmod +x test/test_StatisticalInverseProblem/test_parallel_h5.sh])
AC_CONFIG_FILES(src/apps/queso-config, [chmod +x src/apps/queso-config])
dnl ----------------------------------------------
dnl Collect files for licence header stamping here
dnl ----------------------------------------------
_AC_SRCDIRS(.)
# We have to do this by subdirectory because otherwise distcheck breaks as we
# start picking up files in the directories that it uses
QUESO_STAMPED_FILES=$(find $ac_abs_top_srcdir/{src,examples,test} -name "*.h" -or -name "*.C" | tr "\n" " ")
AC_SUBST(QUESO_STAMPED_FILES)
# Since we don't distribute the lic_utils, check and make sure it's there.
# This way, we won't run the license stamping perl script on distributed
# tarballs, only on the repository clone
AM_CONDITIONAL(QUESO_LICENSESTAMPEXISTS, [test -f $ac_abs_top_srcdir/src/common/lic_utils/update_license.pl])
AC_OUTPUT()
dnl Hackish fix for Ubuntu/Debian libtool
dnl See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702737
perl -pi -e 's/link_all_deplibs=no/link_all_deplibs=yes/' libtool
#---------------
# Final summary
#---------------
AX_SUMMARIZE_CONFIG