From b4b489ce36fa4e97a7a0994d7cea1265ff585439 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 14 Dec 2015 00:57:05 +0100 Subject: [PATCH] wine: Add OpenAL dependency MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: André Hentschel Signed-off-by: Thomas Petazzoni --- 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 1a1fea045a..98958ef03c 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 -- 2.30.2