From: Wim Taymans Date: Sun, 26 May 2002 21:21:37 +0000 (+0000) Subject: Small fixes, use some wierd hack to make the plugin a .so X-Git-Tag: BRANCH-RELEASE-0_4_0-ROOT~151 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4aaca5cc340d224a1c5ff7d7c2b000be94fe4d98;p=platform%2Fupstream%2Fgstreamer.git Small fixes, use some wierd hack to make the plugin a .so Original commit message from CVS: Small fixes, use some wierd hack to make the plugin a .so --- diff --git a/examples/plugins/Makefile.am b/examples/plugins/Makefile.am index 17a6bd6466..71070f80b0 100644 --- a/examples/plugins/Makefile.am +++ b/examples/plugins/Makefile.am @@ -1,7 +1,10 @@ -noinst_LTLIBRARIES = libexample.la +plugindir=/dev/null + +plugin_LTLIBRARIES = libexample.la libexample_la_SOURCES = example.c libexample_la_CFLAGS = $(GST_CFLAGS) libexample_la_LIBADD = +libexample_la_LDFLAGS = $(GST_LDFLAGS) -noinst_HEADERS = example.h +noinst_HEADERS = example.h diff --git a/examples/plugins/example.c b/examples/plugins/example.c index 29861a27f9..a572c46af3 100644 --- a/examples/plugins/example.c +++ b/examples/plugins/example.c @@ -120,7 +120,8 @@ gst_example_get_type(void) if (!example_type) { static const GTypeInfo example_info = { - sizeof(GstExampleClass), NULL, + sizeof(GstExampleClass), + NULL, NULL, (GClassInitFunc)gst_example_class_init, NULL, diff --git a/examples/plugins/example.h b/examples/plugins/example.h index 9d7304585d..b397e1e027 100644 --- a/examples/plugins/example.h +++ b/examples/plugins/example.h @@ -72,7 +72,7 @@ struct _GstExampleClass { (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_EXAMPLE,GstExample)) /* The third is a checking cast of the class instead of the object. */ #define GST_EXAMPLE_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_EXAMPLE,GstExample)) + (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_EXAMPLE,GstExampleClass)) /* The last two simply check to see if the passed pointer is an object or * class of the correct type. */ #define GST_IS_EXAMPLE(obj) \ diff --git a/tests/old/examples/plugins/Makefile.am b/tests/old/examples/plugins/Makefile.am index 17a6bd6466..71070f80b0 100644 --- a/tests/old/examples/plugins/Makefile.am +++ b/tests/old/examples/plugins/Makefile.am @@ -1,7 +1,10 @@ -noinst_LTLIBRARIES = libexample.la +plugindir=/dev/null + +plugin_LTLIBRARIES = libexample.la libexample_la_SOURCES = example.c libexample_la_CFLAGS = $(GST_CFLAGS) libexample_la_LIBADD = +libexample_la_LDFLAGS = $(GST_LDFLAGS) -noinst_HEADERS = example.h +noinst_HEADERS = example.h diff --git a/tests/old/examples/plugins/example.c b/tests/old/examples/plugins/example.c index 29861a27f9..a572c46af3 100644 --- a/tests/old/examples/plugins/example.c +++ b/tests/old/examples/plugins/example.c @@ -120,7 +120,8 @@ gst_example_get_type(void) if (!example_type) { static const GTypeInfo example_info = { - sizeof(GstExampleClass), NULL, + sizeof(GstExampleClass), + NULL, NULL, (GClassInitFunc)gst_example_class_init, NULL, diff --git a/tests/old/examples/plugins/example.h b/tests/old/examples/plugins/example.h index 9d7304585d..b397e1e027 100644 --- a/tests/old/examples/plugins/example.h +++ b/tests/old/examples/plugins/example.h @@ -72,7 +72,7 @@ struct _GstExampleClass { (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_EXAMPLE,GstExample)) /* The third is a checking cast of the class instead of the object. */ #define GST_EXAMPLE_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_EXAMPLE,GstExample)) + (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_EXAMPLE,GstExampleClass)) /* The last two simply check to see if the passed pointer is an object or * class of the correct type. */ #define GST_IS_EXAMPLE(obj) \