diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-11-03 17:34:54 +0000 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-11-03 17:44:33 +0000 |
commit | 81d1b207ad1303991c3dc645de3b399dcd8573f3 (patch) | |
tree | 201985f76ed2f96494a205e5a4a6c080afaf3a6f /ext/ttml | |
parent | 99721ddffa10375f162caa47fd8019dbcd9baef9 (diff) | |
download | gstreamer-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.build | 2 |
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) |