summaryrefslogtreecommitdiff
path: root/ext/ttml
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@osg.samsung.com>2016-11-03 17:34:54 +0000
committerLuis de Bethencourt <luisbg@osg.samsung.com>2016-11-03 17:44:33 +0000
commit81d1b207ad1303991c3dc645de3b399dcd8573f3 (patch)
tree201985f76ed2f96494a205e5a4a6c080afaf3a6f /ext/ttml
parent99721ddffa10375f162caa47fd8019dbcd9baef9 (diff)
downloadgstreamer-plugins-bad-81d1b207ad1303991c3dc645de3b399dcd8573f3.tar.gz
ttml: bump needed libxml2 version
ttml was recently added but it won't compile unless libxml2 version 2.9.2 or later is available. In that version the first parameter of xmlGetProp switched to being a const. In previous versions the compiler complains about passing a const value to a non const argument.
Diffstat (limited to 'ext/ttml')
-rw-r--r--ext/ttml/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ttml/meson.build b/ext/ttml/meson.build
index e7e8398f0..5657ffb60 100644
--- a/ext/ttml/meson.build
+++ b/ext/ttml/meson.build
@@ -1,4 +1,4 @@
-libxml_dep = dependency('libxml-2.0', required : false)
+libxml_dep = dependency('libxml-2.0', version : '>= 2.9.2', required : false)
pango_dep = dependency('pango', required : false)
cairo_dep = dependency('cairo', required : false)
pangocairo_dep = dependency('pangocairo', required : false)