summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 57ed70cb..2a020323 100644
--- a/meson.build
+++ b/meson.build
@@ -44,13 +44,13 @@ systemd = dependency('libsystemd', required: false)
44elogind = dependency('libelogind', required: false) 44elogind = dependency('libelogind', required: false)
45math = cc.find_library('m') 45math = cc.find_library('m')
46rt = cc.find_library('rt') 46rt = cc.find_library('rt')
47xcb = dependency('xcb')
48git = find_program('git', required: false) 47git = find_program('git', required: false)
49 48
50conf_data = configuration_data() 49conf_data = configuration_data()
51 50
52if get_option('enable-xwayland') 51if get_option('enable-xwayland')
53 conf_data.set('HAVE_XWAYLAND', true) 52 conf_data.set('HAVE_XWAYLAND', true)
53 xcb = dependency('xcb')
54else 54else
55 conf_data.set('HAVE_XWAYLAND', false) 55 conf_data.set('HAVE_XWAYLAND', false)
56endif 56endif