From patchwork Thu Jan 16 07:41:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 311607 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 74A092C0082 for ; Thu, 16 Jan 2014 18:41:44 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 7CA818BD81; Thu, 16 Jan 2014 07:41:43 +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 JwKhJNYctVLF; Thu, 16 Jan 2014 07:41:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0759D8BD69; Thu, 16 Jan 2014 07:41:43 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 8051E1BF86F for ; Thu, 16 Jan 2014 07:41:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 781EE8CA7F for ; Thu, 16 Jan 2014 07:41:41 +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 KkuP8KvjHZJe for ; Thu, 16 Jan 2014 07:41:41 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f174.google.com (mail-we0-f174.google.com [74.125.82.174]) by whitealder.osuosl.org (Postfix) with ESMTPS id BEF578CA7E for ; Thu, 16 Jan 2014 07:41:40 +0000 (UTC) Received: by mail-we0-f174.google.com with SMTP id x55so2749011wes.5 for ; Wed, 15 Jan 2014 23:41:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=PfoU0leIZs46TQzk5POcjbSHDt5tUNADoB5PEIPPG4s=; b=UeppHJV7zsIwHeP5/8hIugbHJqL/A42yddvFVLcNN0p/EYgh6pd1axC5ESLhVklQRP +tkmRGRo01sOud3bxaUVSCAH4zbEvXe7abWd2aIbyTdFIrQdyzC/RwTXXGOuNxgyUbu/ AugkZbIqYvS1rA2Ijz//wbWv5PksUcXxblovNf0xjZQF2jSMixIGqXODw9C+cwb3LM0O iZ+dWxn1aTMSqHxqyBqLQnpi1y+wEaF/zm2b0H4SnGRg+arvuzI/aT0/Vk5/aIiuKQhN KWSNWyxh8vGya+gTcSEmpl55weFL71GYsiwQxmAXBt1DoRiscXj3iBD24fl1QRwGX0uc C5wQ== X-Received: by 10.180.77.74 with SMTP id q10mr6500184wiw.39.1389858099112; Wed, 15 Jan 2014 23:41:39 -0800 (PST) Received: from localhost.localdomain (host109-150-80-255.range109-150.btcentralplus.com. [109.150.80.255]) by mx.google.com with ESMTPSA id eo4sm10471838wib.9.2014.01.15.23.41.37 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 15 Jan 2014 23:41:38 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Thu, 16 Jan 2014 07:41:36 +0000 Message-Id: <1389858096-8566-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] vlc: add udev support 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 From: Simon Dawson Signed-off-by: Simon Dawson --- package/vlc/vlc.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index 516876b..4922809 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -31,7 +31,6 @@ VLC_CONF_OPT += \ --disable-goom \ --disable-projectm \ --disable-vsxu \ - --disable-udev \ --disable-mtp ifeq ($(BR2_PACKAGE_ALSA_LIB),y) @@ -228,6 +227,13 @@ else VLC_CONF_OPT += --disable-tremor endif +ifeq ($(BR2_PACKAGE_UDEV),y) +VLC_CONF_OPT += --enable-udev +VLC_DEPENDENCIES += udev +else +VLC_CONF_OPT += --disable-udev +endif + ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y) VLC_CONF_OPT += --with-x VLC_DEPENDENCIES += xlib_libX11