summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-02-12 22:25:50 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-02-12 22:25:50 +0000
commit0c152f0504821df81edc4f702f5e5231dbe5b323 (patch)
tree05f156a7e733e3c2f6fd87021f8199b59a0bada5 /configure.in
parent8402e66c0a165c5d4020b4673b3aac38843d5a8a (diff)
downloadpango-0c152f0504821df81edc4f702f5e5231dbe5b323.tar.gz
Simplify 'test x$have_x != xfalse' to $have_x.
Wed Feb 12 17:20:15 2003 Owen Taylor <otaylor@redhat.com> * configure.in: Simplify 'test x$have_x != xfalse' to $have_x.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index aa9173a7..86ef0ae4 100644
--- a/configure.in
+++ b/configure.in
@@ -180,7 +180,7 @@ AM_CONDITIONAL(HAVE_FREETYPE, $have_freetype && $have_fontconfig)
#
have_xft=false
-if test "x$have_x" != "xfalse" ; then
+if $have_x ; then
PKG_CHECK_MODULES(XFT, xft >= 2.0.0, have_xft=true, :)
fi