From patchwork Sat Feb 22 20:24:44 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Barnett X-Patchwork-Id: 323236 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id B4B5C2C0236 for ; Sun, 23 Feb 2014 07:24:59 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0D2B08BCE8; Sat, 22 Feb 2014 20:24:59 +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 thVX5gEBmmYc; Sat, 22 Feb 2014 20:24:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 9AFF38AF7C; Sat, 22 Feb 2014 20:24:56 +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 3A8AE1BF988 for ; Sat, 22 Feb 2014 20:24:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 338F58AF7C for ; Sat, 22 Feb 2014 20:24:55 +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 SPSLHJl13568 for ; Sat, 22 Feb 2014 20:24:54 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by whitealder.osuosl.org (Postfix) with ESMTPS id 4E1AC891BA for ; Sat, 22 Feb 2014 20:24:54 +0000 (UTC) Received: by mail-wi0-f175.google.com with SMTP id hm4so1871602wib.8 for ; Sat, 22 Feb 2014 12:24:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=D5wwmQWIRE2GYnOM1smGU92Z/f/X9/e622XvTFJC1gM=; b=sbnbfrrKq3ts80n5cWSz30qokBrFQD6urdwO83Mj0gQzZFpsj0m7UUgrg+QcOx+DX7 VvYE/h3sexTnDlIwW1Xr1lJ4vP1tZIURTR0n5TmT1FVFfkSS0TQ2kXLBkJHSF+VbTY1R cfPcI/hc4k6o7VQUcvDQhRBKIURqnB0dsr7gwPUp6+quOSLzoqW/L7lzlGCtLB20O5N0 B7d+GErAW/sjtyY7VwLB6+RZDV+wCCBzg3aG8QILZ093Sf1YOHnixKPqw9sZOg5M9tow Szhy8hFFoPA/3WW2oIEBef7mppFBf4fN6lN+c4wUAFLkyikmoZ50BX5WenF4X1ADlp2j 8XNw== X-Received: by 10.194.170.167 with SMTP id an7mr12204730wjc.39.1393100692825; Sat, 22 Feb 2014 12:24:52 -0800 (PST) Received: from localhost.localdomain (AToulouse-651-1-91-62.w90-16.abo.wanadoo.fr. [90.16.210.62]) by mx.google.com with ESMTPSA id cm5sm7535737wid.5.2014.02.22.12.24.52 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 22 Feb 2014 12:24:52 -0800 (PST) From: Ryan Barnett To: buildroot@busybox.net Date: Sat, 22 Feb 2014 21:24:44 +0100 Message-Id: <1393100684-5488-1-git-send-email-rjbarnet@rockwellcollins.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH v2 1/1] mpg123: needs MMU 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 mpg123 needs MMU because the application that is built with this package uses fork. Currently it is difficult to only build the libraries for mpg123 so disabling the package all together when there is no MMU support. Note: mpg123 is an optional dependency of mpd but mpd already requires BR2_USE_MMU so there is no need to add this as a dependency. Fixes: http://autobuild.buildroot.net/results/5b0/5b053af566dd122ae7e58893e77d5d5f3070fb9e Signed-off-by: Ryan Barnett --- v1 -> v2 - Added autobuild failure link Signed-off-by: Ryan Barnett --- package/gstreamer1/gst1-plugins-bad/Config.in | 1 + package/mpg123/Config.in | 1 + 2 files changed, 2 insertions(+) -- 1.8.3.2 diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in index 407bf31..3647e53 100644 --- a/package/gstreamer1/gst1-plugins-bad/Config.in +++ b/package/gstreamer1/gst1-plugins-bad/Config.in @@ -400,6 +400,7 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEG2ENC config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123 bool "mpg123" select BR2_PACKAGE_MPG123 + depends on BR2_USE_MMU # mpg123 help mp3 decoding based on the mpg123 library diff --git a/package/mpg123/Config.in b/package/mpg123/Config.in index 18ac41c..a7ac035 100644 --- a/package/mpg123/Config.in +++ b/package/mpg123/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_MPG123 bool "mpg123" + depends on BR2_USE_MMU # fork - in the application help Fast, free and portable MPEG audio player for Unix. It supports MPEG 1.0/2.0 layers 1, 2 and 3.