From c3ef90f8b244602e5c41c81907c8148d449a5bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Sat, 21 Mar 2015 16:38:27 +0100 Subject: [PATCH] wine: Add xlib_libXext dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes window size issues. Signed-off-by: André Hentschel Signed-off-by: Thomas Petazzoni --- package/wine/wine.mk | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/package/wine/wine.mk b/package/wine/wine.mk index bd242cffb..188c7cc10 100644 --- a/package/wine/wine.mk +++ b/package/wine/wine.mk @@ -27,9 +27,7 @@ WINE_CONF_OPTS = \ --without-openal \ --without-opencl \ --without-osmesa \ - --without-oss \ - --without-xshape \ - --without-xshm + --without-oss # Wine uses a wrapper around gcc, and uses the value of --host to # construct the filename of the gcc to call. But for external @@ -207,6 +205,13 @@ else WINE_CONF_OPTS += --without-xcursor endif +ifeq ($(BR2_PACKAGE_XLIB_LIBXEXT),y) +WINE_CONF_OPTS += --with-xshape --with-xshm +WINE_DEPENDENCIES += xlib_libXext +else +WINE_CONF_OPTS += --without-xshape --without-xshm +endif + ifeq ($(BR2_PACKAGE_XLIB_LIBXI),y) WINE_CONF_OPTS += --with-xinput --with-xinput2 WINE_DEPENDENCIES += xlib_libXi