From patchwork Sun Jun 19 13:26:39 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 637690 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]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rXZvG1C4lz9t0Z for ; Sun, 19 Jun 2016 23:43:22 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id ADB90899F3; Sun, 19 Jun 2016 13:43:20 +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 0PiN3f9YooGm; Sun, 19 Jun 2016 13:43:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0FEC2899D4; Sun, 19 Jun 2016 13:43:19 +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 E59311CE446 for ; Sun, 19 Jun 2016 13:43:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B005286C44 for ; Sun, 19 Jun 2016 13:43:16 +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 v8v6Dc5wdiEZ for ; Sun, 19 Jun 2016 13:43:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by whitealder.osuosl.org (Postfix) with ESMTPS id 3AD7F899F3 for ; Sun, 19 Jun 2016 13:43:13 +0000 (UTC) Received: from fwd10.aul.t-online.de (fwd10.aul.t-online.de [172.20.26.152]) by mailout04.t-online.de (Postfix) with SMTP id 0FE0C41B210A for ; Sun, 19 Jun 2016 15:43:11 +0200 (CEST) Received: from fli4l.lan.fli4l (GiUU5iZ-YhpCg2pAE5x9ZddT5mxjc2JUUnRFtom-5DQiDw00L4srd94XHb0j1feZeI@[84.191.204.232]) by fwd10.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1bEd0D-2OMz680; Sun, 19 Jun 2016 15:43:05 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:57040 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1bEckM-0005aA-QZ; Sun, 19 Jun 2016 15:26:43 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 19 Jun 2016 15:26:39 +0200 Message-Id: <1466342800-4980-4-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1466342800-4980-1-git-send-email-bernd.kuhls@t-online.de> References: <1466342800-4980-1-git-send-email-bernd.kuhls@t-online.de> X-ID: GiUU5iZ-YhpCg2pAE5x9ZddT5mxjc2JUUnRFtom-5DQiDw00L4srd94XHb0j1feZeI X-TOI-MSGID: 6fb6b79d-550f-4a64-bb92-9e9dc4ab3f3d Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 4/5] package/lirc-tools: add optional support for alsa-lib 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" lirc-tools has optional support for alsa-lib, see configure.ac, line 230+. Signed-off-by: Bernd Kuhls --- package/lirc-tools/lirc-tools.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/lirc-tools/lirc-tools.mk b/package/lirc-tools/lirc-tools.mk index 59d9f69..88ec2c9 100644 --- a/package/lirc-tools/lirc-tools.mk +++ b/package/lirc-tools/lirc-tools.mk @@ -21,6 +21,10 @@ ifeq ($(BR2_PACKAGE_HAS_UDEV),y) LIRC_TOOLS_DEPENDENCIES += udev endif +ifeq ($(BR2_PACKAGE_ALSA_LIB),y) +LIRC_TOOLS_DEPENDENCIES += alsa-lib +endif + ifeq ($(BR2_PACKAGE_LIBUSB_COMPAT),y) LIRC_TOOLS_DEPENDENCIES += libusb-compat endif