From ef1f81dae7a480c3b2666ff798c6dfaaa9f94c0c Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Thu, 15 Aug 2013 01:10:24 +0100 Subject: [PATCH] Add more missing config.h includes config.h includes were missing in a few files, including input.c, the lack of which caused the X11 backend to segfault instantly due to not having an xkbcommon context. Signed-off-by: Daniel Stone --- src/evdev.h | 2 ++ src/filter.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/evdev.h b/src/evdev.h index eb5c8682..524fa229 100644 --- a/src/evdev.h +++ b/src/evdev.h @@ -23,6 +23,8 @@ #ifndef EVDEV_H #define EVDEV_H +#include "config.h" + #include #include diff --git a/src/filter.h b/src/filter.h index ff8e579f..850ce8df 100644 --- a/src/filter.h +++ b/src/filter.h @@ -23,6 +23,8 @@ #ifndef _FILTER_H_ #define _FILTER_H_ +#include "config.h" + #include #include "compositor.h"