From patchwork Mon Mar 11 17:41:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 226624 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 1E7D72C02B4 for ; Tue, 12 Mar 2013 04:41:53 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id ED9768B04D; Mon, 11 Mar 2013 17:41:50 +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 x0anU1OxuPHt; Mon, 11 Mar 2013 17:41:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 592768C4B5; Mon, 11 Mar 2013 17:41:39 +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 E8FF18F74B for ; Mon, 11 Mar 2013 17:41:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 42A358B284 for ; Mon, 11 Mar 2013 17:41:37 +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 5d2UiPBmSmjw for ; Mon, 11 Mar 2013 17:41:32 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-da0-f51.google.com (mail-da0-f51.google.com [209.85.210.51]) by whitealder.osuosl.org (Postfix) with ESMTPS id 969748BD61 for ; Mon, 11 Mar 2013 17:41:32 +0000 (UTC) Received: by mail-da0-f51.google.com with SMTP id z17so916727dal.24 for ; Mon, 11 Mar 2013 10:41:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=BQ/EVGdWaxap5yllguiTcukJfdIHjRcjI9RuLDC6IKI=; b=uVe8OGv3iwSJltkcRGcElz1pKDYeVGRmsFYymm0TGaTyftVRCEfHNkvxwBWTv0JmS3 mvwg/Ns4CAoq+4JbXN7l1YCBndwSdA70fj4KI7QPumWZnuOnIBJp8jW0kKPg3nl70xP9 tqSuHAFkwqsW75v38mJfo2qZBOomHRthWDQau67EbLR9jguYl+BmDtHWsLnr5gmp7Kbt wN4lbAQjOfuAypqs+n+RDHGA9Lvl07usr5Jc2zTyiUlxuWvCFJctYwcsLSx4ALKPmxXF Ir6dmfSn26RLTzjhYOfnBGg9sYqBOtaA5STzr3YX+1RAqIID5uSBwId6Uj1gi2IL55gU 9+YQ== X-Received: by 10.68.41.66 with SMTP id d2mr29887580pbl.154.1363023691739; Mon, 11 Mar 2013 10:41:31 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPS id ql7sm5724712pbb.2.2013.03.11.10.41.30 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 11 Mar 2013 10:41:30 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Mon, 11 Mar 2013 10:41:24 -0700 Message-Id: <1363023684-3479-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: References: Subject: [Buildroot] [PATCH] lcdproc: 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 Fixes: http://autobuild.buildroot.org/results/58d0231cc39ee6be3064906f07307b438ea4c30b Also fixed some indentation issues Signed-off-by: Gilles Talis --- package/lcdproc/Config.in | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/package/lcdproc/Config.in b/package/lcdproc/Config.in index e0afc44..5635a02 100644 --- a/package/lcdproc/Config.in +++ b/package/lcdproc/Config.in @@ -1,12 +1,13 @@ config BR2_PACKAGE_LCDPROC - bool "lcdproc" - select BR2_PACKAGE_FREETYPE - select BR2_PACKAGE_NCURSES - select BR2_PACKAGE_ZLIB - help - LCD display driver daemon and clients + bool "lcdproc" + depends on BR2_USE_MMU # fork() + select BR2_PACKAGE_FREETYPE + select BR2_PACKAGE_NCURSES + select BR2_PACKAGE_ZLIB + help + LCD display driver daemon and clients - http://lcdproc.org/ + http://lcdproc.org/ config BR2_PACKAGE_LCDPROC_DRIVERS string "List of drivers to build"