diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-11-03 15:12:25 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-11-03 20:28:51 -0500 |
commit | 1a9072ec14c2d57a53c90746e182884453e08957 (patch) | |
tree | 4d9d768bd62392093018837994be2657979fa60c /configure.in | |
parent | 8e9d153733cac83bfc8ce0c068d2af455d0e9a76 (diff) | |
download | pango-1a9072ec14c2d57a53c90746e182884453e08957.tar.gz |
Use external harfbuzz shared library from harfbuzz-ng
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in index ba173468..b3fb74b4 100644 --- a/configure.in +++ b/configure.in @@ -366,7 +366,7 @@ have_cairo_atsui=false cairo_required=1.7.6 PKG_CHECK_MODULES(CAIRO, cairo >= $cairo_required, have_cairo=true, AC_MSG_RESULT([no])) - + if $have_cairo ; then pango_save_libs=$LIBS LIBS="$LIBS $CAIRO_LIBS" @@ -448,6 +448,11 @@ AM_CONDITIONAL(HAVE_CAIRO_WIN32, $have_cairo_win32) AM_CONDITIONAL(HAVE_CAIRO_FREETYPE, $have_cairo_freetype) AM_CONDITIONAL(HAVE_CAIRO_ATSUI, $have_cairo_atsui) + +harfbuzz_required=0.1 +PKG_CHECK_MODULES(HARFBUZZ, harfbuzz >= $harfbuzz_required, have_harfbuzz=true, have_harfbuzz=false) +AM_CONDITIONAL(HAVE_HARFBUZZ, $have_harfbuzz) + # # We must have some backend defined, in order for the pango-querymodules # rule in pango/Makefile.am to work correctly. If you are up to writing @@ -994,7 +999,6 @@ AC_CONFIG_FILES([ Makefile pango/Makefile pango/mini-fribidi/Makefile -pango/opentype/Makefile pango/pango.rc pango/pangoft2.rc pango/pangowin32.rc |