blob: fda60e3f1f702c63540aae27406502a18dde2552 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From 433a2d495a2481c63b82c11a30f7c642d6abe63f Mon Sep 17 00:00:00 2001
2From: "Paul \"TBBle\" Hampson" <Paul.Hampson@Pobox.com>
3Date: Fri, 29 Dec 2017 19:55:49 +1100
4Subject: [PATCH] FindBoost: Boost 1.66.0 dependency and release update
5
6Release notes: http://www.boost.org/users/history/version_1_66_0.html
7
8* All new libraries are header-only.
9* _Boost_COMPONENT_DEPENDENCIES is unchanged from 1.65.1
10* _Boost_FIBER_COMPILER_FEATURES is unchanged from 1.64.0
11
12Upstream-Status: Backport
13[Yocto 12762]
14Signed-off-by: Armin Kuster <akuster808@gmail.com>
15
16---
17 Modules/FindBoost.cmake | 8 ++++----
18 1 file changed, 4 insertions(+), 4 deletions(-)
19
20Index: cmake-3.10.3/Modules/FindBoost.cmake
21===================================================================
22--- cmake-3.10.3.orig/Modules/FindBoost.cmake
23+++ cmake-3.10.3/Modules/FindBoost.cmake
24@@ -797,7 +797,7 @@ function(_Boost_COMPONENT_DEPENDENCIES c
25 set(_Boost_WAVE_DEPENDENCIES filesystem system serialization thread chrono date_time atomic)
26 set(_Boost_WSERIALIZATION_DEPENDENCIES serialization)
27 endif()
28- if(NOT Boost_VERSION VERSION_LESS 106600)
29+ if(NOT Boost_VERSION VERSION_LESS 106700)
30 message(WARNING "New Boost version may have incorrect or missing dependencies and imported targets")
31 set(_Boost_IMPORTED_TARGETS FALSE)
32 endif()
33@@ -931,8 +931,8 @@ endfunction()
34 # `${Boost_ROOT}/libs/fiber/build/Jamfile.v2`.
35 #
36 function(_Boost_COMPILER_FEATURES component _ret)
37- # Boost >= 1.62 and < 1.65
38- if(NOT Boost_VERSION VERSION_LESS 106200 AND Boost_VERSION VERSION_LESS 106500)
39+ # Boost >= 1.62 and < 1.67
40+ if(NOT Boost_VERSION VERSION_LESS 106200 AND Boost_VERSION VERSION_LESS 106700)
41 set(_Boost_FIBER_COMPILER_FEATURES
42 cxx_alias_templates
43 cxx_auto_type
44@@ -1038,7 +1038,7 @@ else()
45 # _Boost_COMPONENT_HEADERS. See the instructions at the top of
46 # _Boost_COMPONENT_DEPENDENCIES.
47 set(_Boost_KNOWN_VERSIONS ${Boost_ADDITIONAL_VERSIONS}
48- "1.65.1" "1.65.0" "1.65"
49+ "1.66.0" "1.66" "1.65.1" "1.65.0" "1.65"
50 "1.64.0" "1.64" "1.63.0" "1.63" "1.62.0" "1.62" "1.61.0" "1.61" "1.60.0" "1.60"
51 "1.59.0" "1.59" "1.58.0" "1.58" "1.57.0" "1.57" "1.56.0" "1.56" "1.55.0" "1.55"
52 "1.54.0" "1.54" "1.53.0" "1.53" "1.52.0" "1.52" "1.51.0" "1.51"