Summary: | lastest freerdp changes rfx/nsc_context_reset signature | ||
---|---|---|---|
Product: | Wayland | Reporter: | comicfans44 <comicfans44> |
Component: | weston | Assignee: | Wayland bug list <wayland-bugs> |
Status: | RESOLVED FIXED | QA Contact: | |
Severity: | normal | ||
Priority: | medium | ||
Version: | unspecified | ||
Hardware: | Other | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: |
Description
comicfans44
2016-03-12 23:40:02 UTC
lastest freerdp also changed pkg-config file name to freerdp2.pc instead of freerdp.pc so weston can't find it I saw this too, and came up with something similar: diff --git a/src/compositor-rdp.c b/src/compositor-rdp.c index 773b6b5..e47bb79 100644 --- a/src/compositor-rdp.c +++ b/src/compositor-rdp.c @@ -867,9 +867,9 @@ xf_peer_activate(freerdp_peer* client) } } - rfx_context_reset(peerCtx->rfx_context); + rfx_context_reset(peerCtx->rfx_context, output->base.width, output->base.height); #ifdef HAVE_NSC_RESET - nsc_context_reset(peerCtx->nsc_context); + nsc_context_reset(peerCtx->nsc_context, output->base.width, output->base.height); #endif if (peersItem->flags & RDP_PEER_ACTIVATED) Dunno whether it's better to use output or settings. Although, going by the rest of the code, aren't the settings values strings or something, since the code keeps running them through int() ? I also have a patch for the pkgconfig module name change, which is obviously trivial: diff --git a/configure.ac b/configure.ac index 670200c..6dafb7c 100644 --- a/configure.ac +++ b/configure.ac @@ -242,7 +242,7 @@ AM_CONDITIONAL([ENABLE_RDP_COMPOSITOR], [test x$enable_rdp_compositor = xyes]) if test x$enable_rdp_compositor = xyes; then AC_DEFINE([BUILD_RDP_COMPOSITOR], [1], [Build the RDP compositor]) - PKG_CHECK_MODULES(RDP_COMPOSITOR, [freerdp >= 1.1.0]) + PKG_CHECK_MODULES(RDP_COMPOSITOR, [freerdp2 >= 1.1.0]) SAVED_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $RDP_COMPOSITOR_CFLAGS" Note that upstream freerdp changed ABI too, so Fedora Rawhide weston is now broken and this will hit other distros soon too, most likely. commit 58b63ab7f1eec70c421b42a509f13dbc08a558ad Author: FORT David <rdp.effort@gmail.com> AuthorDate: Sun May 1 23:32:07 2016 +0200 Commit: Bryce Harrington <bryce@osg.samsung.com> CommitDate: Thu May 19 14:48:17 2016 -0700 rdp: allow to compile against FreeRDP 2.0 FreeRDP 2.0 is about to be released, this allows to compile against this version. The detection is adjusted to prefer FreeRDP 2 against version 1.x. Signed-off-by: David Fort <contact@hardening-consulting.com> Reviewed-by: Quentin Glidic <sardemff7+git@sardemff7.net> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com> [I think the above patch covered everything mentioned here; if not feel free to reopen with a suggested patch.] |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.