diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-04-15 21:52:09 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-04-15 21:52:09 +0000 |
commit | a23bba922e7fea28a9984e1a3a0abc4cb1b4c1aa (patch) | |
tree | 665cc11e63d043ca9428e1371477bc31798b791d /configure.in | |
parent | bf7d6c918a7f031de6c9dd5669bb57b7c30ba60b (diff) | |
download | pango-a23bba922e7fea28a9984e1a3a0abc4cb1b4c1aa.tar.gz |
Don't look for Xft unless we found FreeType. (#109753)
Tue Apr 15 05:47:35 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: Don't look for Xft unless we found
FreeType. (#109753)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 73b25f7b..2cc16693 100644 --- a/configure.in +++ b/configure.in @@ -222,7 +222,7 @@ AM_CONDITIONAL(HAVE_FREETYPE, $have_freetype && $have_fontconfig) # have_xft=false -if $have_x ; then +if $have_x && $have_freetype ; then PKG_CHECK_MODULES(XFT, xft >= 2.0.0, have_xft=true, :) fi |