summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-02-12 22:26:01 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-02-12 22:26:01 +0000
commit8826f9a8f45f11b716992936f5deb9e9b52f6702 (patch)
treef1318f3ec584620d36169925ef42f7dbb16653d9 /configure.in
parent6125bdbebc6c6bafe79e3dc9f0c59b1cf8e43978 (diff)
downloadpango-8826f9a8f45f11b716992936f5deb9e9b52f6702.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 c7e18bd8..65ef7692 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