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 <daniel@fooishbar.org>
diff --git a/src/pixman-renderer.h b/src/pixman-renderer.h
index 77761ba..2532299 100644
--- a/src/pixman-renderer.h
+++ b/src/pixman-renderer.h
@@ -20,7 +20,9 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "compositor.h"
+#include "config.h"
+
+#include "compositor.h"
int
pixman_renderer_init(struct weston_compositor *ec);