diff options
author | Ilya Averyanov <averyanovin@gmail.com> | 2019-01-06 01:47:27 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2019-01-06 21:22:04 +0100 |
commit | 1cd4dd48002553b7c1befe8ff1d16f54548b3006 (patch) | |
tree | 2dfec35eb9344286e8526ba41f0aefb35c39f332 /package/exempi | |
parent | 89a1398a2b0c7f8970a4b7dd9bd724e0396394f5 (diff) | |
download | buildroot-1cd4dd48002553b7c1befe8ff1d16f54548b3006.tar.gz buildroot-1cd4dd48002553b7c1befe8ff1d16f54548b3006.zip |
exempi: add dependency on threads
Fixes:
http://autobuild.buildroot.net/results/96b/96bf4f0ddd88233b9604056d83bb3d7ea97d2046/
http://autobuild.buildroot.net/results/d92/d92c8eb3004165033c22cc98b153cf547a352fd7/
Signed-off-by: Ilya Averyanov <averyanovin@gmail.com>
[Peter: add autobuilder references]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/exempi')
-rw-r--r-- | package/exempi/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/exempi/Config.in b/package/exempi/Config.in index b3ec2c513d..0fa4b473bc 100644 --- a/package/exempi/Config.in +++ b/package/exempi/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_EXEMPI bool "exempi" depends on !BR2_STATIC_LIBS # dlfcn.h depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_EXPAT select BR2_PACKAGE_ZLIB help @@ -10,5 +11,5 @@ config BR2_PACKAGE_EXEMPI http://libopenraw.freedesktop.org/wiki/Exempi -comment "exempi needs a toolchain w/ C++, dynamic library" - depends on BR2_STATIC_LIBS || BR2_INSTALL_LIBSTDCPP +comment "exempi needs a toolchain w/ C++, dynamic library, threads + depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS |