[Buildroot] [PATCH] libzip: depend on !BR2_STATIC_LIBS

Bartosz Golaszewski brgl at bgdev.pl
Tue Jul 4 10:24:09 UTC 2017


Since version 1.2.0 libzip requires dynamic library capabilities.

Fixes: http://autobuild.buildroot.net/results/c50/c50ffa5bf565e75333192edc89e2d39044d07f26/
Signed-off-by: Bartosz Golaszewski <brgl at bgdev.pl>
---
 package/libzip/Config.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/libzip/Config.in b/package/libzip/Config.in
index 54de9e5..0414186 100644
--- a/package/libzip/Config.in
+++ b/package/libzip/Config.in
@@ -1,8 +1,12 @@
 config BR2_PACKAGE_LIBZIP
 	bool "libzip"
+	depends on !BR2_STATIC_LIBS
 	select BR2_PACKAGE_ZLIB
 	help
 	  C library for reading, creating, and modifying zip archives. This
 	  package also contains zipcmp, ziptorrent and zipmerge utilities.
 
 	  http://www.nih.at/libzip/
+
+comment "libzip needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
-- 
2.9.3



More information about the buildroot mailing list