diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-11-28 20:09:10 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-11-28 20:09:10 +0100 |
| commit | 07470e575ac7374f3da12c226e0433e5bb93abbe (patch) | |
| tree | 5c3cdbba1723af492089524ed87c55e6b5fc0dc5 | |
| parent | a925222f9d4e11f3544332a01771681a43ec7d02 (diff) | |
build: fix have_xwayland when xcb-icccm is not found
xcb-icccm is required to build Xwayland support.
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index e22bc36e..fa008332 100644 --- a/meson.build +++ b/meson.build @@ -86,7 +86,7 @@ rt = cc.find_library('rt') xcb_icccm = dependency('xcb-icccm', required: get_option('xwayland')) threads = dependency('threads') # for pthread_setschedparam -have_xwayland = xcb.found() and wlroots_features['xwayland'] +have_xwayland = xcb.found() and xcb_icccm.found() and wlroots_features['xwayland'] if get_option('sd-bus-provider') == 'auto' if not get_option('tray').disabled() |
