gst/gst.c: plugin_paths is not used if we build without registry support.
authorEdward Hervey <bilboed@bilboed.com>
Mon, 5 Jun 2006 13:05:37 +0000 (13:05 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 5 Jun 2006 13:05:37 +0000 (13:05 +0000)
Original commit message from CVS:
* gst/gst.c:
plugin_paths is not used if we build without registry support.
* gst/gstsegment.c: (gst_segment_copy):
_copy() was always returning NULL...

ChangeLog
gst/gst.c

index 941df7f..29a4b3a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-06-05  Edward Hervey  <edward@fluendo.com>
 
+       * gst/gst.c:
+       plugin_paths is not used if we build without registry support.
+
        * gst/gstsegment.c: (gst_segment_copy): 
        _copy() was always returning NULL...
 
index 853cd85..8358430 100644 (file)
--- a/gst/gst.c
+++ b/gst/gst.c
 
 static gboolean gst_initialized = FALSE;
 
+#ifndef GST_DISABLE_REGISTRY
 static GList *plugin_paths = NULL;      /* for delayed processing in post_init */
+#endif
 
 extern gint _gst_trace_on;