diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-09-15 14:51:22 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2021-09-17 13:12:11 -0400 |
commit | 8635e7c6c160d06f2ba5a5a84324122d6588b891 (patch) | |
tree | 0cdc121eea05e59beb39d0e1f630cb0b76c7560a /recipes-navigation/osrm-backend/files/0001-cmake-fix-search-paths-for-OE-building.patch | |
parent | 683496a08c6526e35fc4c64d7c1772548e64b7fa (diff) |
osrm-backend: remove recipes
Remove the osrm-backend recipe and the recipes for its dependencies
osmium and protozero, as they do not build and nothing in AGL uses
them.
Bug-AGL: SPEC-3921
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I50325a8a3f9481744bf1bb1e77dad31167b54bb6
Diffstat (limited to 'recipes-navigation/osrm-backend/files/0001-cmake-fix-search-paths-for-OE-building.patch')
-rw-r--r-- | recipes-navigation/osrm-backend/files/0001-cmake-fix-search-paths-for-OE-building.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/recipes-navigation/osrm-backend/files/0001-cmake-fix-search-paths-for-OE-building.patch b/recipes-navigation/osrm-backend/files/0001-cmake-fix-search-paths-for-OE-building.patch deleted file mode 100644 index 80a7b6f8b..000000000 --- a/recipes-navigation/osrm-backend/files/0001-cmake-fix-search-paths-for-OE-building.patch +++ /dev/null @@ -1,36 +0,0 @@ -From a45781fbd39426c0be6d57dcce7ce4679ee63b87 Mon Sep 17 00:00:00 2001 -From: Matt Ranostay <matt.ranostay@konsulko.com> -Date: Fri, 3 Nov 2017 16:53:34 -0700 -Subject: [PATCH] cmake: fix search paths for OE building - -For gcc-6 -isystem breaks #include_next so put recipes -staging include directory before others - -Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com> ---- - CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 175791651..c5a214102 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -113,6 +113,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - endif() - endif() - -+include_directories(BEFORE ${STAGING_DIR_HOST}/usr/include/) - include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR}/include/) - include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}/include/) - include_directories(SYSTEM ${CMAKE_CURRENT_SOURCE_DIR}/third_party/sol2/) -@@ -589,7 +590,6 @@ if (ENABLE_STXXL) - endif() - - add_definitions(${OSRM_DEFINES}) --include_directories(SYSTEM ${DEPENDENCIES_INCLUDE_DIRS}) - - set(BOOST_BASE_LIBRARIES - ${Boost_DATE_TIME_LIBRARY} --- -2.14.2 - |