mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
1c8d5e9c12
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
55 lines
2.1 KiB
Diff
55 lines
2.1 KiB
Diff
--- modules/access/rdp.c.orig 2015-02-21 11:01:32.145593444 +1000
|
|
+++ modules/access/rdp.c 2015-02-21 10:34:14.875061312 +1000
|
|
@@ -83,7 +83,7 @@
|
|
set_category( CAT_INPUT )
|
|
set_subcategory( SUBCAT_INPUT_ACCESS )
|
|
set_description( N_("RDP Remote Desktop") )
|
|
- set_capability( "access_demux", 10 )
|
|
+ set_capability( "access_demux", 0 )
|
|
|
|
add_string( CFG_PREFIX "user", NULL, RDP_USER, RDP_USER, false )
|
|
change_safe()
|
|
@@ -233,7 +233,7 @@
|
|
vlcrdp_context_t * p_vlccontext = (vlcrdp_context_t *) p_instance->context;
|
|
|
|
msg_Dbg( p_vlccontext->p_demux, "connected to desktop %dx%d (%d bpp)",
|
|
-#if (FREERDP_VERSION_MAJOR >= 1 && FREERDP_VERSION_MINOR >= 1 )
|
|
+#if defined(FREERDP_VERSION_MAJOR) && (FREERDP_VERSION_MAJOR >= 1 && FREERDP_VERSION_MINOR >= 1 )
|
|
p_instance->settings->DesktopWidth,
|
|
p_instance->settings->DesktopHeight,
|
|
p_instance->settings->ColorDepth
|
|
@@ -248,7 +248,13 @@
|
|
p_instance->update->BeginPaint = beginPaintHandler;
|
|
p_instance->update->EndPaint = endPaintHandler;
|
|
|
|
- gdi_init( p_instance, CLRBUF_16BPP | CLRBUF_24BPP | CLRBUF_32BPP, NULL );
|
|
+ gdi_init( p_instance,
|
|
+ CLRBUF_16BPP |
|
|
+#if defined(FREERDP_VERSION_MAJOR) && defined(FREERDP_VERSION_MINOR) && \
|
|
+ !(FREERDP_VERSION_MAJOR > 1 || (FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR >= 2))
|
|
+ CLRBUF_24BPP |
|
|
+#endif
|
|
+ CLRBUF_32BPP, NULL );
|
|
|
|
desktopResizeHandler( p_instance->context );
|
|
return true;
|
|
@@ -422,7 +428,9 @@
|
|
if ( p_sys->f_fps <= 0 ) p_sys->f_fps = 1.0;
|
|
p_sys->i_frame_interval = 1000000 / p_sys->f_fps;
|
|
|
|
+#if FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR < 2
|
|
freerdp_channels_global_init();
|
|
+#endif
|
|
|
|
p_sys->p_instance = freerdp_new();
|
|
if ( !p_sys->p_instance )
|
|
@@ -498,7 +506,9 @@
|
|
|
|
freerdp_disconnect( p_sys->p_instance );
|
|
freerdp_free( p_sys->p_instance );
|
|
+#if FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR < 2
|
|
freerdp_channels_global_uninit();
|
|
+#endif
|
|
|
|
if ( p_sys->p_block )
|
|
block_Release( p_sys->p_block );
|