Skip to content

Commit

Permalink
build: fix have_xwayland when xcb-icccm is not found
Browse files Browse the repository at this point in the history
xcb-icccm is required to build Xwayland support.
  • Loading branch information
emersion authored and bl4ckb0ne committed Nov 29, 2022
1 parent a358d67 commit d41f11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -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()
Expand Down

0 comments on commit d41f11e

Please sign in to comment.