From 3c73b893b3500ec8fc76e5c2d965dc132dcbe488 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sun, 22 Sep 2019 21:04:25 +0200 Subject: [PATCH] package/libspatialindex: fix static build Fixes: - http://autobuild.buildroot.org/results/3ea3aa8ba6c89139ee69b055fdccfa62b85e8821 Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- ...on-t-force-the-build-of-a-shared-lib.patch | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 package/libspatialindex/0001-CMakeLists.txt-don-t-force-the-build-of-a-shared-lib.patch diff --git a/package/libspatialindex/0001-CMakeLists.txt-don-t-force-the-build-of-a-shared-lib.patch b/package/libspatialindex/0001-CMakeLists.txt-don-t-force-the-build-of-a-shared-lib.patch new file mode 100644 index 0000000000..3316a3825d --- /dev/null +++ b/package/libspatialindex/0001-CMakeLists.txt-don-t-force-the-build-of-a-shared-lib.patch @@ -0,0 +1,35 @@ +From 2333cd804e33e67567b656b847094cd9a8c8fbbf Mon Sep 17 00:00:00 2001 +From: Fabrice Fontaine +Date: Sun, 22 Sep 2019 20:58:19 +0200 +Subject: [PATCH] CMakeLists.txt: don't force the build of a shared library + +Building a shared library doesn't work on all platforms, so instead, +let CMake rely on the standard BUILD_SHARED_LIBS variable to decide +whether a static or shared library should be built. + +Signed-off-by: Fabrice Fontaine +[Upstream status: +https://github.com/libspatialindex/libspatialindex/pull/158] +--- + src/CMakeLists.txt | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index e6b733b..f8a4980 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -194,9 +194,9 @@ if (NOT WITH_STATIC_LASZIP) + endif() + endif() + +-add_library(${SIDX_LIB_NAME} SHARED ${SIDX_SOURCES}) ++add_library(${SIDX_LIB_NAME} ${SIDX_SOURCES}) + +-add_library(${SIDX_C_LIB_NAME} SHARED ${SIDX_CAPI_CPP}) ++add_library(${SIDX_C_LIB_NAME} ${SIDX_CAPI_CPP}) + + target_link_libraries(${SIDX_C_LIB_NAME} + ${SIDX_LIB_NAME} +-- +2.23.0 + -- 2.30.2