diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2025-01-17 15:08:29 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2025-01-20 18:03:57 +0200 |
commit | 2049669726ac2d8e5568da6348a16e45a93cd016 (patch) | |
tree | 390f7db4bfce7d43e5c289f51df383338a1640f9 | |
parent | 6c9e76261537b49a768dbd2583d03e7a37b8217c (diff) |
compositor: Fix missing inclusion of RDP backend headersalmon
This was unfortunately removed when we removed the remoting plug-in.
Fixes 2487a385711e0d1ec, 'compositor: Remove loading of remoting plug-in'
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I7a49b8f4a58a5859a660d6e1c12c8522614e8e4c
(cherry picked from commit 11120e53a2b4dfea77fe8caf9c2f799ce378e7f7)
-rw-r--r-- | src/compositor.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compositor.c b/src/compositor.c index c7a12e4..cd23dc1 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -45,6 +45,9 @@ #ifdef HAVE_BACKEND_X11 #include <libweston/backend-x11.h> #endif +#ifdef HAVE_BACKEND_RDP +#include <libweston/backend-rdp.h> +#endif #include <libweston/libweston.h> #include <libweston/windowed-output-api.h> #include <libweston/config-parser.h> |