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>
This commit is contained in:
Daniel Stone 2013-08-15 01:10:24 +01:00 committed by Jonas Ådahl
parent 6dc5a8e95d
commit ef1f81dae7
2 changed files with 4 additions and 0 deletions

View file

@ -23,6 +23,8 @@
#ifndef EVDEV_H #ifndef EVDEV_H
#define EVDEV_H #define EVDEV_H
#include "config.h"
#include <linux/input.h> #include <linux/input.h>
#include <wayland-util.h> #include <wayland-util.h>

View file

@ -23,6 +23,8 @@
#ifndef _FILTER_H_ #ifndef _FILTER_H_
#define _FILTER_H_ #define _FILTER_H_
#include "config.h"
#include <wayland-util.h> #include <wayland-util.h>
#include "compositor.h" #include "compositor.h"