From patchwork Thu Feb 13 13:22:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 320037 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 B9EB22C00A5 for ; Fri, 14 Feb 2014 00:22:42 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id ED91E32FA2; Thu, 13 Feb 2014 13:22:41 +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 PysY5ShuknTt; Thu, 13 Feb 2014 13:22:38 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 716A732FB0; Thu, 13 Feb 2014 13:22:24 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id E5F611C23B9 for ; Thu, 13 Feb 2014 13:22:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id D061C32F56 for ; Thu, 13 Feb 2014 13:22:16 +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 TvydU3+ZPS7a for ; Thu, 13 Feb 2014 13:22:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by silver.osuosl.org (Postfix) with ESMTP id 43CC632EEC for ; Thu, 13 Feb 2014 13:22:13 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 440F0845; Thu, 13 Feb 2014 14:22:21 +0100 (CET) Received: from localhost (AToulouse-651-1-98-40.w109-222.abo.wanadoo.fr [109.222.65.40]) by mail.free-electrons.com (Postfix) with ESMTPSA id 083C9819 for ; Thu, 13 Feb 2014 14:22:21 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 13 Feb 2014 14:22:07 +0100 Message-Id: <1392297727-17627-7-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1392297727-17627-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1392297727-17627-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 6/6] qt5: needs NPTL 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.org/results/70b/70b77e7a5b292e3fcbcf8cab4651c48220f2bd17/ Signed-off-by: Thomas Petazzoni --- package/qt5/Config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/qt5/Config.in b/package/qt5/Config.in index b62a810..597dbd1 100644 --- a/package/qt5/Config.in +++ b/package/qt5/Config.in @@ -6,10 +6,10 @@ config BR2_PACKAGE_QT5_JSCORE_AVAILABLE depends on !(BR2_arm7tdmi || BR2_arm720t || BR2_arm920t || BR2_arm922t || BR2_fa526) default y -comment "Qt5 needs a toolchain w/ wchar, IPv6, threads, C++" +comment "Qt5 needs a toolchain w/ wchar, IPv6, NPTL threads, C++" depends on !BR2_PACKAGE_QT depends on !BR2_avr32 - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS_NPTL menuconfig BR2_PACKAGE_QT5 bool "Qt5" @@ -17,7 +17,7 @@ menuconfig BR2_PACKAGE_QT5 depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on BR2_INET_IPV6 - depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL depends on !BR2_PACKAGE_QT help This option enables the Qt5 framework. Sub-options allow to