From patchwork Fri Jul 6 11:55:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 169462 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 70B1E2C0084 for ; Fri, 6 Jul 2012 21:55:52 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C6EE7A01A6; Fri, 6 Jul 2012 11:55:50 +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 mP7eOSGbYJhV; Fri, 6 Jul 2012 11:55:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 1CECBA0155; Fri, 6 Jul 2012 11:55:49 +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 6A6D98F753 for ; Fri, 6 Jul 2012 11:55:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5C4FD8D5A9 for ; Fri, 6 Jul 2012 11:55:47 +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 fxOth9mjRpaA for ; Fri, 6 Jul 2012 11:55:46 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id E95158D5A6 for ; Fri, 6 Jul 2012 11:55:45 +0000 (UTC) Received: from asgard (host65.200-45-9.telecom.net.ar [200.45.9.65]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q66Bte2T022400 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 6 Jul 2012 08:55:42 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1341575744; bh=uUR+Tybx7YfX+tOxmDU5R0Y+umznWWKtoQT9wx3Z5kw=; h=From:To:Cc:Subject:Date; b=JOR91l/VPe5E9hvT/+sDvSGU2Oi2jd12Q15T5jiECEKEDm1ztkYpo+xsad6KVn3qs QEDpAvrk/6/SR/K20fzpyWZ9RCuEUvOkCFlQ0sLfPzMopntGTjMIId0YSvnajnxiB/ LG5Dpd4JmByuHju0qufl/yOiQLP+Nd8PtRdUwHIo= Received: by asgard (sSMTP sendmail emulation); Fri, 06 Jul 2012 08:55:39 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 6 Jul 2012 08:55:38 -0300 Message-Id: <1341575738-28876-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] gob2: 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 m4 needs MMU, so does bison, and so does gob2 which uses bison. Fixes build failure: http://autobuild.buildroot.net/results/f942b4ac770f3c7b27c42214af5bcec49f687da1/build-end.log Signed-off-by: Gustavo Zacarias --- package/gob2/Config.in | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/package/gob2/Config.in b/package/gob2/Config.in index 562ac31..cbe30d6 100644 --- a/package/gob2/Config.in +++ b/package/gob2/Config.in @@ -1,6 +1,8 @@ config BR2_PACKAGE_GOB2 bool "gob2" depends on BR2_USE_WCHAR # glib2 + # m4 uses fork(), so does bison then + depends on BR2_USE_MMU select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_FLEX select BR2_PACKAGE_FLEX_LIBFL