From patchwork Thu Jul 31 00:16:46 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 375081 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id A30CF140174 for ; Thu, 31 Jul 2014 10:17:59 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id A6E8932EA2; Thu, 31 Jul 2014 00:17:58 +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 nzFbTc5ZmVPR; Thu, 31 Jul 2014 00:17:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4820232F32; Thu, 31 Jul 2014 00:17:28 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 185101C2458 for ; Thu, 31 Jul 2014 00:17:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 1028B32E8A for ; Thu, 31 Jul 2014 00:17:10 +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 DTjubkazJGOX for ; Thu, 31 Jul 2014 00:17:06 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f46.google.com (mail-wg0-f46.google.com [74.125.82.46]) by silver.osuosl.org (Postfix) with ESMTPS id 09A4132E7B for ; Thu, 31 Jul 2014 00:17:05 +0000 (UTC) Received: by mail-wg0-f46.google.com with SMTP id m15so1950678wgh.17 for ; Wed, 30 Jul 2014 17:17:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=epXn0/bVWBcx3uFKWExAflSmAkpFqa8y+FpmRStETdI=; b=iEYD2u4daUsogCdIC/aoknna78l4YO7iktB/QY6xuRZ7rqANyrV+NsQokbV9K2jMVm IiTcNkejI0Sm9SjtV9Hth64Nj3Fm49+j1kD72r+6O09YE6VvOR1rbNMrHGJcsfZcbu/J hUb0L/c2Xqr4roS+DiIcFP2pkp1UKmcf25IACzdsT2syn8YyHI6H+a/nDI/k0axySTtv wGJosHNC+w4kzjghIKc1sItE3dxW43vt7hBNApZzmQYfTfMOY33shUrDTTpiK5D4mC4W VfqSog4M9gJcvY0Ut2wRzZPjlN0YCqyLYttRxYzru19nSp5kCGvujcQBEO4GiVpPHT4o +53g== X-Received: by 10.194.123.71 with SMTP id ly7mr11046199wjb.103.1406765824627; Wed, 30 Jul 2014 17:17:04 -0700 (PDT) Received: from gourin.bzh.lan (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id je17sm60499615wic.22.2014.07.30.17.17.03 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 30 Jul 2014 17:17:04 -0700 (PDT) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Thu, 31 Jul 2014 02:16:46 +0200 Message-Id: <273410357b70e8cb7ec690b8b47fddc6799f3ea8.1406765723.git.yann.morin.1998@free.fr> X-Mailer: git-send-email 1.9.1 In-Reply-To: References: Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH 11/14 v4] [RFC] package/libinput: needs libudev, not a udev daemon 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 libinput is happy enough with just a libudev, and does not require a udev daemon. Signed-off-by: "Yann E. MORIN" --- package/libinput/Config.in | 6 +++--- package/libinput/libinput.mk | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/libinput/Config.in b/package/libinput/Config.in index 14e4e70..a958e37 100644 --- a/package/libinput/Config.in +++ b/package/libinput/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_LIBINPUT bool "libinput" - depends on BR2_PACKAGE_HAS_UDEV + depends on BR2_PACKAGE_HAS_LIBUDEV select BR2_PACKAGE_LIBEVDEV select BR2_PACKAGE_MTDEV help @@ -13,5 +13,5 @@ config BR2_PACKAGE_LIBINPUT http://freedesktop.org/wiki/Software/libinput/ -comment "libinput needs udev /dev management" - depends on !BR2_PACKAGE_HAS_UDEV +comment "libinput needs a libudev provider to be selected" + depends on !BR2_PACKAGE_HAS_LIBUDEV diff --git a/package/libinput/libinput.mk b/package/libinput/libinput.mk index b52101a..3f225cc 100644 --- a/package/libinput/libinput.mk +++ b/package/libinput/libinput.mk @@ -10,7 +10,7 @@ LIBINPUT_SITE = http://www.freedesktop.org/software/libinput LIBINPUT_LICENSE = MIT LIBINPUT_LICENSE_FILES = COPYING -LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev +LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev libudev LIBINPUT_INSTALL_STAGING = YES # Tests need fork, so just disable them everywhere.