From 3590a0d364956d2813ce2b4fe08bbe72dab08bbd Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 13 May 2024 11:57:45 +0200 Subject: [PATCH] xnest: don't force it off on Windows No reason to explicitly force it off on Windows - if dependencies are present, we can build it. Even though it will be rarely needed. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: (cherry picked from commit 1ead670476c1a198006d4cbe6357ddd901fa453f) --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 1af3a0e12a..561e06c18b 100644 --- a/meson.build +++ b/meson.build @@ -242,8 +242,7 @@ if (host_machine.system() != 'darwin' and endif build_xnest = false -if (host_machine.system() != 'windows') - if get_option('xnest') != 'false' +if get_option('xnest') != 'false' xnest_required = get_option('xnest') == 'true' xnest_dep = [ @@ -259,7 +258,6 @@ if (host_machine.system() != 'windows') build_xnest = false endif endforeach - endif endif build_xwin = false