From f4f4c2bcf10cbeb541871dfd117f2910c7fe3c60 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Mon, 29 Apr 2019 13:27:47 +0300 Subject: [PATCH] libweston: Add weston-debug header to libweston Signed-off-by: Marius Vlad --- compositor/main.c | 2 +- compositor/weston-screenshooter.c | 2 +- {libweston => include/libweston}/weston-debug.h | 0 libweston/compositor-drm.c | 2 +- libweston/compositor.c | 2 +- libweston/weston-debug.c | 2 +- xwayland/xwayland.h | 2 +- 7 files changed, 6 insertions(+), 6 deletions(-) rename {libweston => include/libweston}/weston-debug.h (100%) diff --git a/compositor/main.c b/compositor/main.c index 576809ee..df90b3c9 100644 --- a/compositor/main.c +++ b/compositor/main.c @@ -62,7 +62,7 @@ #include #include #include -#include "weston-debug.h" +#include #include "../remoting/remoting-plugin.h" #define WINDOW_TITLE "Weston Compositor" diff --git a/compositor/weston-screenshooter.c b/compositor/weston-screenshooter.c index 55fbf8df..b2aaf22f 100644 --- a/compositor/weston-screenshooter.c +++ b/compositor/weston-screenshooter.c @@ -32,7 +32,7 @@ #include "weston.h" #include "weston-screenshooter-server-protocol.h" #include "shared/helpers.h" -#include "weston-debug.h" +#include struct screenshooter { struct weston_compositor *ec; diff --git a/libweston/weston-debug.h b/include/libweston/weston-debug.h similarity index 100% rename from libweston/weston-debug.h rename to include/libweston/weston-debug.h diff --git a/libweston/compositor-drm.c b/libweston/compositor-drm.c index 6d40e72b..627f58e5 100644 --- a/libweston/compositor-drm.c +++ b/libweston/compositor-drm.c @@ -52,7 +52,7 @@ #include #include -#include "weston-debug.h" +#include #include "shared/helpers.h" #include "shared/timespec-util.h" #include "renderer-gl/gl-renderer.h" diff --git a/libweston/compositor.c b/libweston/compositor.c index da34ee75..fa2645fe 100644 --- a/libweston/compositor.c +++ b/libweston/compositor.c @@ -56,7 +56,7 @@ #include "timeline.h" #include -#include "weston-debug.h" +#include #include "linux-dmabuf.h" #include "viewporter-server-protocol.h" #include "presentation-time-server-protocol.h" diff --git a/libweston/weston-debug.c b/libweston/weston-debug.c index 79b35a45..5f505346 100644 --- a/libweston/weston-debug.c +++ b/libweston/weston-debug.c @@ -26,7 +26,7 @@ #include "config.h" -#include "weston-debug.h" +#include #include "helpers.h" #include diff --git a/xwayland/xwayland.h b/xwayland/xwayland.h index 1c323502..d42d33c4 100644 --- a/xwayland/xwayland.h +++ b/xwayland/xwayland.h @@ -33,7 +33,7 @@ #include #include "compositor/weston.h" #include -#include "weston-debug.h" +#include #define SEND_EVENT_MASK (0x80) #define EVENT_TYPE(event) ((event)->response_type & ~SEND_EVENT_MASK)