From patchwork Tue Oct 8 21:27:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerzy Grzegorek X-Patchwork-Id: 281666 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 7ABA12C00A6 for ; Wed, 9 Oct 2013 08:28:07 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 5281F32250; Tue, 8 Oct 2013 21:28:06 +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 L-AnLqKdVxIr; Tue, 8 Oct 2013 21:28:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 8012026DC1; Tue, 8 Oct 2013 21:28:02 +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 21E0B1BF9E6 for ; Tue, 8 Oct 2013 21:28:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1AC7E8101E for ; Tue, 8 Oct 2013 21:28:01 +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 WU+mYtojiHgb for ; Tue, 8 Oct 2013 21:27:58 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.internet.v.pl (mail.internet.v.pl [62.69.205.34]) by whitealder.osuosl.org (Postfix) with SMTP id 82B888455D for ; Tue, 8 Oct 2013 21:27:58 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.internet.v.pl (Sendmail) with ESMTP id D0EC3C54A5; Tue, 8 Oct 2013 23:27:54 +0200 (CEST) Received: from mail.internet.v.pl ([127.0.0.1]) by localhost (poczta.v.pl [127.0.0.1]) (amavisd-new, port 10024) with SMTP id iQ38Hr-PfTHm; Tue, 8 Oct 2013 23:27:54 +0200 (CEST) Received: from localhost.localdomain (93-181-142-99.internetia.net.pl [93.181.142.99]) by mail.internet.v.pl (Sendmail) with ESMTPA id 6446BC549F; Tue, 8 Oct 2013 23:27:53 +0200 (CEST) From: Jerzy Grzegorek To: buildroot@busybox.net Date: Tue, 8 Oct 2013 23:27:17 +0200 Message-Id: <1381267637-3957-1-git-send-email-jerzy.grzegorek@trzebnica.net> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH 1/1] xlib_libpthread-stubs: needs thread 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/609/6099baac4bb469ae18aab6512233db25183eaabd/ Signed-off-by: Jerzy Grzegorek --- package/x11r7/xlib_libpthread-stubs/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/x11r7/xlib_libpthread-stubs/Config.in b/package/x11r7/xlib_libpthread-stubs/Config.in index fb53585..b2df95a 100644 --- a/package/x11r7/xlib_libpthread-stubs/Config.in +++ b/package/x11r7/xlib_libpthread-stubs/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS bool "libpthread-stubs" + depends on BR2_TOOLCHAIN_HAS_THREADS help This library provides weak aliases for pthread functions not provided in libc or otherwise available by default. http://xcb.freedesktop.org/ + +comment "xlib_libpthread-stubs needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS