From 9f6d50ddf8bb747171b7fe9764500aae55f471fc Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 22 Sep 2017 10:31:44 -0400 Subject: [PATCH] fix meson wayland-only detection when xwayland is enabled --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c4968b592..a8e6c048a 100644 --- a/meson.build +++ b/meson.build @@ -307,7 +307,7 @@ if get_option('wayland') == true endif dep_ecore_x = [] -if get_option('wayland') == true and get_option('wl-x11') == false and get_option('xwayland') +if get_option('wayland') == true and get_option('wl-x11') == false and get_option('xwayland') == false config_h.set('HAVE_WAYLAND_ONLY', '1') else dep_ecore_x = dependency('ecore-x')