summaryrefslogtreecommitdiff
path: root/Build/source/m4
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2013-12-03 14:14:25 +0000
committerKhaled Hosny <khaledhosny@eglug.org>2013-12-03 14:14:25 +0000
commite12d9594464166e09a2127166d663cedbcd9a050 (patch)
treed62fab312f2262e33eb1a3ae60b7c35a096cbc2d /Build/source/m4
parent6431033336f36206cc9b0b385bc2b8da9ef16556 (diff)
Fix building with system HarfBuzz
We need harfbuzz-icu, since it was split from the main harfbuzz module. git-svn-id: svn://tug.org/texlive/trunk@32307 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/m4')
-rw-r--r--Build/source/m4/kpse-harfbuzz-flags.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/m4/kpse-harfbuzz-flags.m4 b/Build/source/m4/kpse-harfbuzz-flags.m4
index b85a904b92d..dca4a2dd5e3 100644
--- a/Build/source/m4/kpse-harfbuzz-flags.m4
+++ b/Build/source/m4/kpse-harfbuzz-flags.m4
@@ -33,10 +33,10 @@ AC_DEFUN([KPSE_HARFBUZZ_OPTIONS],
# --------------------------
AC_DEFUN([KPSE_HARFBUZZ_SYSTEM_FLAGS],
[AC_REQUIRE([_KPSE_CHECK_PKG_CONFIG])[]dnl
-if $PKG_CONFIG harfbuzz --atleast-version=0.9.10; then
- HARFBUZZ_INCLUDES=`$PKG_CONFIG harfbuzz --cflags`
- HARFBUZZ_LIBS=`$PKG_CONFIG harfbuzz --libs`
+if $PKG_CONFIG harfbuzz-icu; then
+ HARFBUZZ_INCLUDES=`$PKG_CONFIG harfbuzz-icu --cflags`
+ HARFBUZZ_LIBS=`$PKG_CONFIG harfbuzz-icu --libs`
elif test "x$need_harfbuzz:$with_system_harfbuzz" = xyes:yes; then
- AC_MSG_ERROR([did not find harfbuzz-0.9.10 or better])
+ AC_MSG_ERROR([did not find harfbuzz-icu])
fi
]) # KPSE_HARFBUZZ_SYSTEM_FLAGS