From patchwork Wed Jul 4 11:47:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 168960 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 5626D2C0082 for ; Wed, 4 Jul 2012 21:47:51 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D5F6C8D1AA; Wed, 4 Jul 2012 11:47:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13NzicYngx31; Wed, 4 Jul 2012 11:47:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 962288D0E1; Wed, 4 Jul 2012 11:47:36 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id F3FF88F753 for ; Wed, 4 Jul 2012 11:47:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D2AD18CD93 for ; Wed, 4 Jul 2012 11:47:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tbaoEPbSGyzA for ; Wed, 4 Jul 2012 11:47:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id C4FAF8D0C3 for ; Wed, 4 Jul 2012 11:47:25 +0000 (UTC) Received: from asgard (host14.190-231-140.telecom.net.ar [190.231.140.14]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q64BlKIV012438 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 4 Jul 2012 08:47:22 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1341402444; bh=U8/OWbrgPCxrP9+gqybUETfnTeVaOX+5J/KUFUQD/9o=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=LYqU4aPObrNowowLnJLWiWOzdMRpahFFfQc50+53ytxQuSjf/JllCHC+0wsPN7dcm l95dhXeA/O0wkVXOraJR5L2oKSOKQZexRVRxIZAYZVpKPzrnk6RKkmvZ+u2wLtjeKy iT11tD+p7PJWahKTIKTx8rR7ZDpGyE+lpuo5uBpQ= Received: by asgard (sSMTP sendmail emulation); Wed, 04 Jul 2012 08:47:19 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 4 Jul 2012 08:47:14 -0300 Message-Id: <1341402434-30526-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1341402434-30526-1-git-send-email-gustavo@zacarias.com.ar> References: <1341402434-30526-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] rpm: needs threads support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Because beecrypt needs threads rpm does too since it's a mandatory dependency. Signed-off-by: Gustavo Zacarias --- package/rpm/Config.in | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/package/rpm/Config.in b/package/rpm/Config.in index a80a5a7..14072c9 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