summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
diff options
context:
space:
mode:
authorGianfranco Costamagna <costamagna.gianfranco@gmail.com>2020-01-09 11:36:51 +0100
committerArmin Kuster <akuster808@gmail.com>2020-01-19 09:01:43 -0800
commiteb8090f27afb865878a04aaeff6caac34abdbac0 (patch)
tree189062942ae0bced4d141bcebc3de369195b0421 /meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
parent636660b7b2431da724d391d237d3680a72470121 (diff)
downloadmeta-openembedded-eb8090f27afb865878a04aaeff6caac34abdbac0.tar.gz
websocketpp: add various upstream accepted and proposed patches to fix various issues, including:
- build failure with boost 1.71 - bad installation of header files correct version on some OSes. - fix version minor number - fix Scons script not being Python3 ready - build examples and tests only if ptest is enabled in DISTRO_FEATURES - do not depend on websocketpp from -dev package, because this is an header only dev package for now Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 7cd26041725e57dd0680767a513955193e1f0d63) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch')
-rw-r--r--meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch b/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
new file mode 100644
index 000000000..c3651e94a
--- /dev/null
+++ b/meta-oe/recipes-support/websocketpp/websocketpp-0.8.1/842.patch
@@ -0,0 +1,30 @@
1From 7f7e2be01b4fa6580ce27f668e61adf37853ad67 Mon Sep 17 00:00:00 2001
2From: Schrijvers Luc <begasus@gmail.com>
3Date: Wed, 18 Sep 2019 11:35:43 +0200
4Subject: [PATCH] Fix "include" directory installation. the variable
5 INSTALL_INCLUDE_DIR already exists, and defaults to include if not
6 specificied otherwise. Using it allows people to customize the installation
7 from outside, fixing issues with other OS like Haiku
8
9Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
10Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
11---
12 cmake/CMakeHelpers.cmake | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/cmake/CMakeHelpers.cmake b/cmake/CMakeHelpers.cmake
16index 1478f4b..f603632 100644
17--- a/cmake/CMakeHelpers.cmake
18+++ b/cmake/CMakeHelpers.cmake
19@@ -80,7 +80,7 @@ macro (final_target)
20 endif ()
21
22 install (DIRECTORY ${CMAKE_SOURCE_DIR}/${TARGET_NAME}
23- DESTINATION include/
24+ DESTINATION ${INSTALL_INCLUDE_DIR}/
25 FILES_MATCHING PATTERN "*.hpp*")
26 endmacro ()
27
28--
292.17.1
30