summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-08-24 09:41:08 -0300
committerThibault Saunier <tsaunier@gnome.org>2016-08-25 15:17:17 -0300
commit50473d77cc3e4c0e333978cede3bec10d9de1c3a (patch)
treef18df65870b47426445f00ba93a669c12d89d2af /gst
parent59b3e5944e5e573cf4e3e5607a7019f54f8d5eb6 (diff)
downloadgstreamer-plugins-bad-50473d77cc3e4c0e333978cede3bec10d9de1c3a.tar.gz
meson: Make mpegts lib build when using subprojects
The headers passed as parametter are relative to the build dir basically "../subproject/gst-plugins-bad/gst-libs/gst/mpegts/XXX.h" but that does not match what is needed at build time when building as subproject, also we always add current dir as include_dir so we are safe including directly. And link mpegtsdemux against the 'math' library as it is needed.
Diffstat (limited to 'gst')
-rw-r--r--gst/mpegtsdemux/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegtsdemux/meson.build b/gst/mpegtsdemux/meson.build
index 202dba84c..4cd448c65 100644
--- a/gst/mpegtsdemux/meson.build
+++ b/gst/mpegtsdemux/meson.build
@@ -12,7 +12,7 @@ gstmpegtsdemux = library('gstmpegtsdemux',
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
include_directories : [configinc, libsinc],
dependencies : [gstcodecparsers_dep, gstmpegts_dep, gsttag_dep,
- gstpbutils_dep, gstaudio_dep, gstbase_dep],
+ gstpbutils_dep, gstaudio_dep, gstbase_dep, mathlib],
install : true,
install_dir : plugins_install_dir,
)