From patchwork Thu Jul 4 16:18:32 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 256963 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 DCEF82C03FA for ; Fri, 5 Jul 2013 02:19:11 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 14D6896B68; Thu, 4 Jul 2013 16:19:11 +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 HmIHM49OTojJ; Thu, 4 Jul 2013 16:19:10 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4AD3A966A0; Thu, 4 Jul 2013 16:19:10 +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 EEA9C8F7B3 for ; Thu, 4 Jul 2013 16:19:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E2A4E83DB7 for ; Thu, 4 Jul 2013 16:19:08 +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 EWJOib++44uA for ; Thu, 4 Jul 2013 16:19:03 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 233858CDA1 for ; Thu, 4 Jul 2013 16:18:39 +0000 (UTC) Received: from asgard (host21.186-125-225.telecom.net.ar [186.125.225.21]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r64GIXK4011914 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 4 Jul 2013 16:18:35 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1372954717; bh=JfytJu0BTRGltSOvjFRuAjX7ebC24kx5H/XnXmfoEJU=; h=From:To:Cc:Subject:Date; b=L51bBxGr3O6096VLsBITJAvdxMljplVylyRu2uM8O1B1FdELg05RvXYpKKzyGqiEK +z3ZarkjTzeRn5xSnVSbDgwwak9sQaGEvAdUQLdG9eneISjkspwrio8T2+B7mR7W+L KDiDfMDCNg/h188z6V/eM6OSF0Vm7jjXoWdAxu2s= Received: by asgard (sSMTP sendmail emulation); Thu, 04 Jul 2013 13:18:32 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 4 Jul 2013 13:18:32 -0300 Message-Id: <1372954712-30134-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] classpath: fix alsa-related build failure 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 Classpath requires sequencer support besides pcm support. Fixes: http://autobuild.buildroot.org/results/2bd/2bd39ffa821bc02d64998bc9e8fe178d3741a1d8/ Signed-off-by: Gustavo Zacarias --- package/classpath/classpath.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/classpath/classpath.mk b/package/classpath/classpath.mk index c305178..fbf80f0 100644 --- a/package/classpath/classpath.mk +++ b/package/classpath/classpath.mk @@ -22,7 +22,9 @@ CLASSPATH_AUTORECONF = YES CLASSPATH_LICENSE = GPLv2+ with exception CLASSPATH_LICENSE_FILES = COPYING -ifeq ($(BR2_PACKAGE_ALSA_LIB),y) +# Needs ALSA pcm and sequencer (midi) support +# pcm is always on for alsa-lib +ifeq ($(BR2_PACKAGE_ALSA_LIB_SEQ),y) CLASSPATH_CONF_OPT += --enable-alsa CLASSPATH_DEPENDENCIES += alsa-lib else