From patchwork Sun Jul 26 18:55:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 500108 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id B240E140D57 for ; Mon, 27 Jul 2015 04:58:01 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id CCA3AA2DB0; Sun, 26 Jul 2015 18:58:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K-fSnTGnHS68; Sun, 26 Jul 2015 18:57:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 96DCFA2C78; Sun, 26 Jul 2015 18:57:37 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 63DE71C22AB for ; Sun, 26 Jul 2015 18:57:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5C4C98CAD8 for ; Sun, 26 Jul 2015 18:57:16 +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 fGLlTvk2xgZl for ; Sun, 26 Jul 2015 18:57:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from zimbra3.corp.accelance.fr (zimbra3.corp.accelance.fr [213.162.49.233]) by whitealder.osuosl.org (Postfix) with ESMTP id BECD28CB8B for ; Sun, 26 Jul 2015 18:57:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by zimbra3.corp.accelance.fr (Postfix) with ESMTP id 17CDA7EE1B for ; Sun, 26 Jul 2015 20:57:15 +0200 (CEST) X-Virus-Scanned: amavisd-new at zimbra3.corp.accelance.fr Received: from zimbra3.corp.accelance.fr ([127.0.0.1]) by localhost (zimbra3.corp.accelance.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MT+8zJymTTci; Sun, 26 Jul 2015 20:57:13 +0200 (CEST) Received: from atlas.localdomain (sch74-1-88-184-220-198.fbx.proxad.net [88.184.220.198]) by zimbra3.corp.accelance.fr (Postfix) with ESMTPSA id 045937EE21; Sun, 26 Jul 2015 20:57:12 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Sun, 26 Jul 2015 20:55:26 +0200 Message-Id: <1437936947-17632-17-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1437936947-17632-1-git-send-email-romain.naour@openwide.fr> References: <1437936947-17632-1-git-send-email-romain.naour@openwide.fr> Subject: [Buildroot] [RFC 16/37] package/efl: add frame buffer config option X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Signed-off-by: Romain Naour --- package/efl/Config.in | 5 +++++ package/efl/efl.mk | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/package/efl/Config.in b/package/efl/Config.in index ea607d7..4077565 100644 --- a/package/efl/Config.in +++ b/package/efl/Config.in @@ -37,6 +37,11 @@ config BR2_PACKAGE_EFL_RECOMMENDED_CONFIG otherwise we need to add a very long and obscure option to start the build. +comment "libecore video support" + +config BR2_PACKAGE_EFL_FB + bool "libecore framebuffer support" + comment "libevas loaders" config BR2_PACKAGE_EFL_PNG diff --git a/package/efl/efl.mk b/package/efl/efl.mk index 17a08fa..8f5c9fb 100644 --- a/package/efl/efl.mk +++ b/package/efl/efl.mk @@ -159,6 +159,12 @@ else EFL_CONF_OPTS += --enable-wayland=no endif +ifeq ($(BR2_PACKAGE_EFL_FB),y) +EFL_CONF_OPTS += --enable-fb=yes +else +EFL_CONF_OPTS += --enable-fb=no +endif + # image loader: handle only loaders that requires dependencies. # All other loaders are builded by default statically. ifeq ($(BR2_PACKAGE_EFL_PNG),y)