summaryrefslogtreecommitdiff
path: root/src/compositor-rdp.c
diff options
context:
space:
mode:
authorHardening <rdp.effort@gmail.com>2014-01-10 11:33:06 +0100
committerKristian Høgsberg <krh@bitplanet.net>2014-01-19 22:35:51 -0800
commit04633b69324ef1df086f1f2a2686441937575ccf (patch)
treeb5ed00e9fec643a97d64c4e908e20907009d89e3 /src/compositor-rdp.c
parentac9f35a72b592426809c5698caf9f2c2b55b5ec8 (diff)
downloadweston-04633b69324ef1df086f1f2a2686441937575ccf.tar.gz
Fix compilation with FreeRdp 1.1 and master v2
The API to use remoteFx encoding has changed between master and stable 1.1 branch. This patch should fix compilation for both. This new version adds checks for the freerdp/version.h file
Diffstat (limited to 'src/compositor-rdp.c')
-rw-r--r--src/compositor-rdp.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/compositor-rdp.c b/src/compositor-rdp.c
index b9c36cfd..e8e4a8dc 100644
--- a/src/compositor-rdp.c
+++ b/src/compositor-rdp.c
@@ -27,6 +27,14 @@
#include <errno.h>
#include <linux/input.h>
+#if HAVE_FREERDP_VERSION_H
+#include <freerdp/version.h>
+#else
+/* assume it's a early 1.1 version */
+#define FREERDP_VERSION_MAJOR 1
+#define FREERDP_VERSION_MINOR 1
+#endif
+
#include <freerdp/freerdp.h>
#include <freerdp/listener.h>
#include <freerdp/update.h>
@@ -571,7 +579,11 @@ rdp_peer_context_new(freerdp_peer* client, RdpPeerContext* context)
context->item.peer = client;
context->item.flags = RDP_PEER_OUTPUT_ENABLED;
+#if FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR == 1
context->rfx_context = rfx_context_new();
+#else
+ context->rfx_context = rfx_context_new(TRUE);
+#endif
context->rfx_context->mode = RLGR3;
context->rfx_context->width = client->settings->DesktopWidth;
context->rfx_context->height = client->settings->DesktopHeight;