Remove WLR_HAS_XCB_ERRORS

wlroots' dependency on this library doesn't change the features
exposed to compositors. It's purely a wlroots implementation detail.
Thus downstream compositors shouldn't really care about it.

Introduce an "internal_features" dictionary to store the status of
such internal dependencies.
This commit is contained in:
Simon Ser 2021-04-06 11:59:57 +02:00 committed by Kenny Levinsen
parent 78befa59f9
commit 1eb38e0015
7 changed files with 26 additions and 20 deletions

View file

@ -9,7 +9,7 @@
#include <xcb/xcb.h>
#include <xcb/present.h>
#if WLR_HAS_XCB_ERRORS
#if HAS_XCB_ERRORS
#include <xcb/xcb_errors.h>
#endif
@ -103,7 +103,7 @@ struct wlr_x11_backend {
// The time we last received an event
xcb_timestamp_t time;
#if WLR_HAS_XCB_ERRORS
#if HAS_XCB_ERRORS
xcb_errors_context_t *errors_context;
#endif