diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2013-01-03 09:48:47 +0000 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2013-01-03 09:48:47 +0000 |
commit | 4ed655f2e4116814f3b386f8861fc1bec1e37d51 (patch) | |
tree | a4a3fe501936b33e44bdbd8e9d712a3782ab1b3e /Build/source | |
parent | 56cfeda664bae608ccd21e46d36e867647ec770c (diff) |
Check for harfbuzz >= 0.9.10 when using system lib
git-svn-id: svn://tug.org/texlive/trunk@28709 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/m4/kpse-harfbuzz-flags.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/m4/kpse-harfbuzz-flags.m4 b/Build/source/m4/kpse-harfbuzz-flags.m4 index a6026fec163..b51690d8ee6 100644 --- a/Build/source/m4/kpse-harfbuzz-flags.m4 +++ b/Build/source/m4/kpse-harfbuzz-flags.m4 @@ -34,10 +34,10 @@ AC_DEFUN([KPSE_HARFBUZZ_OPTIONS], # -------------------------- AC_DEFUN([KPSE_HARFBUZZ_SYSTEM_FLAGS], [AC_REQUIRE([_KPSE_CHECK_PKG_CONFIG])[]dnl -if $PKG_CONFIG harfbuzz; then +if $PKG_CONFIG harfbuzz --atleast-version=0.9.10; then HARFBUZZ_INCLUDES=`$PKG_CONFIG harfbuzz --cflags` HARFBUZZ_LIBS=`$PKG_CONFIG harfbuzz --libs` elif test "x$need_harfbuzz:$with_system_harfbuzz" = xyes:yes; then - AC_MSG_ERROR([did not find harfbuzz]) + AC_MSG_ERROR([did not find harfbuzz-0.9.10 or better]) fi ]) # KPSE_HARFBUZZ_SYSTEM_FLAGS |