diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-12-03 17:48:41 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-12-03 17:48:41 +0100 |
| commit | 4167ca59e501b0b4a51a24f6ac9e2f9e10052299 (patch) | |
| tree | 296872adf4257f34656646797005a575e50c8f9f | |
| parent | d9428a7d86edcfc26f3bc486fd4cb35b634f02a5 (diff) | |
build: fix have_xwayland when xcb-icccm is not found
xcb-icccm is required to build Xwayland support.
Backported from commit d41f11e6bd8cef80f02dda4c66d4a31611aed753.
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 5215aada..ce25cfa0 100644 --- a/meson.build +++ b/meson.build @@ -83,7 +83,7 @@ endforeach if get_option('xwayland').enabled() and not wlroots_features['xwayland'] error('Cannot enable Xwayland in sway: wlroots has been built without Xwayland support') endif -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() |
