From: Kefu Chai Date: Mon, 4 Jun 2018 14:27:55 +0000 (+0800) Subject: cmake: bump up the required boost version to 1.67 X-Git-Tag: v13.2.1~67^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c9303dd636be0895345f457df266ef7b1e6820c1;p=ceph.git cmake: bump up the required boost version to 1.67 Signed-off-by: Kefu Chai (cherry picked from commit 4af37d47308d01a5c580524fc401e5300f864576) --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f997d03f881..c4ff34f872e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -605,13 +605,13 @@ if(WITH_SYSTEM_BOOST) else() set(Boost_USE_STATIC_LIBS ON) endif() - find_package(Boost 1.66 COMPONENTS ${BOOST_COMPONENTS} REQUIRED) + find_package(Boost 1.67 COMPONENTS ${BOOST_COMPONENTS} REQUIRED) else() set(BOOST_J 1 CACHE STRING "max jobs for Boost build") # override w/-DBOOST_J= set(Boost_USE_STATIC_LIBS ON) include(BuildBoost) - build_boost(1.66 + build_boost(1.67 COMPONENTS ${BOOST_COMPONENTS} ${BOOST_HEADER_COMPONENTS}) include_directories(BEFORE SYSTEM ${Boost_INCLUDE_DIRS}) endif()