- Apr 05, 2013
-
-
Markus Blatt authored
The test is still in dune-istl in the release. [[Imported from SVN: r7438]]
-
Markus Blatt authored
It is about the parallel index set documentation that is still in dune-istl in the the release. [[Imported from SVN: r7437]]
-
- Mar 31, 2013
-
-
Christoph Grüninger authored
(kudos to Elias Pipping for the patch) [[Imported from SVN: r7436]]
-
- Mar 21, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7432]]
-
- Mar 15, 2013
-
-
Markus Blatt authored
The latter is the location of the package configuration files. [[Imported from SVN: r7427]]
-
Markus Blatt authored
[[Imported from SVN: r7426]]
-
- Mar 14, 2013
-
-
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 13, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7421]]
-
Markus Blatt authored
[BugFix] Copy rep_ member of SharedCounterImpl during copy constructor (otherwise the deleter might work on a unitialized pointer). [[Imported from SVN: r7420]]
-
- Mar 12, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7419]]
-
Markus Blatt authored
[[Imported from SVN: r7418]]
-
Markus Blatt authored
[[Imported from SVN: r7417]]
-
Markus Blatt authored
[[Imported from SVN: r7416]]
-
Markus Blatt authored
[[Imported from SVN: r7415]]
-
Markus Blatt authored
[[Imported from SVN: r7414]]
-
Markus Blatt authored
[[Imported from SVN: r7413]]
-
Markus Blatt authored
At least on Debian CMAKE_INSTALL_LIBDIR is the multiarch libdir. [[Imported from SVN: r7412]]
-
Markus Blatt authored
At least on Debian CMAKE_INSTALL_LIBDIR is the multiarch libdir. [[Imported from SVN: r7411]]
-
Markus Blatt authored
Original message: Skip LATEX_USABLE guard for communication.pdf as the check is incorporated into dune_add_latex_document. [[Imported from SVN: r7410]]
-
Markus Blatt authored
[Merge][CMake] r7404 from branches/cmake: Skip LATEX_USABLE guard for buildsystem.pdf as the check is incorporated into dune_add_latex_document. [[Imported from SVN: r7409]]
-
Markus Blatt authored
[[Imported from SVN: r7408]]
-
Markus Blatt authored
[Merge][CMake] r7402 from branches/cmake: Install doxygen documentation from tarball even if doxygen is not present. [[Imported from SVN: r7407]]
-
Markus Blatt authored
[Merge][CMake] r7383 from branches/cmake: Do not run doxygen for the tarballs. Instead we install the distributed doxygen documentation. [[Imported from SVN: r7406]]
-
Markus Blatt authored
Skip LATEX_USABLE guard for communication.pdf as the check is incorporated into dune_add_latex_document. [[Imported from SVN: r7405]]
-
Markus Blatt authored
Skip LATEX_USABLE guard for buildsystem.pdf as the check is incorporated into dune_add_latex_document. [[Imported from SVN: r7404]]
-
Markus Blatt authored
[[Imported from SVN: r7403]]
-
Markus Blatt authored
[[Imported from SVN: r7402]]
-
- Mar 11, 2013
-
-
Markus Blatt authored
[Merge][CMake] -r7398 from branches/cmake: [BugFix] Fix endless recursion in dune_add_latex_document. We now check whether the tex source exists. If not we check whether the pdf is already in the source tree, otherwise we send an error. [[Imported from SVN: r7401]]
-
Markus Blatt authored
Previously there still was a dependency to build the pdf which miserably failed as we don not distribute tex files. [[Imported from SVN: r7400]]
-
Markus Blatt authored
Honor pdf documentation distributed with autotools tarballs. [[Imported from SVN: r7399]]
-
Markus Blatt authored
We now check whether the tex source exists. If not we check whether the pdf is already in the source tree, otherwise we send an error. [[Imported from SVN: r7398]]
-
Markus Blatt authored
[[Imported from SVN: r7397]]
-
Markus Blatt authored
[[Imported from SVN: r7396]]
-
- Feb 26, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7392]]
-
Markus Blatt authored
[MERGE] r7387 from trunk: Only check default installation if dune-common is not found via pkg-config. Fixes flyspray 1260. PLEASE REVIEW! [[Imported from SVN: r7391]]
-
Markus Blatt authored
Patch by Bernd Flemisch [[Imported from SVN: r7390]]
-
Markus Blatt 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: r7389]]
-
Markus Blatt 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: r7388]]
-
- Feb 25, 2013
-
-
Markus Blatt authored
Fixes flyspray 1260. PLEASE REVIEW! [[Imported from SVN: r7387]]
-
Carsten Gräser authored
[[Imported from SVN: r7386]]
-