From 45dce3a1013f7c11f6f548541d0f624c4b39951a Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 19 Feb 2019 20:01:37 +0100 Subject: plugin: Fix build with GStreamer 1.13 The plugin description is supposed to be an unescaped string, to be concatenated with function names. This worked with earlier version of GStreamer, but breaks with the GStreamer 1.13 development branch and newer. --- clutter-gst/clutter-gst-plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter-gst/clutter-gst-plugin.c b/clutter-gst/clutter-gst-plugin.c index 3f6d5a1..832fec9 100644 --- a/clutter-gst/clutter-gst-plugin.c +++ b/clutter-gst/clutter-gst-plugin.c @@ -65,7 +65,7 @@ plugin_init (GstPlugin *plugin) GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, - clutter-gst3, + clutter_gst3, "Elements to render to ClutterGst actors", plugin_init, VERSION, -- cgit v1.2.1