[vlc-devel] [PATCH] configure: require libass 0.13.0

Olaf Hering olaf at aepfle.de
Mon Dec 11 10:35:50 CET 2017


Since commit 7d0d4a9ec6 ("libass: fix subtitles for iOS") vlc.git#master
fails to compile because ASS_FONTPROVIDER_AUTODETECT is not available.
This enum appeared in libass.git commit bc743feb0 ("fontselect: expose a
fontprovider selection API"), which is included in libass-0.13.0.

Bump the libass pkgconfig version.

Signed-off-by: Olaf Hering <olaf at aepfle.de>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 1e877069f3..02d50ebded 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2912,7 +2912,7 @@ dnl
 AC_ARG_ENABLE(libass,
   [  --enable-libass         Subtitle support using libass (default enabled)])
 AS_IF( [test "${enable_libass}" != "no"], [
-  PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
+  PKG_CHECK_MODULES(LIBASS, [libass >= 0.13.0],
       [
         VLC_ADD_PLUGIN([libass])
 


More information about the vlc-devel mailing list