From patchwork Tue Sep 10 18:13:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 273989 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 9571B2C0090 for ; Wed, 11 Sep 2013 04:58:59 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 133F5320F1; Tue, 10 Sep 2013 18:58:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nJiiTdME5bPB; Tue, 10 Sep 2013 18:58:42 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 45FE432B60; Tue, 10 Sep 2013 18:34:08 +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 E7E221C2D4F for ; Tue, 10 Sep 2013 18:34:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DD4528E7EF for ; Tue, 10 Sep 2013 18:34:18 +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 otWymLiuKR0z for ; Tue, 10 Sep 2013 18:34:15 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 71C769098C for ; Tue, 10 Sep 2013 18:13:49 +0000 (UTC) Received: from asgard (host126.190-136-121.telecom.net.ar [190.136.121.126]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r8AIDgrO005768 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 10 Sep 2013 18:13:45 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1378836827; bh=RcD9af74IB+mIL8+HolLjdVd9PA04qptQEMdF7TLgxE=; h=From:To:Cc:Subject:Date; b=RI7YuapbRjPuuxv6JV2aAgnSjpu28w7xipBZ4w7unk6Ym0StILaapqPunNucVTMSH a3d98ISypVULDcMYd//jJh8qQmY+pg7uHVSvsQ9BbCEr5Vin3LOcsHXN1t0hW1nXcY 0PVF74XAZJ5A0afIi6lXxa1QclNYU8HqQdoQBIwA= Received: by asgard (sSMTP sendmail emulation); Tue, 10 Sep 2013 15:13:37 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 10 Sep 2013 15:13:36 -0300 Message-Id: <1378836816-27308-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] libroxml: needs threads 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/169/169b607993cd7ae4a8a79c2a00c00f820ec1c747/ Signed-off-by: Gustavo Zacarias --- package/libroxml/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/libroxml/Config.in b/package/libroxml/Config.in index b6b253f..e1a646f 100644 --- a/package/libroxml/Config.in +++ b/package/libroxml/Config.in @@ -1,8 +1,12 @@ config BR2_PACKAGE_LIBROXML bool "roxml" + depends on BR2_TOOLCHAIN_HAS_THREADS help libroxml is a light and powerful xml parsing library with xpath handling. Roxml is a binary using libroxml to explore xml file from shell scripts. http://www.libroxml.net + +comment "libroxml needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS