diff options
| author | Michel Ganguin <michel@ganguin.net> | 2018-08-02 09:36:47 +0200 |
|---|---|---|
| committer | emersion <contact@emersion.fr> | 2018-08-02 08:36:47 +0100 |
| commit | d6095588a143710d25be47577ea65517770e7a74 (patch) | |
| tree | 7347f317f47a67dcc1ae20716948a59cd35f2bb3 /meson.build | |
| parent | fe39129b96794032c396411f96f2eb016050a545 (diff) | |
Link xcb dependency to meson options "enable_xwayland" (#2393)
* Link xcb dependency to meson options "enable_xwayland"
* Link xcb dependency to meson options "enable_xwayland"
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 05d334d2..0d75978f 100644 --- a/meson.build +++ b/meson.build @@ -44,13 +44,13 @@ systemd = dependency('libsystemd', required: false) elogind = dependency('libelogind', required: false) math = cc.find_library('m') rt = cc.find_library('rt') -xcb = dependency('xcb') git = find_program('git', required: false) conf_data = configuration_data() if get_option('enable-xwayland') conf_data.set('HAVE_XWAYLAND', true) + xcb = dependency('xcb') else conf_data.set('HAVE_XWAYLAND', false) endif |
