Skip to content
Snippets Groups Projects
  1. Dec 11, 2013
    • Steffen Müthing's avatar
      [Release][MPI] Add check for MPI standard version and warn if installed version is < 2.1 · ac6885f8
      Steffen Müthing authored
      As decided in the doodle for FS#1395, really old MPI versions will be
      deprecated in the 2.3 release.
      
      This patch adds an additional check to the MPI tests for autotools and
      cmake that makes sure the user has an MPI which is at least compliant
      with MPI-2.1. If the user's version is older, a warning is generated.
      
      The test uses version macros instead of the more standard runtime
      MPI version query interface to avoid problems when cross-compiling.
      ac6885f8
  2. Dec 03, 2013
    • Martin Nolte's avatar
      [buildsystem] distribute cxx11_constexpr.m4 · 3887555a
      Martin Nolte authored
      The check for constexpr was not copied into the distribution.
      Unfortunately, the autotools will only warn about a missing macro, but
      give valid results otherwise. This patch adds the cxx11_constexpr.m4 to
      Makefile.am, so that it is distributed on "make dist".
      3887555a
  3. Nov 22, 2013
  4. Oct 24, 2013
  5. Oct 23, 2013
    • Markus Blatt's avatar
      [autotools] Use correct m4 file name (umfpack.m4) · 337a2abc
      Markus Blatt authored
      Previously a non existent file name (umfpack) was used in
      Makefile.am. This broke the build with the message:
      
      make[2]: *** Keine Regel vorhanden, um das Target »umfpack«,
        benötigt von »all-am«, zu erstellen.  Schluss.
      make[2]: Leaving directory `/home/mblatt/src/dune/current/dune-common/build-auto/m4'
      
      This patch fixes this by using the correct name.
      337a2abc
    • 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
  6. Oct 18, 2013
  7. Oct 01, 2013
  8. Aug 27, 2013
  9. 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
  10. Aug 20, 2013
  11. Jul 24, 2013
  12. 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
  13. May 06, 2013
  14. May 03, 2013
  15. Apr 29, 2013
  16. Apr 24, 2013
  17. Apr 16, 2013
  18. Mar 30, 2013
  19. Mar 27, 2013
  20. Mar 19, 2013
  21. Mar 15, 2013
  22. 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
  23. Mar 12, 2013
  24. Feb 26, 2013
  25. Feb 22, 2013
  26. Feb 18, 2013
  27. 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
  28. Feb 13, 2013
  29. 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
  30. 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
  31. Jan 30, 2013
  32. Jan 24, 2013
  33. Jan 23, 2013
Loading