From patchwork Wed Jul 4 11:47:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 168959 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 45E382C0082 for ; Wed, 4 Jul 2012 21:47:30 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C3A2C8CB12; Wed, 4 Jul 2012 11:47:25 +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 9qmnVmKi-+y0; Wed, 4 Jul 2012 11:47:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 6A5EA8CD93; Wed, 4 Jul 2012 11:47:23 +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 161AF8F753 for ; Wed, 4 Jul 2012 11:47:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0E6058CD93 for ; Wed, 4 Jul 2012 11:47:22 +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 yodRA26a7IaM for ; Wed, 4 Jul 2012 11:47:20 +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 AF8538CB12 for ; Wed, 4 Jul 2012 11:47:20 +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 q64BlFTr012432 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 4 Jul 2012 08:47:17 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1341402439; bh=0EGsthlWJMsF4U4m2a/0+WiSP0FLvLlgJLtCAlYOsjU=; h=From:To:Cc:Subject:Date:Message-Id; b=YNyKf/qtG/h2o2UdqTnqoAUR9n4vKUAE0ExBctsV5bdGmgQalXPe+PUA2M7C0NAWP Vh8f2+rKljgu+GPASmFe72m6qkMgAWbEM/AhXFsksBO52gCyEjCA2O2o8KOmuH3OG6 KV6Mj/gMggswk7DD/znKclyT1elQ889gXN5DdULw= Received: by asgard (sSMTP sendmail emulation); Wed, 04 Jul 2012 08:47:14 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 4 Jul 2012 08:47:13 -0300 Message-Id: <1341402434-30526-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/2] beecrypt: 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 Fixes http://autobuild.buildroot.net/results/e28e5dfe73d838b8bc4e9c586bc865d57d717f76/build-end.log Signed-off-by: Gustavo Zacarias --- package/beecrypt/Config.in | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/package/beecrypt/Config.in b/package/beecrypt/Config.in index 2673877..19c7f2f 100644 --- a/package/beecrypt/Config.in +++ b/package/beecrypt/Config.in @@ -1,10 +1,14 @@ config BR2_PACKAGE_BEECRYPT bool "beecrypt" + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_ICU if BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR help Beecrypt is a general-purpose cryptography library. http://beecrypt.sf.net +comment "beecrypt needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS + comment "beecrypt C++ support requires a toolchain with WCHAR enabled" - depends on BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR + depends on BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS