Skip to content

Commit 9cb8a4d

Browse files
committed
cmake/modules/FindBoost.cmake: fix Boost_NO_WARN_NEW_VERSIONS
ceph#61084 bumped up the version used to 1.87. The warning should be for 1.88, same as it was 1.86 when we used 1.85. Fixes: https://tracker.ceph.com/issues/70725 Signed-off-by: Matan Breizman <[email protected]>
1 parent 7861012 commit 9cb8a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/modules/FindBoost.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ function(_Boost_COMPONENT_DEPENDENCIES component _ret)
14091409
set(_Boost_THREAD_DEPENDENCIES chrono atomic)
14101410
set(_Boost_WAVE_DEPENDENCIES filesystem serialization thread chrono atomic)
14111411
set(_Boost_WSERIALIZATION_DEPENDENCIES serialization)
1412-
if(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.87.0 AND NOT Boost_NO_WARN_NEW_VERSIONS)
1412+
if(Boost_VERSION_STRING VERSION_GREATER_EQUAL 1.88.0 AND NOT Boost_NO_WARN_NEW_VERSIONS)
14131413
message(WARNING "New Boost version may have incorrect or missing dependencies and imported targets")
14141414
endif()
14151415
endif()

0 commit comments

Comments
 (0)