diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-12-25 16:30:28 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-12-25 18:03:51 +0100 |
commit | f21f07420f2c100faca18b4f221ccc1604933c6b (patch) | |
tree | b8a8134f7d0ae725fb44eef0c279af5542c8f210 /sci-libs/indilib/files | |
parent | sci-libs/indilib: drop 2.0.3 (diff) | |
download | gentoo-f21f07420f2c100faca18b4f221ccc1604933c6b.tar.gz gentoo-f21f07420f2c100faca18b4f221ccc1604933c6b.tar.bz2 gentoo-f21f07420f2c100faca18b4f221ccc1604933c6b.zip |
sci-libs/indilib: add 2.0.5
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-libs/indilib/files')
-rw-r--r-- | sci-libs/indilib/files/indilib-2.0.5-link-system-httplib.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sci-libs/indilib/files/indilib-2.0.5-link-system-httplib.patch b/sci-libs/indilib/files/indilib-2.0.5-link-system-httplib.patch new file mode 100644 index 000000000000..5f50d6967444 --- /dev/null +++ b/sci-libs/indilib/files/indilib-2.0.5-link-system-httplib.patch @@ -0,0 +1,21 @@ +From 0d5beb7fe9d8a7f0fa6f56044077f83605a778fa Mon Sep 17 00:00:00 2001 +From: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de> +Date: Sat, 2 Dec 2023 10:06:59 +0100 +Subject: [PATCH] Link against httplib if using system libraries (#1968) + +--- + drivers/telescope/CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/drivers/telescope/CMakeLists.txt b/drivers/telescope/CMakeLists.txt +index 331a30d84e..9c2f9f234c 100644 +--- a/drivers/telescope/CMakeLists.txt ++++ b/drivers/telescope/CMakeLists.txt +@@ -262,6 +262,6 @@ install(TARGETS indi_skywatcherAltAzMount RUNTIME DESTINATION bin) + add_executable(indi_planewave_telescope + planewave_mount.cpp) + +-target_link_libraries(indi_planewave_telescope indidriver) ++target_link_libraries(indi_planewave_telescope indidriver ${HTTPLIB_LIBRARY}) + + install(TARGETS indi_planewave_telescope RUNTIME DESTINATION bin) |