[gstreamer-bugs] [Bug 617145] Compile mplex element with with --enable-runtime-pseudo-reloc-v2 on Windows
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Tue May 11 17:27:34 PDT 2010
https://bugzilla.gnome.org/show_bug.cgi?id=617145
GStreamer | gst-plugins-bad | git
Tim-Philipp Müller <t.i.m> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEEDINFO
--- Comment #6 from Tim-Philipp Müller <t.i.m at zen.co.uk> 2010-05-12 00:27:31 UTC ---
I think I prefer the non-light version. Things should just work out of the box,
so we should detect when this is needed and add it. The compiler/version
detection seems a bit convoluted though, couldn't we just do something like:
AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]], [[
#if !defined(__GNUC__) || !defined(__MINGW32__) || (__GNUC__ < 4) || (__GNUC__
== 4 && __GNUC_MINOR__ < 5)
#error "Not MingW GCC or older than version 4.5"
#endif
]])], [
EXTRA_MPLEX_LDFLAGS="-Wl,--enable-runtime-pseudo-reloc-v2"
], [
EXTRA_MPLEX_LDFLAGS=""
])
AC_LANG_POP([C++])
?
Also, could you by any chance give us a link or two that points to some
background about why this is needed exactly?
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the Gstreamer-bugs
mailing list