diff options
Diffstat (limited to 'backend/x11/meson.build')
-rw-r--r-- | backend/x11/meson.build | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/backend/x11/meson.build b/backend/x11/meson.build index fa51e3d7..19e873ab 100644 --- a/backend/x11/meson.build +++ b/backend/x11/meson.build @@ -1,10 +1,9 @@ x11_libs = [] x11_required = [ - 'xcb', 'x11-xcb', -] -x11_optional = [ - 'xcb-xkb', + 'xcb', + 'xcb-xinput', + 'xcb-xfixes', ] foreach lib : x11_required @@ -16,14 +15,6 @@ foreach lib : x11_required x11_libs += dep endforeach -foreach lib : x11_optional - dep = dependency(lib, required: get_option(lib)) - if dep.found() - x11_libs += dep - conf_data.set10('WLR_HAS_' + lib.underscorify().to_upper(), true) - endif -endforeach - lib_wlr_backend_x11 = static_library( 'wlr_backend_x11', files( |