diff options
author | Simon Ser <contact@emersion.fr> | 2021-04-06 11:59:57 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2021-04-09 21:54:38 +0200 |
commit | 1eb38e001503636a8e5058051e9256d70f1bffcc (patch) | |
tree | c33d204acec48d036a60033de949519f4c58abe8 /include/backend/x11.h | |
parent | 78befa59f96bb0a13e9ffeb4df1272738c6b5012 (diff) |
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.
Diffstat (limited to 'include/backend/x11.h')
-rw-r--r-- | include/backend/x11.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 49172235..89760069 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -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 |