Skip to content
Snippets Groups Projects
  1. Oct 23, 2013
    • Markus Blatt's avatar
      [umfpack] Added buildsystem tests for UMFPack. · 2ab5f3c2
      Markus Blatt authored
      This patch adds test for both CMake and autotools as the
      build system.
      UMFPack is used by several dune modules (e.g. fem and istl)
      the only common required module by both is common. Therefore
      we add the test here to make it usable for all modules.
      
      BTW: These tests are taken from Dominics branch of dune-istl.
           Therefore he deserves the credit for them.
      2ab5f3c2
  2. Oct 18, 2013
  3. Oct 01, 2013
  4. Aug 27, 2013
  5. Aug 22, 2013
    • Steffen Müthing's avatar
      Add support for MPICH 3.x · 21d244f4
      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".
      21d244f4
  6. Aug 20, 2013
  7. Jul 24, 2013
  8. Jun 07, 2013
    • Markus Blatt's avatar
      [autotools] Fixes quoting in test for DUNE symbols · 20620438
      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.
      20620438
  9. May 06, 2013
  10. May 03, 2013
  11. Apr 29, 2013
  12. Apr 24, 2013
  13. Apr 16, 2013
  14. Mar 30, 2013
  15. Mar 27, 2013
  16. Mar 19, 2013
  17. Mar 15, 2013
  18. Mar 14, 2013
    • Markus Blatt's avatar
      [Merge][Bugfix] r7422 from branches/release-cmake-2.2: Prevent definition of... · c8eb081a
      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]]
      c8eb081a
    • Markus Blatt's avatar
      [Bugfix] Prevent definition of HAVE_BOOST without value due to race conditions... · e84d7f77
      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]]
      e84d7f77
  19. Mar 12, 2013
  20. Feb 26, 2013
  21. Feb 22, 2013
  22. Feb 18, 2013
  23. Feb 14, 2013
    • Christian Engwer's avatar
      do not explicitly check for the compiler in Dune::classname · 47ede078
      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]]
      47ede078
  24. Feb 13, 2013
  25. Feb 07, 2013
    • Oliver Sander's avatar
      Fix Andreas' previous patch · 405797ed
      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]]
      405797ed
  26. Feb 06, 2013
    • Oliver Sander's avatar
      Fix buggy use of AC_TRY_COMPILE · a1f81535
      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]]
      a1f81535
  27. Jan 30, 2013
  28. Jan 24, 2013
  29. Jan 23, 2013
  30. Nov 25, 2012
    • Christian Engwer's avatar
      [hash] · ab1f43c9
      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]]
      ab1f43c9
    • Christian Engwer's avatar
      [hash] · 76733f41
      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]]
      76733f41
  31. Nov 11, 2012
  32. Nov 10, 2012
    • Christoph Grüninger's avatar
      [gmp.m4] · f6ed06cb
      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]]
      f6ed06cb
  33. Nov 06, 2012
  34. Oct 25, 2012
Loading