From patchwork Sun Oct 27 22:54:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 286377 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 B9FD52C00C7 for ; Mon, 28 Oct 2013 09:54:57 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F083C8B811; Sun, 27 Oct 2013 22:54:56 +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 54RonUv7KyJT; Sun, 27 Oct 2013 22:54:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 44C978B4EE; Sun, 27 Oct 2013 22:54: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 396BA1BFA43 for ; Sun, 27 Oct 2013 22:54:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 35E6A8B49B for ; Sun, 27 Oct 2013 22:54: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 hsljdR0zA+R8 for ; Sun, 27 Oct 2013 22:54:54 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 47C6F8B35F for ; Sun, 27 Oct 2013 22:54:54 +0000 (UTC) Received: from asgard (host58.190-231-106.telecom.net.ar [190.231.106.58]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r9RMsl2d017235 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 27 Oct 2013 22:54:50 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1382914492; bh=TnUsUim09MF+FmaGfYtlGFu20pXcyeUwHa4EalL84e4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=B1QavKg4q/nLrZ+ZQxyq9NI0JDmY4rWqOIPs1CODY6Pz51KrRO6ML6cdFFBnXEo3k jbrRYKeOee08DoTXGwlkPLYL/RxIqJhHyG20smVC5uvwEF5sEooHktLEf6K/wYxRz0 LO8YiMfV52a5+qVezv677XCJg4cx6ZIASk7VIWg0= Received: by asgard (sSMTP sendmail emulation); Sun, 27 Oct 2013 19:54:42 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 27 Oct 2013 19:54:19 -0300 Message-Id: <1382914459-30545-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1382914459-30545-1-git-send-email-gustavo@zacarias.com.ar> References: <1382914459-30545-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.8 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 3/3] alsamixergui: 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 Because of the new fl_open_uri() function since the fltk bump using fork(). Signed-off-by: Gustavo Zacarias --- package/alsamixergui/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/alsamixergui/Config.in b/package/alsamixergui/Config.in index acc3cc9..b1b9eb9 100644 --- a/package/alsamixergui/Config.in +++ b/package/alsamixergui/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_ALSAMIXERGUI depends on BR2_PACKAGE_XORG7 depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_USE_MMU # fltk fork() select BR2_PACKAGE_FLTK select BR2_PACKAGE_ALSA_LIB select BR2_PACKAGE_ALSA_LIB_PCM