- Oct 18, 2013
-
-
Robert Kloefkorn authored
-
- Oct 01, 2013
-
-
Christian Engwer authored
we are now checking for different locations of parmetis.h. This makes it possible us the scotch parmetis implementation (see FS#1370).
-
Christian Engwer authored
we now check for METIS_PartGraphKway, which a symbol we are actually using and which is in the implementation of scotch (see FS#1370)
-
Martin Nolte authored
As decided on the developer meeting in Aachen, we support (but do not rely on) the C++11 keyword constexpr. This patch adds an m4-check for constexpr and a header (cxx11.hh) defining a macro DUNE_CONSTEXPR either as constexpr or empty (depending on the compiler support for it). It is then used in FieldVector and FieldMatrix on size, rows, and cols.
-
- Aug 27, 2013
-
-
Steffen Müthing authored
If not found, our own fallback implementation will be used.
-
- Aug 22, 2013
-
-
Steffen Müthing authored
MPICH has stepped up its versioning scheme, jumping from MPICH2 1.x to MPICH 3.x, but has stayed compatible to the older MPICH2 versions. Unfortunately, the macro MPICH2_VERSION used by mpi_config.m4 to detect the package has been renamed to MPICH_VERSION. This patch fixes the problem by adding a separate test for MPICH_VERSION ana making sure that the macro starts with the letter "3".
-
- Aug 20, 2013
-
-
Robert Kloefkorn authored
-
- Jul 24, 2013
-
-
Steffen Müthing authored
-
- Jun 07, 2013
-
-
Markus Blatt authored
Some modules do test for complicated symbols, eg. "&StandardMerge<double,1,1,1>::build;", which lead to broken configure scripts. In the above case : " 1>build; ;" as a shell command. This patch quotes the program body used for AC_LANG_PROGRAM correctly to prevent this.
-
- May 06, 2013
-
-
Steffen Müthing authored
The behavior of DebugAllocator depends on whether the compiler supports rvalue references, so make sure to run the corresponding test.
-
- May 03, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7472]]
-
- Apr 29, 2013
-
-
Markus Blatt authored
templates. This way dune-common compiles as before if variadic templates _and_ move semantics are not present. [[Imported from SVN: r7454]]
-
Markus Blatt authored
variadic templates if available. This breaks building of the test of debug allocator as it uses std::forward. [[Imported from SVN: r7453]]
-
- Apr 24, 2013
-
-
Markus Blatt authored
no side effects. [[Imported from SVN: r7451]]
-
- Apr 16, 2013
-
-
Christoph Grüninger authored
[[Imported from SVN: r7446]]
-
- Mar 30, 2013
-
-
Robert Klöfkorn authored
[[Imported from SVN: r7434]]
-
- Mar 27, 2013
-
-
Markus Blatt authored
make sure that flags passed with DUNE_LDFLAGS are the first flags in linker test and not duplicated another time. Fixes flyspray #1270 [[Imported from SVN: r7433]]
-
- Mar 19, 2013
-
-
Robert Klöfkorn authored
[[Imported from SVN: r7429]]
-
- Mar 15, 2013
-
-
Christoph Grüninger authored
[[Imported from SVN: r7428]]
-
- Mar 14, 2013
-
-
Markus Blatt authored
[Merge][Bugfix] r7422 from branches/release-cmake-2.2: Prevent definition of HAVE_BOOST without value due to race conditions i n some autoconf versions. For some autoconf versions there was a race condition between ax_boost_base.m4 a nd dune_boost_base.m4 resulting in HAVE_BOOST being defined with no value (inste ad of ENABLE_BOOST). For others there were even two definitions of it (one with and one without value). This patch renames the symbol being defined in dune_boost_base.m4 to HAVE_DUNE_B OOST and defines a value for it if boost is found. [[Imported from SVN: r7424]]
-
Markus Blatt authored
[Bugfix] Prevent definition of HAVE_BOOST without value due to race conditions in some autoconf versions. For some autoconf versions there was a race condition between ax_boost_base.m4 and dune_boost_base.m4 resulting in HAVE_BOOST being defined with no value (instead of ENABLE_BOOST). For others there were even two definitions of it (one with and one without value). This patch renames the symbol being defined in dune_boost_base.m4 to HAVE_DUNE_BOOST and defines a value for it if boost is found. Please change your code such the preprocessor directives checking for boost from #if HAVE_BOOST to #if HAVE_DUNE_BOOST Resolves flyspray 1265 and presumably 1249. [[Imported from SVN: r7422]]
-
- Mar 12, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7417]]
-
- Feb 26, 2013
-
-
Christoph Grüninger authored
This commit is related to FS#1257. [[Imported from SVN: r7394]]
-
- Feb 22, 2013
-
-
Christoph Grüninger authored
This commit is related to FS#1257. [[Imported from SVN: r7384]]
-
- Feb 18, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7129]]
-
- Feb 14, 2013
-
-
Christian Engwer authored
At least since version 3.0 CLang support __cxa_demangle. To support as many compilers as possible we test for the feature instead of testing for the compiler version. Thanks to Andreas Lauser <and@poware.org> for providing this patch (see FS #1246) [[Imported from SVN: r7125]]
-
- Feb 13, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7124]]
-
- Feb 07, 2013
-
-
Oliver Sander authored
I shouldn't be doing patch reviews after 2300 Here is Andreas' commit message: >From 1049843fa0dbc6b340817b0cd69959e742e80d7a Mon Sep 17 00:00:00 2001 From: Andreas Lauser <Andreas.Lauser@iws.uni-stuttgart.de> Date: Wed, 6 Feb 2013 23:33:28 +0100 Subject: [PATCH] once again: fix dune_unused.m4 my previous attempt was only partially correct: the compiler did not chocke because the unused attribute was placed behind the variable, but because the third argument of AC_TRY_COMPILE is placed inside the main function. it seems like c++ does not support nested functions, so the test still failed, leading to the equally undesired result that DUNE_UNUSED did not have an effect anymore. Mea culpa! (this time I have at least double verified, that the compiler does not bail out. last time I probably mis-interpreted the wrong lines as the output of the dune_unused test in config.log.) [[Imported from SVN: r7106]]
-
- Feb 06, 2013
-
-
Oliver Sander authored
Thanks to Andreas Lauser for this patch. Here is his own commit message: From: Andreas Lauser <and@poware.org> Date: Mon, 4 Feb 2013 15:34:22 +0100 Subject: [PATCH] fix the test for __attribute__((unused)) it contained two errors which "anihilated" themselfs: the first was a syntax error in the test itself (the UNUSED macro must be placed before the identifier of the variable), which caused the compiler to always return an error. this was compensated by an incorrect invocation of the AC_TRY_COMPILE macro which featured an empty argument as third argument instead of the action to be executed if the test succeeded. this in turn always lead the forth argument (which was intended by the test to be executed if the test succeeds but was actually executed if it failed) to be always triggered. In turn this leads me to the conclusion that DUNE was never compiled using a compiler which does not support __attribute__((unused)) since this macro was introduced... [[Imported from SVN: r7105]]
-
- Jan 30, 2013
-
-
Robert Klöfkorn authored
[[Imported from SVN: r7096]]
-
- Jan 24, 2013
-
-
Robert Klöfkorn authored
[[Imported from SVN: r7088]]
-
- Jan 23, 2013
-
-
Oliver Sander authored
[[Imported from SVN: r7078]]
-
- Nov 25, 2012
-
-
Christian Engwer authored
Add support for boost::hash This patch adds boost::hash as a fallback option for Dune::hash if neither std::hash nor std::tr1::hash can be found. We only have to include the appropriate header and import the name into the Dune namespace, as the built-in extension mechanism of boost::hash will automatically pick up the global hash_value() functions. To test whether the mechanism actually works, the patch also adds boost::hash to the list of hash implementations tested in bigunsignedinttest. Kudos to Steffen Müthing, see FS#1192 [[Imported from SVN: r7067]]
-
Christian Engwer authored
Add basic support for hashing using Dune::hash This patch introduces the functor Dune::hash in a similar manner to other C++11 functionality by importing the definition from namespace std. Apart from that, the patch also provides some basic functionality to simplify making user-defined types hashable, in particular functions for combining hashes and hashing iterator ranges as well as a mechanism for defining the struct specializations required by std::hash and std::tr1::hash in the correct namespace. The current implementation will first try to use std::hash and, if that fails, attempt to fall back on std::tr1::hash. If that is not available either, hash support is disabled as there is no homegrown fallback for now. The extension mechanism will register the type with both std::hash and std::tr1::hash, if available. This should make it possible to use unordered_{set,map} from both C++11 and TR1 without having to specify a custom hasher. Kudos to Steffen Müthing, see FS#1192 [[Imported from SVN: r7065]]
-
- Nov 11, 2012
-
-
Christoph Grüninger authored
[[Imported from SVN: r7058]]
-
- Nov 10, 2012
-
-
Christoph Grüninger authored
Add check for libgmpxx. It should not happen but I had the problem with two systems (Mac OS X and Hermit XE6) that gmpxx.hh was found but no libgmpxx. [[Imported from SVN: r7057]]
-
- Nov 06, 2012
-
-
Christian Engwer authored
[[Imported from SVN: r7056]]
-
- Oct 25, 2012
-
-
Markus Blatt authored
[[Imported from SVN: r7052]]
-
Markus Blatt authored
once. Improved help string. [[Imported from SVN: r7051]]
-
- Oct 07, 2012
-
-
Christoph Grüninger authored
[[Imported from SVN: r7030]]
-