From 52b0e91537ab3376ce971e456527a4fca67038bf Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Tue, 19 Mar 2013 19:37:20 +0000 Subject: [PATCH] cogl-gst-plugin: Use a real version number and web address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of hardcoding the version number “0.0” it now uses the version number from the Cogl source. The web address has been changed to cogl3d.org. Reviewed-by: Robert Bragg (cherry picked from commit 5363e4a68da9811fb136a01b278846ce15913287) --- cogl-gst/cogl-gst-plugin.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cogl-gst/cogl-gst-plugin.c b/cogl-gst/cogl-gst-plugin.c index c7100747d..35a4070c9 100644 --- a/cogl-gst/cogl-gst-plugin.c +++ b/cogl-gst/cogl-gst-plugin.c @@ -40,7 +40,6 @@ #include "cogl-gst-video-sink.h" #define PACKAGE "CoglGst" -#define VERSION "0.0" static CoglBool _plugin_init (GstPlugin *coglgstvideosink) @@ -56,7 +55,7 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, cogl, "Sends video data from GStreamer to a Cogl pipeline", _plugin_init, - VERSION, + COGL_VERSION_STRING, "LGPL", - "CoglGst", - "http://gstreamer.net/") + PACKAGE, + "http://cogl3d.org/")