From patchwork Tue Sep 8 21:19:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 515579 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id B98B61400B7 for ; Wed, 9 Sep 2015 07:21:21 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 33FE19680D; Tue, 8 Sep 2015 21:21:14 +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 5WiEJufrOxpo; Tue, 8 Sep 2015 21:21:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 3E7269678A; Tue, 8 Sep 2015 21:20:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 0D8D41CECD1 for ; Tue, 8 Sep 2015 21:20:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0A01DA4533 for ; Tue, 8 Sep 2015 21:20:28 +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 bPt11n4jGbnL for ; Tue, 8 Sep 2015 21:20:27 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 942C9A45EB for ; Tue, 8 Sep 2015 21:20:27 +0000 (UTC) Received: from adeos.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id 0FCD3940045; Tue, 8 Sep 2015 23:20:26 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Tue, 8 Sep 2015 23:19:51 +0200 Message-Id: <1441747212-27421-18-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1441747212-27421-1-git-send-email-romain.naour@openwide.fr> References: <1441747212-27421-1-git-send-email-romain.naour@openwide.fr> Subject: [Buildroot] [PACH v2 17/38] 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 2f93ce6..626972b 100644 --- a/package/efl/Config.in +++ b/package/efl/Config.in @@ -36,6 +36,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 f8a981d..ef3e5ef 100644 --- a/package/efl/efl.mk +++ b/package/efl/efl.mk @@ -164,6 +164,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)