From patchwork Sat May 17 08:30:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 349852 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 3E8CA140090 for ; Sat, 17 May 2014 18:30:22 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 72F4A89309; Sat, 17 May 2014 08:30:20 +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 VZKFxccZd3p1; Sat, 17 May 2014 08:30:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 4FAAB89315; Sat, 17 May 2014 08:30:19 +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 AFB241C2276 for ; Sat, 17 May 2014 08:30:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id AB4AE89315 for ; Sat, 17 May 2014 08:30:17 +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 gC8K6mCuxoDq for ; Sat, 17 May 2014 08:30:16 +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 hemlock.osuosl.org (Postfix) with ESMTP id 7205E89309 for ; Sat, 17 May 2014 08:30:16 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 2F0177F8; Sat, 17 May 2014 10:30:17 +0200 (CEST) Received: from localhost (AToulouse-651-1-158-31.w92-136.abo.wanadoo.fr [92.136.201.31]) by mail.free-electrons.com (Postfix) with ESMTPSA id C4E3415C; Sat, 17 May 2014 10:30:06 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sat, 17 May 2014 10:30:04 +0200 Message-Id: <1400315404-29308-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.9.3 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH] jack2: requires MMU 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 jack2 uses fork(), so it's not available on non-MMU architectures. Fixes: http://autobuild.buildroot.org/results/0d4/0d441bf1831b2a657b466e44c29423c45c07decd/ Signed-off-by: Thomas Petazzoni --- package/jack2/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/jack2/Config.in b/package/jack2/Config.in index a1669ee..6908455 100644 --- a/package/jack2/Config.in +++ b/package/jack2/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_JACK2 bool "jack2" depends on BR2_LARGEFILE # libsndfile depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib + depends on BR2_USE_MMU # fork() depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_LIBSAMPLERATE select BR2_PACKAGE_LIBSNDFILE @@ -20,5 +21,6 @@ config BR2_PACKAGE_JACK2 http://jackaudio.org/ comment "jack2 needs a toolchain w/ largefile, threads, C++" + depends on BR2_USE_MMU depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || \ !BR2_INSTALL_LIBSTDCPP