commit f95cb9a7c17251c43b1d1058092e0a15d1fe8dd9
parent 79a45d4a4049e3b9235915cd308ed2995623f833
Author: Pascal Pascher <pascalpascher@gmx.net>
Date: Wed, 25 Jul 2018 13:32:20 +0200
reverted includes of "sway/config.h" and replaced with "config.h" from meson build
Diffstat:
11 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
@@ -2,6 +2,7 @@
#define _SWAY_CRITERIA_H
#include <pcre.h>
+#include "config.h"
#include "list.h"
#include "tree/view.h"
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
@@ -3,6 +3,7 @@
#include <wlr/types/wlr_output_layout.h>
#include <wlr/render/wlr_texture.h>
#include "sway/tree/container.h"
+#include "config.h"
enum movement_direction {
MOVE_LEFT,
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
@@ -3,6 +3,7 @@
#include <wayland-server.h>
#include <wlr/types/wlr_surface.h>
#include <wlr/types/wlr_xdg_shell_v6.h>
+#include "config.h"
#ifdef HAVE_XWAYLAND
#include <wlr/xwayland.h>
#endif
diff --git a/sway/commands/swap.c b/sway/commands/swap.c
@@ -1,6 +1,6 @@
#include <strings.h>
#include <wlr/util/log.h>
-#include "sway/config.h"
+#include "config.h"
#include "sway/commands.h"
#include "sway/tree/arrange.h"
#include "sway/tree/layout.h"
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
@@ -14,6 +14,7 @@
#include <wlr/types/wlr_surface.h>
#include <wlr/util/region.h>
#include "log.h"
+#include "config.h"
#include "sway/config.h"
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
@@ -14,6 +14,7 @@
#include <wlr/types/wlr_surface.h>
#include <wlr/util/region.h>
#include "log.h"
+#include "config.h"
#include "sway/config.h"
#include "sway/debug.h"
#include "sway/input/input-manager.h"
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
@@ -11,7 +11,7 @@
#include <wlr/types/wlr_idle.h>
#include "list.h"
#include "log.h"
-#include "sway/config.h"
+#include "config.h"
#include "sway/desktop.h"
#include "sway/desktop/transaction.h"
#include "sway/input/cursor.h"
diff --git a/sway/input/seat.c b/sway/input/seat.c
@@ -12,7 +12,7 @@
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_xcursor_manager.h>
#include "log.h"
-#include "sway/config.h"
+#include "config.h"
#include "sway/debug.h"
#include "sway/desktop.h"
#include "sway/input/cursor.h"
diff --git a/sway/server.c b/sway/server.c
@@ -25,6 +25,7 @@
#include "sway/input/input-manager.h"
#include "sway/server.h"
#include "sway/tree/layout.h"
+#include "config.h"
#ifdef HAVE_XWAYLAND
#include "sway/xwayland.h"
#endif
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
@@ -6,7 +6,7 @@
#include <string.h>
#include <wlr/types/wlr_output.h>
#include <wlr/types/wlr_output_layout.h>
-#include "sway/config.h"
+#include "config.h"
#include "sway/debug.h"
#include "sway/tree/arrange.h"
#include "sway/tree/container.h"
diff --git a/sway/tree/view.c b/sway/tree/view.c
@@ -3,12 +3,12 @@
#include <wayland-server.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/types/wlr_output_layout.h>
-#include "sway/config.h"
#ifdef HAVE_XWAYLAND
#include <wlr/xwayland.h>
#endif
#include "list.h"
#include "log.h"
+#include "config.h"
#include "sway/criteria.h"
#include "sway/commands.h"
#include "sway/ipc-server.h"