diff options
| author | André Hentschel <nerv@dawncrow.de> | 2015-03-21 16:38:27 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-04 00:18:15 +0200 |
| commit | c3ef90f8b244602e5c41c81907c8148d449a5bce (patch) | |
| tree | 98ae45308dc1c9a87f92bf96eb0ecc025d0bfcaf /package/wine | |
| parent | 981d614d9f60985a7f54968673d2e1e6b8799038 (diff) | |
| download | buildroot-c3ef90f8b244602e5c41c81907c8148d449a5bce.tar.gz buildroot-c3ef90f8b244602e5c41c81907c8148d449a5bce.zip | |
wine: Add xlib_libXext dependency
This fixes window size issues.
Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/wine')
| -rw-r--r-- | package/wine/wine.mk | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/package/wine/wine.mk b/package/wine/wine.mk index bd242cffb0..188c7cc10e 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 |

