mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
gst/gstplugin.h: Remove deprecation guards around GST_PLUGIN_DEFINE_STATIC.
Original commit message from CVS: * gst/gstplugin.h: (GST_PLUGIN_DEFINE_STATIC): Remove deprecation guards around GST_PLUGIN_DEFINE_STATIC. This makes gtk-doc complain, but results in slightly better compiler errors. The old _gst_plugin_register_static() is still guarded, so there'll be a compiler warning about that instead. Fixes #510187 too.
This commit is contained in:
parent
33cd142292
commit
f1850d1fee
2 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2008-01-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/gstplugin.h: (GST_PLUGIN_DEFINE_STATIC):
|
||||||
|
Remove deprecation guards around GST_PLUGIN_DEFINE_STATIC.
|
||||||
|
This makes gtk-doc complain, but results in slightly better
|
||||||
|
compiler errors. The old _gst_plugin_register_static() is
|
||||||
|
still guarded, so there'll be a compiler warning about that
|
||||||
|
instead. Fixes #510187 too.
|
||||||
|
|
||||||
2008-01-17 Tim-Philipp Müller <tim at centricular dot net>
|
2008-01-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/gst.c: (init_post):
|
* gst/gst.c: (init_post):
|
||||||
|
|
|
@ -197,7 +197,6 @@ GST_PLUGIN_EXPORT GstPluginDesc gst_plugin_desc = { \
|
||||||
GST_PADDING_INIT \
|
GST_PADDING_INIT \
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifndef GST_DISABLE_DEPRECATED
|
|
||||||
/**
|
/**
|
||||||
* GST_PLUGIN_DEFINE_STATIC:
|
* GST_PLUGIN_DEFINE_STATIC:
|
||||||
* @major: major version number of the gstreamer-core that plugin was compiled for
|
* @major: major version number of the gstreamer-core that plugin was compiled for
|
||||||
|
@ -218,6 +217,9 @@ GST_PLUGIN_EXPORT GstPluginDesc gst_plugin_desc = { \
|
||||||
* deprecated because it uses constructors, which is a compiler feature not
|
* deprecated because it uses constructors, which is a compiler feature not
|
||||||
* available on all compilers.
|
* available on all compilers.
|
||||||
*/
|
*/
|
||||||
|
/* We don't have deprecation guards here on purpose, it's enough to have
|
||||||
|
* deprecation guards around _gst_plugin_register_static(), and will result in
|
||||||
|
* much better error messages when compiling with -DGST_DISABLE_DEPRECATED */
|
||||||
#define GST_PLUGIN_DEFINE_STATIC(major,minor,name,description,init,version,license,package,origin) \
|
#define GST_PLUGIN_DEFINE_STATIC(major,minor,name,description,init,version,license,package,origin) \
|
||||||
static void GST_GNUC_CONSTRUCTOR \
|
static void GST_GNUC_CONSTRUCTOR \
|
||||||
_gst_plugin_static_init__ ##init (void) \
|
_gst_plugin_static_init__ ##init (void) \
|
||||||
|
@ -237,7 +239,6 @@ _gst_plugin_static_init__ ##init (void) \
|
||||||
}; \
|
}; \
|
||||||
_gst_plugin_register_static (&plugin_desc_); \
|
_gst_plugin_register_static (&plugin_desc_); \
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GST_LICENSE_UNKNOWN:
|
* GST_LICENSE_UNKNOWN:
|
||||||
|
|
Loading…
Reference in a new issue