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:
parent
69594ccf9c
commit
8e7a8bdeea
|
@ -23,6 +23,8 @@
|
|||
#ifndef _WESTON_CMS_H_
|
||||
#define _WESTON_CMS_H_
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "compositor.h"
|
||||
|
||||
/* General overview on how to be a CMS plugin:
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <pixman.h>
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#ifndef EVDEV_H
|
||||
#define EVDEV_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <linux/input.h>
|
||||
#include <wayland-util.h>
|
||||
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#ifndef _FILTER_H_
|
||||
#define _FILTER_H_
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <wayland-util.h>
|
||||
|
||||
#include "compositor.h"
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#ifndef _WESTON_LAUNCHER_UTIL_H_
|
||||
#define _WESTON_LAUNCHER_UTIL_H_
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "compositor.h"
|
||||
|
||||
int
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "compositor.h"
|
||||
|
||||
WL_EXPORT void
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#ifndef _UDEV_SEAT_H_
|
||||
#define _UDEV_SEAT_H_
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <libudev.h>
|
||||
|
||||
#include "compositor.h"
|
||||
|
|
Loading…
Reference in New Issue