From patchwork Mon Apr 21 17:28:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 340943 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 2FAE2140078 for ; Tue, 22 Apr 2014 12:00:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id AD4821FE5A; Mon, 21 Apr 2014 17:28:18 +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 JUZdn4vk6MDM; Mon, 21 Apr 2014 17:28:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id B2C1B26E0C; Mon, 21 Apr 2014 17:28:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 9F3FB1BFA59 for ; Mon, 21 Apr 2014 17:28:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 9C47293465 for ; Mon, 21 Apr 2014 17:28:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LpuE5gViDYUQ for ; Mon, 21 Apr 2014 17:28:15 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 465D78B179 for ; Mon, 21 Apr 2014 17:28:15 +0000 (UTC) Received: from localhost.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id EBF5594017D; Mon, 21 Apr 2014 19:27:55 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Mon, 21 Apr 2014 19:28:04 +0200 Message-Id: <1398101284-31520-1-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 1.9.0 Subject: [Buildroot] [PATCH 1/1] libdrm: 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 libdrm select libpthread-stubs that needs threads support. Fixes: http://autobuild.buildroot.net/results/1da/1dad13110312a44b40b9ee4050b265de1f3c8a42/build-end.log Signed-off-by: Romain Naour --- package/libdrm/Config.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/libdrm/Config.in b/package/libdrm/Config.in index 72cf5f8..fdb541e 100644 --- a/package/libdrm/Config.in +++ b/package/libdrm/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_LIBDRM bool "libdrm" select BR2_PACKAGE_LIBPTHREAD_STUBS + depends on BR2_TOOLCHAIN_HAS_THREADS # libpthread-stubs depends on BR2_LARGEFILE help Direct Rendering Manager @@ -59,5 +60,6 @@ endmenu endif -comment "libdrm needs a toolchain w/ largefile" +comment "libdrm needs a toolchain w/ largefile, threads" depends on !BR2_LARGEFILE + depends on !BR2_TOOLCHAIN_HAS_THREADS