diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-26 23:20:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-26 23:20:46 -0400 |
commit | b1c4f01bad11fec82c45b48db7739d621f2d58a9 (patch) | |
tree | ab63b01be07cebed0e2b18e2e556cfb81246476f /rootston/input.c | |
parent | 62e9ab0c4558f67ac9bcaa2bd0a6a76a7bbe130c (diff) | |
parent | 706f77e3c735e49b4a051d545f40043a53e1ea2c (diff) |
Merge pull request #713 from ManDay/master
Make X11 fully optional
Diffstat (limited to 'rootston/input.c')
-rw-r--r-- | rootston/input.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rootston/input.c b/rootston/input.c index 657b0946..962be9fa 100644 --- a/rootston/input.c +++ b/rootston/input.c @@ -5,7 +5,9 @@ #include <wlr/types/wlr_cursor.h> #include <wlr/util/log.h> #include <wlr/xcursor.h> +#ifdef WLR_HAS_XWAYLAND #include <wlr/xwayland.h> +#endif #include "rootston/config.h" #include "rootston/input.h" #include "rootston/keyboard.h" |