From patchwork Mon Oct 27 20:46:22 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: 403924 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 DA093140081 for ; Tue, 28 Oct 2014 07:47:41 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id BEB9B33565; Mon, 27 Oct 2014 20:47:39 +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 cMj56e1dx8nb; Mon, 27 Oct 2014 20:47:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7893733518; Mon, 27 Oct 2014 20:47:34 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 2B1701C24A6 for ; Mon, 27 Oct 2014 20:47:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 25F05A212A for ; Mon, 27 Oct 2014 20:47:31 +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 Vm-2-at5EX_f for ; Mon, 27 Oct 2014 20:47:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f45.google.com (mail-pa0-f45.google.com [209.85.220.45]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 85F3DA211A for ; Mon, 27 Oct 2014 20:47:30 +0000 (UTC) Received: by mail-pa0-f45.google.com with SMTP id lf10so3778116pab.32 for ; Mon, 27 Oct 2014 13:47:30 -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=kXAhK7Pz200keGqtQCtHuYlOZZPto9ZzdjAom7vdi54=; b=IgeokRlwu1eddxN+Y9y0ne4vyoWq7M1TS7ZxCEkYwshoV0SDI7GVr69umcXVIQXKWe iWx1P8wh7UaV97zSSs/nng8gk8rsV5PfRYuX4VLCMmmPQG8nkDpT8qjYtQdFeq4DfH82 /hB9YVrF9a2Rwc7Kib96zYz22wW8286vA8PZtrLfN8QPQYfVj22E8+6ovRFUSo83GlkF eX3exEdAp9LGiQsJXHe//GOIUOjevE9Q8vSvZX9usilLdq3eEdm3bbQz08GAic2gt7/3 nbyV5Yw5M+q+wnA58pRn3NDFnZD1we33OOK12Kkq8rCVaL6OjuuJ8LWXbYB+58QkO/KW j/jw== X-Received: by 10.70.95.135 with SMTP id dk7mr4124090pdb.161.1414442850323; Mon, 27 Oct 2014 13:47:30 -0700 (PDT) Received: from localhost.localdomain (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id l5sm8611316pdj.12.2014.10.27.13.47.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 27 Oct 2014 13:47:29 -0700 (PDT) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Mon, 27 Oct 2014 13:46:22 -0700 Message-Id: X-Mailer: git-send-email 1.9.1 In-Reply-To: References: Cc: "Yann E. MORIN" Subject: [Buildroot] [PATCH 14/15 v6] [RFC] package/vlc: needs libudev, not a udev daemon 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" vlc is happy enough with just a libudev, and does not require a udev daemon. Signed-off-by: "Yann E. MORIN" --- package/vlc/vlc.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index 7e81d59..5bcd705 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -288,9 +288,9 @@ else VLC_CONF_OPTS += --disable-tremor endif -ifeq ($(BR2_PACKAGE_HAS_UDEV),y) +ifeq ($(BR2_PACKAGE_HAS_LIBUDEV),y) VLC_CONF_OPTS += --enable-udev -VLC_DEPENDENCIES += udev +VLC_DEPENDENCIES += libudev else VLC_CONF_OPTS += --disable-udev endif