Skip to content
Snippets Groups Projects
Commit a32aac32 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[autotools] Deprecation support for Autotools.

Use CMake instead, use Dune 2.4 whenever possible.
(reviewed by bernd, approved by release manager becker)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14470 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 656566a7
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,12 @@ Differences Between DuMuX 2.6 and DuMuX 2.7 ...@@ -38,6 +38,12 @@ Differences Between DuMuX 2.6 and DuMuX 2.7
printing only the first deviation from the reference solution, it now printing only the first deviation from the reference solution, it now
prints the maximum deviation in each field/variable. prints the maximum deviation in each field/variable.
* DEPRECATED BUILD SYSTEM: DuMuX 2.7 will be the last release which can be built
with the Autotools based build system. It is deprecated and will be removed
for DuMuX 2.8. We encourage the change towards CMake, especially with the
upcoming DUNE 2.4.
The warning can be suppressed with --disable-dumux-deprecated-autotools
* IMMEDIATE INTERFACE CHANGES not allowing/requiring a deprecation period: * IMMEDIATE INTERFACE CHANGES not allowing/requiring a deprecation period:
- Before, the "heatCapacity" function in the spatial parameters and volume - Before, the "heatCapacity" function in the spatial parameters and volume
variables of the implicit nonisothermal models was a misnomer, since it variables of the implicit nonisothermal models was a misnomer, since it
......
...@@ -7,6 +7,7 @@ M4FILES = \ ...@@ -7,6 +7,7 @@ M4FILES = \
ac_prog_pdflatex.m4 \ ac_prog_pdflatex.m4 \
cxx0x_constexpr.m4 \ cxx0x_constexpr.m4 \
dumux.m4 \ dumux.m4 \
dumux_deprecated_autotools.m4 \
dumux_quad.m4 dumux_quad.m4
aclocaldir = $(datadir)/aclocal aclocaldir = $(datadir)/aclocal
......
...@@ -26,6 +26,8 @@ AC_DEFUN([DUMUX_CHECKS], ...@@ -26,6 +26,8 @@ AC_DEFUN([DUMUX_CHECKS],
if test "x$HAVE_CONSTEXPR" != "xyes"; then if test "x$HAVE_CONSTEXPR" != "xyes"; then
AC_DEFINE(constexpr, const, ['set 'constexpr' to 'const' if constexpr is not supported]) AC_DEFINE(constexpr, const, ['set 'constexpr' to 'const' if constexpr is not supported])
fi fi
AC_REQUIRE([DUMUX_DEPRECATED_AUTOTOOLS])
]) ])
# checks only relevant for the dumux module itself but not for modules # checks only relevant for the dumux module itself but not for modules
......
dnl This macro introduces a configure flag --disable-dumux-deprecated-autotools
dnl to suppress the deprecration warning that Autotools will be removed in 2.8
AC_DEFUN([DUMUX_DEPRECATED_AUTOTOOLS],[
AC_ARG_ENABLE(dumux-deprecated-autotools,
AS_HELP_STRING([--disable-dumux-deprecated-autotools],[Suppresses DuMuX' warning about deprecated Autotools support.]))
AS_IF([test "x$enable_dumux_deprecated_autotools" != "xno"],
AC_DEFINE(ENABLE_DUMUX_DEPRECATED_AUTOTOOLS, 1, [Warn about deprecated Autotools support]))
AH_BOTTOM([
#if ENABLE_DUMUX_DEPRECATED_AUTOTOOLS
#warning Support for Autotools in DuMuX is deprecated and will be removed after 2.7.
#endif
])
])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment