[gstreamer-bugs] [Bug 393796] 21 of 44 tests failed w/ HP-UX 11.11 & native compiler
GStreamer (bugzilla.gnome.org)
bugzilla-daemon at bugzilla.gnome.org
Fri Jan 12 07:02:16 PST 2007
Do not reply to this via email (we are currently unable to handle email
responses and they get discarded). You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=393796
GStreamer | gstreamer (core) | Ver: 0.10.11
Ian Munro changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEEDINFO |UNCONFIRMED
------- Comment #8 from Ian Munro 2007-01-12 15:00 UTC -------
The idiom is as follows:
#pragma INIT "my_init"
void my_init() { ... do some initializations ... }
But if I replace gstplugin.h
#define
GST_PLUGIN_DEFINE_STATIC(major,minor,name,description,init,version,license,package,origin)
\
static void GST_GNUC_CONSTRUCTOR \
_gst_plugin_static_init__ ##init (void) \
with
#define
GST_PLUGIN_DEFINE_STATIC(major,minor,name,description,init,version,license,package,origin)
\
_pragma ("INIT "\"_gst_plugin_static_init__ ##init\"") \
static void _gst_plugin_static_init__ ##init () \
("INIT "\"_gst_plugin_static_init__ ##init\"") is not expanded and the compile
fails.
Any ideas?
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
More information about the Gstreamer-bugs
mailing list