From patchwork Sun Dec 13 23:57:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Zwing?= X-Patchwork-Id: 556254 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id D02BB14030D for ; Mon, 14 Dec 2015 10:57:27 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=dawncrow.de header.i=@dawncrow.de header.b=JR3EcYfp; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id DA0D932AFD; Sun, 13 Dec 2015 23:57:24 +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 QuaGLnSM4hbe; Sun, 13 Dec 2015 23:57:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 2506A32242; Sun, 13 Dec 2015 23:57:22 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 6E9151BF9A7 for ; Sun, 13 Dec 2015 23:57:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6B001A5984 for ; Sun, 13 Dec 2015 23:57:21 +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 obqQR6hgmoJu for ; Sun, 13 Dec 2015 23:57:19 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mo4-p00-ob.smtp.rzone.de (mo4-p00-ob.smtp.rzone.de [81.169.146.221]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 625F5A597E for ; Sun, 13 Dec 2015 23:57:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1450051035; l=781; s=domk; d=dawncrow.de; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Date:To:Subject: From; bh=dFhcEsfVKmViGm2KnVkGQlIlOism9y3urwf9LVunG1M=; b=JR3EcYfpdKDT/YxNZPleeTK8PZUHLZ42JolEbIw/IHXc/Clx2a5JD7YZGKktD0K4lYe X+uf16bhhi+4aLlUOrgCZtMcfEXL8y5GUc+uH4PNFX5UAi5NOKAk7gVBCBbx7eas9tJsA MDcR4dteLb5/Y6y1izJF+ZdyO7PSmIo4MtA= X-RZG-AUTH: :ImkWY2CseuihIZy6ZWWciR6unPh5JPSWE7VxbdUCFBN5njG7Q28CH4dMe3iI X-RZG-CLASS-ID: mo00 Received: from [192.168.178.40] ([185.61.122.23]) by smtp.strato.de (RZmta 37.14 AUTH) with ESMTPSA id d05262rBDNvEsuG (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate) for ; Mon, 14 Dec 2015 00:57:14 +0100 (CET) From: =?UTF-8?Q?Andr=c3=a9_Hentschel?= To: buildroot@buildroot.org X-Enigmail-Draft-Status: N1110 Message-ID: <566E05D1.700@dawncrow.de> Date: Mon, 14 Dec 2015 00:57:05 +0100 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] wine: Add OpenAL dependency 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: André Hentschel --- package/wine/wine.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/wine/wine.mk b/package/wine/wine.mk index 1a1fea0..98958ef 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -25,7 +25,6 @@ WINE_CONF_OPTS = \ --without-gphoto \ --without-gsm \ --without-hal \ - --without-openal \ --without-opencl \ --without-oss @@ -163,6 +162,13 @@ else WINE_CONF_OPTS += --without-curses endif +ifeq ($(BR2_PACKAGE_OPENAL),y) +WINE_CONF_OPTS += --with-openal +WINE_DEPENDENCIES += openal +else +WINE_CONF_OPTS += --without-openal +endif + ifeq ($(BR2_PACKAGE_OPENLDAP),y) WINE_CONF_OPTS += --with-ldap WINE_DEPENDENCIES += openldap