sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit d41f11e6bd8cef80f02dda4c66d4a31611aed753
parent a358d6760ef751588d310f0141798387e7f4d4b1
Author: Simon Ser <contact@emersion.fr>
Date:   Mon, 28 Nov 2022 20:09:10 +0100

build: fix have_xwayland when xcb-icccm is not found

xcb-icccm is required to build Xwayland support.

Diffstat:
Mmeson.build | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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()