mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
more define fixes
Original commit message from CVS: more define fixes
This commit is contained in:
parent
0ecb219505
commit
101c15c9b8
5 changed files with 11 additions and 11 deletions
|
@ -208,7 +208,7 @@ GST_PLUGIN_DEFINE_STATIC (GST_VERSION_MAJOR,
|
|||
GST_VERSION_MINOR,
|
||||
"gst-test",
|
||||
"controller test plugin - several unit test support elements",
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN);
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
||||
|
||||
/*
|
||||
static void __attribute__ ((constructor))
|
||||
|
|
|
@ -40,8 +40,8 @@ static GstPluginDesc plugin_desc = {
|
|||
VERSION,
|
||||
GST_LICENSE,
|
||||
PACKAGE,
|
||||
GST_PACKAGE,
|
||||
GST_ORIGIN,
|
||||
GST_PACKAGE_NAME,
|
||||
GST_PACKAGE_ORIGIN,
|
||||
|
||||
GST_PADDING_INIT
|
||||
};
|
||||
|
@ -150,8 +150,8 @@ GST_START_TEST (test_find_plugin)
|
|||
fail_unless_equals_string (plugin->desc.version, VERSION);
|
||||
fail_unless_equals_string (plugin->desc.license, "LGPL");
|
||||
fail_unless_equals_string (plugin->desc.source, "gstreamer");
|
||||
fail_unless_equals_string (plugin->desc.package, GST_PACKAGE);
|
||||
fail_unless_equals_string (plugin->desc.origin, GST_ORIGIN);
|
||||
fail_unless_equals_string (plugin->desc.package, GST_PACKAGE_NAME);
|
||||
fail_unless_equals_string (plugin->desc.origin, GST_PACKAGE_ORIGIN);
|
||||
|
||||
gst_object_unref (plugin);
|
||||
}
|
||||
|
|
|
@ -405,7 +405,7 @@ dnl *** FIXME: name this part
|
|||
|
||||
dnl set license and copyright notice
|
||||
GST_LICENSE="LGPL"
|
||||
AC_DEFINE(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
|
||||
AC_DEFINE_UNQUOTED(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
|
||||
AC_SUBST(GST_LICENSE)
|
||||
|
||||
dnl define LIBDIR so we can inform people where we live
|
||||
|
|
|
@ -40,8 +40,8 @@ static GstPluginDesc plugin_desc = {
|
|||
VERSION,
|
||||
GST_LICENSE,
|
||||
PACKAGE,
|
||||
GST_PACKAGE,
|
||||
GST_ORIGIN,
|
||||
GST_PACKAGE_NAME,
|
||||
GST_PACKAGE_ORIGIN,
|
||||
|
||||
GST_PADDING_INIT
|
||||
};
|
||||
|
@ -150,8 +150,8 @@ GST_START_TEST (test_find_plugin)
|
|||
fail_unless_equals_string (plugin->desc.version, VERSION);
|
||||
fail_unless_equals_string (plugin->desc.license, "LGPL");
|
||||
fail_unless_equals_string (plugin->desc.source, "gstreamer");
|
||||
fail_unless_equals_string (plugin->desc.package, GST_PACKAGE);
|
||||
fail_unless_equals_string (plugin->desc.origin, GST_ORIGIN);
|
||||
fail_unless_equals_string (plugin->desc.package, GST_PACKAGE_NAME);
|
||||
fail_unless_equals_string (plugin->desc.origin, GST_PACKAGE_ORIGIN);
|
||||
|
||||
gst_object_unref (plugin);
|
||||
}
|
||||
|
|
|
@ -208,7 +208,7 @@ GST_PLUGIN_DEFINE_STATIC (GST_VERSION_MAJOR,
|
|||
GST_VERSION_MINOR,
|
||||
"gst-test",
|
||||
"controller test plugin - several unit test support elements",
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN);
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
||||
|
||||
/*
|
||||
static void __attribute__ ((constructor))
|
||||
|
|
Loading…
Reference in a new issue