summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@blackbox>2012-10-16 19:57:37 +0200
committerGrigori Goronzy <greg@blackbox>2012-10-16 19:57:37 +0200
commitbf8a657f3294e694b4f87231db8766be258dde95 (patch)
treee184da7219611ae720c5333ea7c7b74b218f0150
parentc207000c7cdde335679b53a8cffc22bef61ffa45 (diff)
downloadlibass-bf8a657f3294e694b4f87231db8766be258dde95.tar.bz2
libass-bf8a657f3294e694b4f87231db8766be258dde95.tar.xz
Bump minimum Harfbuzz version to 0.9.5
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index a9f9071..8e1a436 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,7 @@ PKG_CHECK_MODULES([FONTCONFIG], fontconfig >= 2.4.2, [
fi
if test x$enable_harfbuzz != xno; then
-PKG_CHECK_MODULES([HARFBUZZ], harfbuzz >= 0.7.0, [
+PKG_CHECK_MODULES([HARFBUZZ], harfbuzz >= 0.9.5, [
CFLAGS="$CFLAGS $HARFBUZZ_CFLAGS"
LIBS="$LIBS $HARFBUZZ_LIBS"
AC_DEFINE(CONFIG_HARFBUZZ, 1, [found harfbuzz-ng via pkg-config])
@@ -103,7 +103,7 @@ if test x$fontconfig = xtrue; then
pkg_requires="fontconfig >= 2.2.0, ${pkg_requires}"
fi
if test x$harfbuzz = xtrue; then
- pkg_requires="harfbuzz >= 0.7.0, ${pkg_requires}"
+ pkg_requires="harfbuzz >= 0.9.5, ${pkg_requires}"
fi
AC_SUBST([PKG_LIBS_DEFAULT], [$(test x$enable_shared = xno && echo ${pkg_libs})])