From patchwork Sat Feb 9 22:27:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 219462 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 2DD1C2C0089 for ; Sun, 10 Feb 2013 09:27:25 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id EC58F2EB7C; Sat, 9 Feb 2013 22:27:23 +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 TbY0o-nQ3CCb; Sat, 9 Feb 2013 22:27:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id B17E2201E3; Sat, 9 Feb 2013 22:27:22 +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 46B0F8F79F for ; Sat, 9 Feb 2013 22:27:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EEED08459F for ; Sat, 9 Feb 2013 22:27:21 +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 o30659ObAnHg for ; Sat, 9 Feb 2013 22:27:20 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-da0-f51.google.com (mail-da0-f51.google.com [209.85.210.51]) by whitealder.osuosl.org (Postfix) with ESMTPS id 7E7C28160D for ; Sat, 9 Feb 2013 22:27:20 +0000 (UTC) Received: by mail-da0-f51.google.com with SMTP id n15so2224762dad.38 for ; Sat, 09 Feb 2013 14:27:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=7rqcfH8C0jHU878aKKKIcUNj1wzihya9bohsdDoRSFE=; b=TsSS0aQ+Nrz25pYkCsZrxQaJj40elSsEDLeZSuAk4jgs7coHFM5RQz/tVjbtMUidz5 6mwFW4bnyYeJFS7CPfa9lmm5p4zDOOfU2PlwMDcanoitqIP0lbI0MdBAin/dTvaxsMH+ 7LRpM93jayF63+Phzn5h+EFHoe2yO32MEi2LF3XnoAMYDoGJWzsy3g0tEvuoJGf7XboB hmxOxcZ6xvJfMUS/J49e5xfkpFdUIkCaIkjHYq5ih7aqlB2VU7h15myU41vDdEbjVx3N Henp+cCKJ3wETKoQkghF5t9eyRTBW+baKaNTUVrpl4cqdOL1XlNJIvGt0K9Oinqmr3lh lYWQ== X-Received: by 10.68.227.106 with SMTP id rz10mr6402013pbc.52.1360448840108; Sat, 09 Feb 2013 14:27:20 -0800 (PST) Received: from localhost.localdomain (c-69-181-251-46.hsd1.ca.comcast.net. [69.181.251.46]) by mx.google.com with ESMTPS id ju13sm2605173pbb.7.2013.02.09.14.27.18 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 09 Feb 2013 14:27:19 -0800 (PST) From: Gilles Talis To: buildroot@busybox.net Date: Sat, 9 Feb 2013 14:27:14 -0800 Message-Id: <1360448834-21507-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: Subject: [Buildroot] [PATCH 1/1] libtirpc: requires toolchain with 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.org/results/8ba720f47f74df94b8c70ac4befd47c47ce65f2f Signed-off-by: Gilles Talis --- package/libtirpc/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/libtirpc/Config.in b/package/libtirpc/Config.in index 7e891b4..f2a6f83 100644 --- a/package/libtirpc/Config.in +++ b/package/libtirpc/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_LIBTIRPC bool "libtirpc" + depends on BR2_TOOLCHAIN_HAS_THREADS help Libtirpc is a port of Sun's Transport-Independent RPC library to Linux. http://sourceforge.net/projects/libtirpc/ + +comment "libtirpc requires a toolchain with threads support" + depends on !BR2_TOOLCHAIN_HAS_THREADS