From patchwork Sun Oct 18 20:29:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 532010 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 3A5931402D1 for ; Mon, 19 Oct 2015 07:30:54 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 56CDB8A473; Sun, 18 Oct 2015 20:30:53 +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 mwbCa4xVD3g2; Sun, 18 Oct 2015 20:30:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 5938E8A588; Sun, 18 Oct 2015 20:30:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id EE9AC1C129D for ; Sun, 18 Oct 2015 20:29:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id EABE826AB4 for ; Sun, 18 Oct 2015 20:29:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QWvQw5Y5k4Gx for ; Sun, 18 Oct 2015 20:29:59 +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 silver.osuosl.org (Postfix) with ESMTPS id E565531AED for ; Sun, 18 Oct 2015 20:29:58 +0000 (UTC) Received: from adeos.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id 15AB9940034; Sun, 18 Oct 2015 22:29:56 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Sun, 18 Oct 2015 22:29:23 +0200 Message-Id: <1445200191-18404-8-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1445200191-18404-1-git-send-email-romain.naour@openwide.fr> References: <1445200191-18404-1-git-send-email-romain.naour@openwide.fr> Subject: [Buildroot] [PATCH v4 07/35] package/efl/libefl: add wayland dependency 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" See: https://www.enlightenment.org/about-wayland Signed-off-by: Romain Naour --- v4: rename to libefl --- package/efl/libefl/Config.in | 1 + package/efl/libefl/libefl.mk | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/package/efl/libefl/Config.in b/package/efl/libefl/Config.in index 2b758f0..07aee42 100644 --- a/package/efl/libefl/Config.in +++ b/package/efl/libefl/Config.in @@ -10,6 +10,7 @@ config BR2_PACKAGE_LIBEFL select BR2_PACKAGE_FREETYPE select BR2_PACKAGE_JPEG # Emile needs libjpeg select BR2_PACKAGE_LUA # Evas lua 5.1 or 5.2 + select BR2_PACKAGE_LIBXKBCOMMON if BR2_PACKAGE_WAYLAND help Enlightenment Foundation Libraries diff --git a/package/efl/libefl/libefl.mk b/package/efl/libefl/libefl.mk index 2e42bb7..c697e41 100644 --- a/package/efl/libefl/libefl.mk +++ b/package/efl/libefl/libefl.mk @@ -153,6 +153,13 @@ LIBEFL_CONF_OPTS += --with-crypto=none endif endif # BR2_PACKAGE_OPENSSL +ifeq ($(BR2_PACKAGE_WAYLAND),y) +LIBEFL_DEPENDENCIES += wayland libxkbcommon +LIBEFL_CONF_OPTS += --enable-wayland=yes +else +LIBEFL_CONF_OPTS += --enable-wayland=no +endif + # image loader: handle only loaders that requires dependencies. # All other loaders are builded by default statically. ifeq ($(BR2_PACKAGE_LIBEFL_PNG),y)