-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
272 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ(2.65) | ||
AC_INIT([queso], [0.57.0], [[email protected]]) | ||
AC_INIT([queso], [0.57.1], [[email protected]]) | ||
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" | ||
|
@@ -97,8 +97,12 @@ AC_ARG_ENABLE([boost-program-options], | |
AS_HELP_STRING([--disable-boost-program-options], [Disables use | ||
of boost program options for parsing the QUESO | ||
input file. GetPot will be used instead.]), | ||
[enable_program_options="no"], | ||
[enable_program_options="yes"]) | ||
[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=yes]) | ||
|
||
#------------------- | ||
# Compilers and MPI | ||
|
@@ -195,8 +199,7 @@ AS_IF([test "x$enable_program_options" != "xno"], | |
|
||
AS_IF([test "x$enable_program_options" = "xno"], | ||
[ | ||
QUESO_CPPFLAGS="$QUESO_CPPFLAGS -DDISABLE_BOOST_PROGRAM_OPTIONS" | ||
AC_SUBST(QUESO_CPPFLAGS) | ||
AC_DEFINE(DISABLE_BOOST_PROGRAM_OPTIONS, 1, [Flag determining whether boost program options is disabled]) | ||
]) | ||
|
||
BOOST_FIND_HEADER([boost/scoped_ptr.hpp]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.