summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2017-09-22 10:31:44 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2017-09-22 10:31:44 -0400
commita352b362293f30a62e20da775a7f42c56d3e9d97 (patch)
tree799c033e14b95ec80f01783ecfcf027e83fc4b1d
parent2f51262833246e57e65b7d11bf654787b6ec2dee (diff)
downloadenlightenment-a352b362293f30a62e20da775a7f42c56d3e9d97.tar.gz
fix meson wayland-only detection when xwayland is enabled
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index c4968b592e..a8e6c048a3 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')