From 6c897756b6340d098f50eeb0da0d39abda87fdda Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 25 Nov 2022 17:36:24 +0100 Subject: build: use a configuration file for internal features This avoids re-building the whole project when switching one Meson option. This shrinks down the compiler invocation command line, making it more readable and making it easier to inspect which flags are passed in (the generated file can be opened). Additionally this is more consistent with our external feature handling, which uses already. --- include/backend/x11.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'include/backend') diff --git a/include/backend/x11.h b/include/backend/x11.h index 9c0c1a4d..704d48f1 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -9,10 +9,6 @@ #include #include -#if HAS_XCB_ERRORS -#include -#endif - #include #include #include @@ -21,6 +17,12 @@ #include #include +#include "config.h" + +#if HAS_XCB_ERRORS +#include +#endif + #define XCB_EVENT_RESPONSE_TYPE_MASK 0x7f struct wlr_x11_backend; -- cgit v1.2.3