[Bug 768456] Error compiling Android project after gstreamer upgrade to 1.8.2
GStreamer (GNOME Bugzilla)
bugzilla at gnome.org
Tue Jul 5 18:53:08 UTC 2016
https://bugzilla.gnome.org/show_bug.cgi?id=768456
--- Comment #2 from stic <stic at free.fr> ---
Escaping more did not change the problem.
BUT I replaced:
# Generate the plugins' declaration strings
GSTREAMER_PLUGINS_DECLARE := $(foreach plugin, $(GSTREAMER_PLUGINS), \
GST_PLUGIN_STATIC_DECLARE($(plugin));\n)
# Generate the plugins' registration strings
GSTREAMER_PLUGINS_REGISTER := $(foreach plugin, $(GSTREAMER_PLUGINS), \
GST_PLUGIN_STATIC_REGISTER($(plugin));\n)
with:
# Generate the plugins' declaration strings
GSTREAMER_PLUGINS_DECLARE := $(foreach plugin, $(GSTREAMER_PLUGINS), \
GST_PLUGIN_STATIC_DECLARE($(plugin)); \
)
# Generate the plugins' registration strings
GSTREAMER_PLUGINS_REGISTER := $(foreach plugin, $(GSTREAMER_PLUGINS), \
GST_PLUGIN_STATIC_REGISTER($(plugin)); \
)
And now everything is fine.
Thanks for your help.
--
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