From patchwork Fri Jan 9 10:40:55 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 427035 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 93D26140182 for ; Fri, 9 Jan 2015 21:42:50 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D37FC8B0A0; Fri, 9 Jan 2015 10:42:49 +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 NEgcNWIdhdsd; Fri, 9 Jan 2015 10:42:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 155BF8C8AE; Fri, 9 Jan 2015 10:42:49 +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 53D2D1BFA18 for ; Fri, 9 Jan 2015 10:42:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 500A68C8AE for ; Fri, 9 Jan 2015 10:42:48 +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 Zf6KNCaD-P+g for ; Fri, 9 Jan 2015 10:42:47 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [62.210.192.172]) by whitealder.osuosl.org (Postfix) with ESMTPS id DF7318B0A0 for ; Fri, 9 Jan 2015 10:42:46 +0000 (UTC) Received: from asgard (cpe-181-46-99-160.telecentro-reversos.com.ar [181.46.99.160] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.14.9/8.14.9) with ESMTP id t09Agdi9021759 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 9 Jan 2015 10:42:42 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1420800164; bh=DGvEOgAcousXoWeIbLjINK17Bemsk3+MhXivX29uBXw=; h=From:To:Cc:Subject:Date; b=Sfv4D9rlvWgLvjXsmW0tKUJbOmItmsRLDgaed80RreGCwyfKznoWgLwNFAkvegpm7 30NobY0z0CqlsWT8MKHanz8dvc0k4/vRVH6QaXfm0E0v5Tl97XnvKniFQrgVX0cH3c MaoPU87bu9Ii3/tHFNrzWRyB2rE5uzg4DKPo953Q= Received: by asgard (sSMTP sendmail emulation); Fri, 09 Jan 2015 07:40:55 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 9 Jan 2015 07:40:55 -0300 Message-Id: <1420800055-6710-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.5 X-Virus-Scanned: clamav-milter 0.98.5 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] xz-utils: needs threads X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" It's one of the major features of the 5.2.0 release. Fixes: http://autobuild.buildroot.net/results/e86/e86e97ff7887f1bdc6bf913498392ff50f56ea88/ Signed-off-by: Gustavo Zacarias --- package/xz/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/xz/Config.in b/package/xz/Config.in index 50116f2..55beb42 100644 --- a/package/xz/Config.in +++ b/package/xz/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_XZ bool "xz-utils" + depends on BR2_TOOLCHAIN_HAS_THREADS help XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm compression format, which provides memory-hungry but powerful @@ -12,3 +13,6 @@ config BR2_PACKAGE_XZ package. http://tukaani.org/xz/ + +comment "xz-utils needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS