From patchwork Sat Oct 10 10:03:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 528602 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 4D92E140DA5 for ; Sat, 10 Oct 2015 21:08:01 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 279C291118; Sat, 10 Oct 2015 10:08:00 +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 sLlNmMjeQs7X; Sat, 10 Oct 2015 10:07:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id A4E85909B0; Sat, 10 Oct 2015 10:05:08 +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 593D21C1F36 for ; Sat, 10 Oct 2015 10:04:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4D5B68CBA8 for ; Sat, 10 Oct 2015 10:04:05 +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 5je9LILnFHG0 for ; Sat, 10 Oct 2015 10:03: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 whitealder.osuosl.org (Postfix) with ESMTPS id F3762891D1 for ; Sat, 10 Oct 2015 10:03:54 +0000 (UTC) Received: from adeos.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id 77FF294006D; Sat, 10 Oct 2015 12:03:53 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Sat, 10 Oct 2015 12:03:24 +0200 Message-Id: <1444471422-15118-20-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1444471422-15118-1-git-send-email-romain.naour@openwide.fr> References: <1444471422-15118-1-git-send-email-romain.naour@openwide.fr> Subject: [Buildroot] [PATCH v3 19/37] package/efl: enable xinput2.2 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" https://git.enlightenment.org/core/efl.git/tree/README?h=efl-1.15#n490 Signed-off-by: Romain Naour --- v3: new patch --- package/efl/efl.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/efl/efl.mk b/package/efl/efl.mk index d720d7b..5073c48 100644 --- a/package/efl/efl.mk +++ b/package/efl/efl.mk @@ -171,10 +171,12 @@ else EFL_CONF_OPTS += --enable-fb=no endif +# --enable-xinput22 is recommended ifeq ($(BR2_PACKAGE_EFL_X),y) EFL_CONF_OPTS += --with-x=$(STAGING_DIR) \ --x-includes=$(STAGING_DIR)/usr/include \ - --x-libraries=$(STAGING_DIR)/usr/lib + --x-libraries=$(STAGING_DIR)/usr/lib \ + --enable-xinput22 EFL_DEPENDENCIES += \ xlib_libX11 \