removal of //-style comments don't link plugins to core libs -- the versioning is...
authorAndy Wingo <wingo@pobox.com>
Tue, 19 Mar 2002 04:10:06 +0000 (04:10 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 2 Jan 2011 14:30:00 +0000 (14:30 +0000)
Original commit message from CVS:
* removal of //-style comments
* don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct,
and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.

ext/jack/Makefile.am
ext/jack/gstjack.c

index fc5c110..7c1b5c2 100644 (file)
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstjack.la
 
 libgstjack_la_SOURCES = gstjack.c
 libgstjack_la_CFLAGS = $(GST_CFLAGS) $(JACK_CFLAGS)
-libgstjack_la_LIBADD = $(GST_LIBS) $(JACK_LIBS)
+libgstjack_la_LIBADD = $(JACK_LIBS)
 libgstjack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
 
 noinst_HEADERS = gstjack.h
index 82da2ae..816c503 100644 (file)
@@ -259,7 +259,7 @@ gst_jack_request_new_pad (GstElement *element, GstPadTemplate *templ, const gcha
     
     if (this->client)
         *pad_list = g_list_append (*pad_list, pad);
-//    this->pads = g_list_append (this->pads, pad);
+/*    this->pads = g_list_append (this->pads, pad); */
     
     return pad->pad;
 }
@@ -555,7 +555,7 @@ shutdown (void *arg)
 {
     GstJackClient *client = (GstJackClient*) arg;
     printf ("shutdown\n");
-//    gst_element_set_state (GST_ELEMENT (client->manager), GST_STATE_READY);
+/*    gst_element_set_state (GST_ELEMENT (client->manager), GST_STATE_READY); */
 }
 
 static gboolean