summaryrefslogtreecommitdiff
path: root/package/ustr
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-05-24 22:03:35 +0200
committerPeter Korsgaard <peter@korsgaard.com>2016-05-25 23:32:51 +0200
commit986893ac781f94d5bfc6d7b88af5cd1abc86054b (patch)
tree752d441482aea4f994dbb26317bf309aa575e772 /package/ustr
parentd8e1244695ffb90b4670b800df02958e5a667777 (diff)
package/ustr: disable on musl
libsemanage is the only package depending on ustr, both packages do not build using a musl-based toolchain, suggested by Thomas: http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/149138 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ustr')
-rw-r--r--package/ustr/Config.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/package/ustr/Config.in b/package/ustr/Config.in
index 0d9c272b6..9d6561c34 100644
--- a/package/ustr/Config.in
+++ b/package/ustr/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_USTR
bool "ustr"
# unconditionally builds a shared library
depends on !BR2_STATIC_LIBS
+ depends on !BR2_TOOLCHAIN_USES_MUSL # broken vsnprintf detection
help
A small, safe string library.
@@ -9,3 +10,4 @@ config BR2_PACKAGE_USTR
comment "ustr needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
+ depends on !BR2_TOOLCHAIN_USES_MUSL