summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOneric <oneric@oneric.stub>2021-12-15 18:10:20 +0100
committerOneric <oneric@oneric.stub>2021-12-15 18:10:20 +0100
commit6d4d51db96858f37570d169b18abc68f875c657e (patch)
tree4c4632509293d4f2fd31bef209b72f0024353d3e
parent526bc7090e1f3c6261ca6f06c5ca4eefa5ff52b3 (diff)
downloadlibass-6d4d51db96858f37570d169b18abc68f875c657e.tar.bz2
libass-6d4d51db96858f37570d169b18abc68f875c657e.tar.xz
configure: fix minimum freetype version
We use FT_Face_GetCharVariantIndex which is only available since external version 2.3.6 (== internal verion 9.17.3), which is higher than the current previous minimum of internal 9.10.3 == external 2.2.1 This fixes an oversight in commit d7544850775344879dd3049046c5b7ce2d52d3b3
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 157c252..c38333f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,7 @@ AC_SEARCH_LIBS([lrint], [m], [
pkg_libs="$LIBS"
## Check for libraries via pkg-config and add to pkg_requires as needed
-PKG_CHECK_MODULES([FREETYPE], [freetype2 >= 9.10.3], [
+PKG_CHECK_MODULES([FREETYPE], [freetype2 >= 9.17.3], [
pkg_requires="freetype2 >= 9.10.3"
CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
LIBS="$LIBS $FREETYPE_LIBS"