mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
46742e4263
Also disabled ffmpeg (incompatible) and added two fixes for curl and xine. Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
19 lines
706 B
Diff
19 lines
706 B
Diff
http://bugs.gentoo.org/397643
|
|
|
|
--- src/osgPlugins/xine/video_out_rgb.c
|
|
+++ src/osgPlugins/xine/video_out_rgb.c
|
|
@@ -2769,8 +2769,14 @@ init_class(xine_t* xine, void* vo_visual
|
|
clear(rgb_class, sizeof(rgbout_class_t));
|
|
|
|
rgb_class->driver_class.open_plugin = open_plugin;
|
|
+#if XINE_MAJOR_VERSION < 1 || (XINE_MAJOR_VERSION == 1 && XINE_MINOR_VERSION < 2)
|
|
rgb_class->driver_class.get_identifier = get_identifier;
|
|
rgb_class->driver_class.get_description = get_description;
|
|
+#else
|
|
+ rgb_class->driver_class.identifier = get_identifier(NULL);
|
|
+ rgb_class->driver_class.description = get_description(NULL);
|
|
+#endif
|
|
+
|
|
rgb_class->driver_class.dispose = dispose_class;
|
|
|
|
return(rgb_class);
|