From 94fb9167df9e882182b036d67128a6217c6d9227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <gruenich@dune-project.org> Date: Fri, 21 Nov 2014 07:12:55 +0100 Subject: [PATCH] [buildsystem] Do not call check for Boost base. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the removal of the fall-back code for many C++11 features like shared_ptr or hash, we no longer need Boost in dune-common. If your model has relies on a boost check, add the call to the buildsystem of your module. The Dune-islt commit …3ee92f05012 is an example what must be done. --- cmake/modules/DuneCommonMacros.cmake | 1 - m4/dune_common.m4 | 1 - 2 files changed, 2 deletions(-) diff --git a/cmake/modules/DuneCommonMacros.cmake b/cmake/modules/DuneCommonMacros.cmake index 34ac14aa7..3e79466be 100644 --- a/cmake/modules/DuneCommonMacros.cmake +++ b/cmake/modules/DuneCommonMacros.cmake @@ -25,4 +25,3 @@ include(AddGMPFlags) find_package(Inkscape) include(UseInkscape) include(FindMProtect) -include(DuneBoost) diff --git a/m4/dune_common.m4 b/m4/dune_common.m4 index 9bac85e67..f697a7db0 100644 --- a/m4/dune_common.m4 +++ b/m4/dune_common.m4 @@ -23,7 +23,6 @@ AC_DEFUN([DUNE_COMMON_CHECKS], AC_REQUIRE([CXX11_CONSTEXPR_CHECK]) AC_REQUIRE([DUNE_CXX11_NOEXCEPT_SPECIFIER_CHECK]) AC_REQUIRE([DUNE_CXX11_RANGE_BASED_FOR]) - AC_REQUIRE([DUNE_BOOST_BASE]) AC_REQUIRE([DUNE_LINKCXX]) AC_REQUIRE([DUNE_CHECKDEPRECATED]) AC_REQUIRE([DUNE_CHECKFINAL]) -- GitLab