From 7f41ced8bd41cfed5c410e803cb83eabbe821364 Mon Sep 17 00:00:00 2001 From: EliasOfWaffle <128154816+EliasOfWaffle@users.noreply.github.com> Date: Mon, 7 Aug 2023 00:58:59 -0300 Subject: [PATCH] build.sh: enable wayland driver build --- runners/wine/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runners/wine/build.sh b/runners/wine/build.sh index b5bde8a1..922d5a59 100755 --- a/runners/wine/build.sh +++ b/runners/wine/build.sh @@ -174,12 +174,12 @@ BuildWine() { # Do not use $arch here since it migth have been changed for the WOW64 # build on the 32bit container if [ "$(uname -m)" = "x86_64" ]; then - configure_opts="$configure_opts --enable-win64 --libdir=$prefix/lib64" + configure_opts="$configure_opts --enable-win64 --with-wayland --libdir=$prefix/lib64" fi # Third step to stitch together Wine64 and Wine32 build for the WOW64 build if [ "$1" = "combo" ]; then - configure_opts="$configure_opts --with-wine64=../wine64 --with-wine-tools=../wine32 --libdir=$prefix/lib" + configure_opts="$configure_opts --with-wine64=../wine64 --with-wayland --with-wine-tools=../wine32 --libdir=$prefix/lib" fi if [ "$(uname -m)" = "x86_64" ]; then