summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-18 21:11:53 +0100
committerwm4 <wm4@nowhere>2015-02-18 21:13:11 +0100
commitc3143852802450707c8560ddf2786ff71bd7430a (patch)
tree001fd2b0b64a15a2d56fd53db2159e20fb976d1e
parent79006ef66d10fb356782eed6d3b3cc103ae2ba4b (diff)
downloadmpv-c3143852802450707c8560ddf2786ff71bd7430a.tar.bz2
mpv-c3143852802450707c8560ddf2786ff71bd7430a.tar.xz
build: require recent libass
Nobody should use an older version. It's perfectly backwards and forward compatible, so distros have no excuse not to package a recent version. Older versions lack tons of bug fixes (some of them crashing bugs, and potentially security relevant). With love to Debian, which is still on 0.10.2.
-rw-r--r--README.md2
-rw-r--r--wscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8f50de7e65..067eb7a3e9 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ Essential dependencies (incomplete list):
At least FFmpeg 2.1.4 or Libav 10 is required.
- zlib
- iconv (normally provided by the system libc)
-- libass
+- libass (OSD, OSC, text subtitles)
- Lua (optional, required for the OSC pseudo-GUI and youtube-dl integration)
- libjpeg (optional, used for screenshots only)
- Enca (optional, for subtitle charset detection)
diff --git a/wscript b/wscript
index b613d57e95..d3b57701b1 100644
--- a/wscript
+++ b/wscript
@@ -272,7 +272,7 @@ iconv support use --disable-iconv.",
}, {
'name': '--libass',
'desc': 'SSA/ASS support',
- 'func': check_pkg_config('libass'),
+ 'func': check_pkg_config('libass', '>= 0.12.1'),
'req': True,
'fmsg': "Unable to find development files for libass. Aborting. \
If you really mean to compile without libass support use --disable-libass."