diff options
author | Adam C. Emerson <aemerson@redhat.com> | 2022-03-07 23:14:50 +0100 |
---|---|---|
committer | Adam C. Emerson <aemerson@redhat.com> | 2022-07-22 17:04:43 +0200 |
commit | 947ac23979b6c4ba2617090f2d9a36e1f40f60c8 (patch) | |
tree | f82fff2e84c74ccc7add16d4fb40a229520f5292 /cmake/modules/BuildBoost.cmake | |
parent | Merge pull request #46405 from mgfritch/ceph-backport-fw-slash (diff) | |
download | ceph-947ac23979b6c4ba2617090f2d9a36e1f40f60c8.tar.xz ceph-947ac23979b6c4ba2617090f2d9a36e1f40f60c8.zip |
build: Bump Boost version to 1.79
Also remove bind_allocator, as Boost.Asio now provides this function.
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
Diffstat (limited to 'cmake/modules/BuildBoost.cmake')
-rw-r--r-- | cmake/modules/BuildBoost.cmake | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cmake/modules/BuildBoost.cmake b/cmake/modules/BuildBoost.cmake index 5fdb6a38ef4..3ea725a8b7d 100644 --- a/cmake/modules/BuildBoost.cmake +++ b/cmake/modules/BuildBoost.cmake @@ -147,18 +147,17 @@ function(do_build_boost root_dir version) check_boost_version("${PROJECT_SOURCE_DIR}/src/boost" ${version}) set(source_dir SOURCE_DIR "${PROJECT_SOURCE_DIR}/src/boost") - elseif(version VERSION_GREATER 1.75) + elseif(version VERSION_GREATER 1.79) message(FATAL_ERROR "Unknown BOOST_REQUESTED_VERSION: ${version}") else() message(STATUS "boost will be downloaded...") # NOTE: If you change this version number make sure the package is available # at the three URLs below (may involve uploading to download.ceph.com) - set(boost_version 1.75.0) - set(boost_sha256 953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb) + set(boost_version 1.79.0) + set(boost_sha256 475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39) string(REPLACE "." "_" boost_version_underscore ${boost_version} ) string(JOIN " " boost_url https://boostorg.jfrog.io/artifactory/main/release/${boost_version}/source/boost_${boost_version_underscore}.tar.bz2 - https://downloads.sourceforge.net/project/boost/boost/${boost_version}/boost_${boost_version_underscore}.tar.bz2 https://download.ceph.com/qa/boost_${boost_version_underscore}.tar.bz2) set(source_dir URL ${boost_url} |