From ed06915e61ac20ed3297aca83c210a12f9575d6f Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Fri, 14 Mar 2014 16:59:22 +0000 Subject: [PATCH] cogl-gst-plugin: Fix the license name in the plugin description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In commit 1b83ef938f the license in the plugin description was changed from “LGPL” to “MIT”. GStreamer strictly whitelists the names of the licenses and the correct name for the MIT license is “MIT/X11” so it was rejecting the plugin. Reviewed-by: Robert Bragg (cherry picked from commit ceec0bddb858588c1f04c50dd6cbda9eb044c4cc) --- cogl-gst/cogl-gst-plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl-gst/cogl-gst-plugin.c b/cogl-gst/cogl-gst-plugin.c index d72805ad0..20b1e59ac 100644 --- a/cogl-gst/cogl-gst-plugin.c +++ b/cogl-gst/cogl-gst-plugin.c @@ -52,6 +52,6 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, "Sends video data from GStreamer to a Cogl pipeline", _plugin_init, COGL_VERSION_STRING, - "MIT", + "MIT/X11", PACKAGE, "http://cogl3d.org/")