aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-12-27 09:22:38 -0800
committerGitHub <noreply@github.com>2017-12-27 09:22:38 -0800
commitfea5aee9cff78b724c7b179c3b49ed42b1526b8f (patch)
tree08ebec5b7cf3983b6321e2fee884a7e00f267617 /rootston
parenta0d2a6b445f33b608019809f581a80d28062178d (diff)
parent71e42dae909c8e94f82873f9eee0c50f0284fbdd (diff)
Merge pull request #526 from besser82/bugfix/config_header_avoid_clashes
Further improvements to header files and shared lib version
Diffstat (limited to 'rootston')
-rw-r--r--rootston/config.c2
-rw-r--r--rootston/desktop.c2
-rw-r--r--rootston/main.c2
-rw-r--r--rootston/seat.c2
-rw-r--r--rootston/xwayland.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/rootston/config.c b/rootston/config.c
index f369c4f5..f9fde369 100644
--- a/rootston/config.c
+++ b/rootston/config.c
@@ -9,7 +9,7 @@
#include <strings.h>
#include <unistd.h>
#include <sys/param.h>
-#include "config.h"
+#include <wlr/config.h>
#include <wlr/util/log.h>
#include <wlr/types/wlr_box.h>
#include "rootston/config.h"
diff --git a/rootston/desktop.c b/rootston/desktop.c
index a4692439..69dcf4a9 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -3,7 +3,7 @@
#include <time.h>
#include <stdlib.h>
#include <math.h>
-#include "config.h"
+#include <wlr/config.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_compositor.h>
#include <wlr/types/wlr_cursor.h>
diff --git a/rootston/main.c b/rootston/main.c
index 87f1c0b4..33ca6504 100644
--- a/rootston/main.c
+++ b/rootston/main.c
@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <wayland-server.h>
-#include "config.h"
+#include <wlr/config.h>
#include <wlr/backend.h>
#include <wlr/backend/headless.h>
#include <wlr/backend/multi.h>
diff --git a/rootston/seat.c b/rootston/seat.c
index 635bc8b1..c2c7e3ea 100644
--- a/rootston/seat.c
+++ b/rootston/seat.c
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <wayland-server.h>
-#include "config.h"
+#include <wlr/config.h>
#include <wlr/types/wlr_xcursor_manager.h>
#include <wlr/util/log.h>
#include "rootston/xcursor.h"
diff --git a/rootston/xwayland.c b/rootston/xwayland.c
index b00b61bc..3d84dc19 100644
--- a/rootston/xwayland.c
+++ b/rootston/xwayland.c
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <stdbool.h>
#include <wayland-server.h>
-#include "config.h"
+#include <wlr/config.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_surface.h>
#include <wlr/xwayland.h>