This particular version of dune-grid tested the define ENABLE_ALUGRID
instead of HAVE_ALUGRID, which was the intention. Our build system
doesn't set this define, so we do it here before including in case we
have that version.
It should otherwise be harmless, since HAVE_ALUGRID should only be
defined in DUNE if ENABLE_ALUGRID is true (1) anyway.
Use the new opm material module
A practical fall-out from merging this change is that GCC 4.4 becomes
the minimum supported target platform for OPM-Porsol and its downstream
modules such as OPM-Upscaling.
The <have_boost_redef.hpp> header was introduced (commit
OPM/opm-core@82369f9) as a work-around for a particular interaction
in the Autotools-based setup of OPM-Core and the Dune core modules.
Notably, Dune's "Enable" trick for Boost failed on some older
Autoconf systems. Now that we're using CMake, however, that kluge
is no longer needed because OPM-Core always
#define HAVE_BOOST 1
i.e., as an explict true/false value.
Therefore, we need no longer include <have_boost_redef.hpp> . The
header will be removed at a later time.
- It seems like HAVE_CONFIG_H is not defined by the cmake build
system, so config.h was not included in the files which used it.
- use quotes instead of pointy brackets to include config.h. That
was inconsistent and I think that quotes better indicate the fact
that the config.h is a project-local file.