From: Gustavo Zacarias Date: Wed, 4 Jul 2012 01:47:14 +0000 (+0000) Subject: rpm: needs threads support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=485b05a475a996652a6533b3f50c5440a025e5bf;p=buildroot.git rpm: needs threads support Because beecrypt needs threads rpm does too since it's a mandatory dependency. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/rpm/Config.in b/package/rpm/Config.in index a80a5a7975..14072c95f9 100644 --- a/package/rpm/Config.in +++ b/package/rpm/Config.in @@ -1,8 +1,12 @@ +comment "rpm requires a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS + comment "rpm requires libneon with SSL, XML and ZLIB support" - depends on !BR2_PACKAGE_NEON || BR2_PACKAGE_NEON_NOXML + depends on !BR2_PACKAGE_NEON || BR2_PACKAGE_NEON_NOXML && BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_RPM bool "rpm" + depends on BR2_TOOLCHAIN_HAS_THREADS # beecrypt select BR2_PACKAGE_BEECRYPT select BR2_PACKAGE_POPT select BR2_PACKAGE_OPENSSL