summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2018-06-03 15:22:18 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-06-07 08:52:55 +0100
commit5dbcf72c6466c96e51d803e499e4e2184250aaa8 (patch)
tree821d3ec22f46b4fce530e0238ac1d6545c7f8be5 /meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch
parent74e03045a0f0ce73bff36e3cd08eae9a37d6058e (diff)
downloadpoky-5dbcf72c6466c96e51d803e499e4e2184250aaa8.tar.gz
cmake: fix build issue with boost 1.66.0
this fixes a build issue with boost 1.66.0 [Yocto 12762] (From OE-Core rev: 2ff3d3296deacb9af4d9ad0b92cd7ba5f94b7182) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch')
-rw-r--r--meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch b/meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch
new file mode 100644
index 0000000000..a45eda5201
--- /dev/null
+++ b/meta/recipes-devtools/cmake/cmake/0001-FindBoost-Fix-incorrect-alphabetisation-of-headers-l.patch
@@ -0,0 +1,29 @@
1From b1e9f67137733bc109d355450fcd06edda4784c5 Mon Sep 17 00:00:00 2001
2From: "Paul \"TBBle\" Hampson" <Paul.Hampson@Pobox.com>
3Date: Fri, 29 Dec 2017 20:07:31 +1100
4Subject: [PATCH 1/6] FindBoost: Fix incorrect alphabetisation of headers list
5
6Affects cmake < 3.11.0
7
8Upsteam-Status: Backport
9[Yocto 12762]
10Signed-off-by: Armin Kuster <akuster808@gmail.com>
11
12---
13 Modules/FindBoost.cmake | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16Index: cmake-3.10.3/Modules/FindBoost.cmake
17===================================================================
18--- cmake-3.10.3.orig/Modules/FindBoost.cmake
19+++ cmake-3.10.3/Modules/FindBoost.cmake
20@@ -831,8 +831,8 @@ function(_Boost_COMPONENT_HEADERS compon
21 set(_Boost_CONTAINER_HEADERS "boost/container/container_fwd.hpp")
22 set(_Boost_CONTEXT_HEADERS "boost/context/all.hpp")
23 set(_Boost_COROUTINE_HEADERS "boost/coroutine/all.hpp")
24- set(_Boost_EXCEPTION_HEADERS "boost/exception/exception.hpp")
25 set(_Boost_DATE_TIME_HEADERS "boost/date_time/date.hpp")
26+ set(_Boost_EXCEPTION_HEADERS "boost/exception/exception.hpp")
27 set(_Boost_FIBER_HEADERS "boost/fiber/all.hpp")
28 set(_Boost_FILESYSTEM_HEADERS "boost/filesystem/path.hpp")
29 set(_Boost_GRAPH_HEADERS "boost/graph/adjacency_list.hpp")