diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-11-12 10:00:00 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-11-13 21:34:09 +0100 |
commit | dbd9915caa884073e4a644086a5783fb687d76f0 (patch) | |
tree | 32d0e0651dc6904d70c2ff459c913291b2e48240 | |
parent | c2824fba2f2f4df6c1e0273fa546a203d1e6d5ac (diff) | |
download | buildroot-dbd9915caa884073e4a644086a5783fb687d76f0.tar.gz buildroot-dbd9915caa884073e4a644086a5783fb687d76f0.zip |
package/libplist: needs threads
Upstream added a mandatory pthread check:
https://github.com/libimobiledevice/libplist/commit/eec2e855b4f192cb1808d1f02b6bc8935a979025
Fixes
http://autobuild.buildroot.net/results/863/863bb43db222f8e63d60b1fc4a53299575727de1/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libplist/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/libplist/Config.in b/package/libplist/Config.in index 4a9575f545..5a246b4ecd 100644 --- a/package/libplist/Config.in +++ b/package/libplist/Config.in @@ -1,11 +1,12 @@ config BR2_PACKAGE_LIBPLIST bool "libplist" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_HAS_THREADS help libplist is a client for manipulating Apple Property List (.plist) files http://www.libimobiledevice.org/ -comment "libplist needs a toolchain w/ C++" - depends on !BR2_INSTALL_LIBSTDCPP +comment "libplist needs a toolchain w/ C++, threads" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS |