- Oct 18, 2013
-
-
Robert Kloefkorn authored
-
- Oct 17, 2013
-
-
Christoph Grüninger authored
-
- Oct 14, 2013
-
-
Steffen Müthing authored
-
- Oct 11, 2013
-
-
Christoph Grüninger authored
Thanks to Tobias Malkmus for the heads-up.
-
- Oct 09, 2013
-
-
Markus Blatt authored
Previously hidden unix files were included in the headercheck. Unfortunately emacs(server) tends to produces files such as .#<headername>. This broke the constructed Makefiles. This patch excludes such files from the list and fixes the issue.
-
Steffen Müthing authored
This patch adds a new header visibility.hh with macros DUNE_EXPORT and DUNE_PRIVATE to mark symbols as exported or private at the ABI level. While we do not explicitly mark any symbols as hidden, there are certain situations in which the compiler creates symbols with incorrect linkage, especially for singleton accessor methods for templated types and their embedded static variables, which involve the creation of weak symbols. The linker is then unable to merge those weak definitions, causing either a link-time failure (when building static libraries) or undefined runtime behaviour (dynamic libraries). This problem can be avoided by explicitly marking the singleton accessor methods as DUNE_EXPORT. For symmetry, there is also a DUNE_PRIVATE macro, but while it works, I don't see it used very much in the short term.
-
- Oct 05, 2013
-
-
- Oct 02, 2013
-
-
Markus Blatt authored
We now check for METIS_PartGraphKway, which is a symbol that we are actually using and which is also in the implementation of scotch (see FS#1370)
-
Martin Nolte authored
This patch removes an extra header install command for tests. It originally came when copying dune/common/CMakeLists.txt to dune/common/std/CMakeLists.txt. Sorry for the noise.
-
Martin Nolte authored
The majority of developers favor individual headers for (emulation of) C++11 features over collecting them in a single header cxx11.hh. This patch renames cxx11.hh to constexpr.hh and moves it into the subdirectory std. This is the place most developers would like these headers in (see http://users.dune-project.org/doodles/4).
-
- 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)
-
http://git.dune-project.org/repositories/dune-commonChristoph Grüninger authored
Conflicts: cmake/modules/CheckCXX11Features.cmake
-
Christoph Grüninger authored
Avoid upper case commands.
-
Christoph Grüninger authored
They do not find a package but check for a feature. This avoids false warnings about not found packages. Merged FindCXX11Conditional.cmake and FindCXX11Features.cmake.
-
Christoph Grüninger authored
The patch from ...fce82c7d5ee5 broke the script. This is the intended behavior.
-
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.
-
- Sep 27, 2013
-
-
Christian Engwer authored
-
Oliver Sander authored
-
Christian Engwer authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Christoph Grüninger authored
-
- Sep 24, 2013
-
-
Christoph Grüninger authored
Before this commit it matched e.g. "test1" and failed finding the directory "test".
-
- Sep 23, 2013
-
-
Markus Blatt authored
Previously, a variable (found) was only initialized in one branch of an if statement but used later on in any case. This patch makes sure that is initialized in both branches.
-
Markus Blatt authored
-
- Sep 19, 2013
-
-
Christoph Grüninger authored
This fixes FS#1352. Thanks to Bernd Flemisch for the hint.
-
Christoph Grüninger authored
-
- Sep 18, 2013
-
-
Markus Blatt authored
[BuildSystem][autotools] Add FinalizeHeadercheck.cmake to installation file list of cmake/scripts instead of incorrect cmake/modules.
-
[BuildSystem][CMake] Add FinalizeHeadercheck.cmake to installation file list of cmake/scripts instead of incorrect cmake/modules.
-
Markus Blatt authored
Previously the CMAKE variable was not set if no options file was used. This fixes this.
-
Markus Blatt authored
-