summaryrefslogtreecommitdiff
path: root/configure.ac
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 /configure.ac
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 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index acbe9223e..3678f331b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2459,7 +2459,7 @@ AG_GST_CHECK_FEATURE(DTLS, [DTLS plugin], dtls, [
dnl *** ttml ***
translit(dnm, m, l) AM_CONDITIONAL(USE_TTML, true)
AG_GST_CHECK_FEATURE(TTML, [TTML plugin], ttml, [
- PKG_CHECK_MODULES(TTML, [ libxml-2.0 pango cairo pangocairo ], [
+ PKG_CHECK_MODULES(TTML, [ libxml-2.0 >= 2.9.2 pango cairo pangocairo ], [
HAVE_TTML="yes"
], [
HAVE_TTML="no"