summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Bachmann <manuel.bachmann@iot.bzh>2015-10-03 16:48:46 +0200
committerMatthias Clasen <mclasen@redhat.com>2015-10-03 23:40:15 -0400
commite9fe4746f777772655011a7fedf93d420bd16c66 (patch)
tree931e8fa8c1a8b5331fa4c9fd7df74b1f63b8712e
parent5c3882bbe994a1f42e12aeaa259b90ae3c55bef9 (diff)
downloadpango-e9fe4746f777772655011a7fedf93d420bd16c66.tar.gz
Build: Require HarfBuzz 0.9.30
Pango uses the HB_VERSION_ATLEAST macro, but it was only defined in HarfBuzz 0.9.30. Thus, compiling with an older version fails. Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh> https://bugzilla.gnome.org/show_bug.cgi?id=756015
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e72e0022..491d6e6d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -208,7 +208,7 @@ AM_CONDITIONAL(CROSS_COMPILING, [test $cross_compiling = yes])
# Checks for HarfBuzz
#
have_harfbuzz=false
-PKG_CHECK_MODULES(HARFBUZZ, harfbuzz >= 0.9.9, have_harfbuzz=true, :)
+PKG_CHECK_MODULES(HARFBUZZ, harfbuzz >= 0.9.30, have_harfbuzz=true, :)
AM_CONDITIONAL(HAVE_HARFBUZZ, $have_harfbuzz)
#