From 880cb202e6974d9ebabc7313dd464efaa726c111 Mon Sep 17 00:00:00 2001 From: SergiySW Date: Fri, 24 Aug 2018 18:49:48 +0300 Subject: [PATCH] Require less boost components (#1002) --- CMakeLists.txt | 2 +- ci/bootstrap_boost.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d898f8b..18d3130c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -120,7 +120,7 @@ if (BOOST_ROOT) list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules") endif () -find_package (Boost 1.66.0 REQUIRED COMPONENTS date_time filesystem system log log_setup thread program_options regex chrono atomic) +find_package (Boost 1.66.0 REQUIRED COMPONENTS filesystem log thread program_options) add_subdirectory(ed25519-donna) diff --git a/ci/bootstrap_boost.sh b/ci/bootstrap_boost.sh index cff1c915..c963c496 100755 --- a/ci/bootstrap_boost.sh +++ b/ci/bootstrap_boost.sh @@ -7,7 +7,7 @@ bootstrapArgs=() while getopts 'm' OPT; do case "${OPT}" in m) - bootstrapArgs+=('--with-libraries=atomic,chrono,thread,log,date_time,filesystem,program_options,regex') + bootstrapArgs+=('--with-libraries=thread,log,filesystem,program_options') ;; esac done