diff options
author | Björn Esser <besser82@fedoraproject.org> | 2017-12-26 18:51:27 +0100 |
---|---|---|
committer | Björn Esser <besser82@fedoraproject.org> | 2017-12-26 18:51:27 +0100 |
commit | 57a09c8ca45e0ec023b7be88745b21fc71649c52 (patch) | |
tree | 27d6bd1104a3d3795905adfcd9e442aa28c4bf9c /xwayland | |
parent | 4d744aeb230f36d990c102a89314f95ff802ca75 (diff) |
config: Put all defines into config.h
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/xwm.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c index 6cbe9bda..f373e128 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -7,6 +7,7 @@ #include <xcb/xfixes.h> #include <xcb/xcb_image.h> #include <xcb/render.h> +#include "config.h" #include "wlr/util/log.h" #include "wlr/util/edges.h" #include "wlr/types/wlr_surface.h" @@ -14,7 +15,7 @@ #include "wlr/xcursor.h" #include "wlr/xwm.h" -#ifdef HAS_XCB_ICCCM +#ifdef WLR_HAS_XCB_ICCCM #include <xcb/xcb_icccm.h> #endif @@ -365,7 +366,7 @@ static void read_surface_protocols(struct wlr_xwm *xwm, wlr_log(L_DEBUG, "WM_PROTOCOLS (%zu)", atoms_len); } -#ifdef HAS_XCB_ICCCM +#ifdef WLR_HAS_XCB_ICCCM static void read_surface_hints(struct wlr_xwm *xwm, struct wlr_xwayland_surface *xsurface, xcb_get_property_reply_t *reply) { @@ -396,7 +397,7 @@ static void read_surface_hints(struct wlr_xwm *xwm, } #endif -#ifdef HAS_XCB_ICCCM +#ifdef WLR_HAS_XCB_ICCCM static void read_surface_normal_hints(struct wlr_xwm *xwm, struct wlr_xwayland_surface *xsurface, xcb_get_property_reply_t *reply) { |