From patchwork Wed Feb 4 00:34:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 436089 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 57146140216 for ; Wed, 4 Feb 2015 11:35:18 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C04659342A; Wed, 4 Feb 2015 00:35:03 +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 n4XsF-zf609T; Wed, 4 Feb 2015 00:35:03 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id AF3B193606; Wed, 4 Feb 2015 00:35:02 +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 CABAA1D0617 for ; Wed, 4 Feb 2015 00:34:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C68F72FCFF for ; Wed, 4 Feb 2015 00:34: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 UVR-6lDGZ6iL for ; Wed, 4 Feb 2015 00:34:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by silver.osuosl.org (Postfix) with ESMTPS id F3F5431252 for ; Wed, 4 Feb 2015 00:34:38 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1YInvP-0002pz-Qr; Wed, 04 Feb 2015 01:34:36 +0100 Received: from arnout by vandecaa-laptop with local (Exim 4.84) (envelope-from ) id 1YInvO-00067m-VW; Wed, 04 Feb 2015 01:34:35 +0100 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@buildroot.org Date: Wed, 4 Feb 2015 01:34:09 +0100 Message-Id: <1423010059-23446-12-git-send-email-arnout@mind.be> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1423010059-23446-1-git-send-email-arnout@mind.be> References: <1423010059-23446-1-git-send-email-arnout@mind.be> Subject: [Buildroot] [PATCH 11/21] oprofile: add missing indirect dependency on NPTL for PPC X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/oprofile/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/oprofile/Config.in b/package/oprofile/Config.in index 3ea07d9..8c9b39f 100644 --- a/package/oprofile/Config.in +++ b/package/oprofile/Config.in @@ -9,7 +9,7 @@ config BR2_PACKAGE_OPROFILE depends on BR2_USE_WCHAR # binutils depends on !BR2_xtensa # libpfm4 is needed on PowerPC, and requires thread support - depends on BR2_TOOLCHAIN_HAS_THREADS || !BR2_powerpc + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_powerpc help OProfile is a system-wide profiler for Linux systems, capable of profiling all running code at low overhead. @@ -31,6 +31,6 @@ comment "oprofile needs a toolchain w/ C++, wchar" depends on !BR2_aarch64 && !BR2_nios2 && !BR2_xtensa depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR -comment "oprofile needs a toolchain w/ threads on PPC" +comment "oprofile needs a toolchain w/ NPTL on PPC" depends on BR2_USE_MMU && BR2_powerpc depends on !BR2_TOOLCHAIN_HAS_THREADS