X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=recipes-connectivity%2Fkuksa-val%2Fkuksa-val%2F0001-Make-Boost-requirements-more-liberal.patch;fp=recipes-connectivity%2Fkuksa-val%2Fkuksa-val%2F0001-Make-Boost-requirements-more-liberal.patch;h=0000000000000000000000000000000000000000;hb=8a3944ae0cf1ba5fffb1b1dfd148e536ef98500b;hp=2441916622a9a691224568e1a8b79b8af58d807c;hpb=aae4e6dbcf7836f49eef755164c3ee1fd0142883;p=AGL%2Fmeta-agl-demo.git diff --git a/recipes-connectivity/kuksa-val/kuksa-val/0001-Make-Boost-requirements-more-liberal.patch b/recipes-connectivity/kuksa-val/kuksa-val/0001-Make-Boost-requirements-more-liberal.patch deleted file mode 100644 index 244191662..000000000 --- a/recipes-connectivity/kuksa-val/kuksa-val/0001-Make-Boost-requirements-more-liberal.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 69a64b4426fdeff1c1e098941496deda5ad3ea31 Mon Sep 17 00:00:00 2001 -From: Scott Murray -Date: Thu, 6 Oct 2022 11:56:38 -0400 -Subject: [PATCH 1/5] Make Boost requirements more liberal - -To allow building with Yocto Project 4.0/kirkstone, remove the EXACT -specifier from the Boost find_package call and restore the lower -Boost version originally specified before upstream commit 7ea6026d -raised it due to issues with the in-tree build. - -Upstream-Status: Pending - -Signed-off-by: Scott Murray ---- - kuksa-val-server/boost.cmake | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/kuksa-val-server/boost.cmake b/kuksa-val-server/boost.cmake -index 7358976..0da54df 100644 ---- a/kuksa-val-server/boost.cmake -+++ b/kuksa-val-server/boost.cmake -@@ -19,14 +19,14 @@ - # 4. Change version in main README.md file for KUKSA.val Server - - set(Boost_USE_STATIC_LIBS OFF) --set(BOOST_VER 1.82.0) -+set(BOOST_VER 1.75.0) - set(Boost_NO_BOOST_CMAKE ON) - set(BOOST_COMPONENTS filesystem program_options system log thread) - ADD_DEFINITIONS(-DBOOST_LOG_DYN_LINK) - - # Workaround function to allow cmake call `find_package` twice. Avoide side effects from local variables, which are produced be `find_package` - function(findBoost Required) -- find_package(Boost ${BOOST_VER} EXACT ${Required} -+ find_package(Boost ${BOOST_VER} ${Required} - COMPONENTS ${BOOST_COMPONENTS} - OPTIONAL_COMPONENTS unit_test_framework - ) --- -2.41.0 -