Revert "meson: Link to objects instea of static helper library"

This reverts commit b19de413b9.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1194>
This commit is contained in:
Xavier Claessens 2021-10-19 10:24:42 -04:00 committed by GStreamer Marge Bot
parent eb072600a6
commit 2a10311ef5

View file

@ -237,7 +237,6 @@ gst_incdirs = [configinc]
gst_gen_sources = [gstenum_h]
libgst = library('gstreamer-1.0', gst_sources,
gstenum_h, gstenum_c, gst_parse_sources, gst_registry_sources,
objects : printf_lib.extract_all_objects(),
version : libversion,
soversion : soversion,
darwin_versions : osxversion,
@ -245,6 +244,7 @@ libgst = library('gstreamer-1.0', gst_sources,
include_directories : [configinc,
# HACK, change include paths in .y and .l in final version.
include_directories('parse')],
link_with : printf_lib,
install : true,
dependencies : [gobject_dep, gmodule_dep, glib_dep, mathlib, dl_dep] + backtrace_deps
+ platform_deps,