summaryrefslogtreecommitdiff
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
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.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--ChangeLog.pre-1-45
-rw-r--r--ChangeLog.pre-1-65
-rw-r--r--ChangeLog.pre-1-85
-rw-r--r--configure.in2
6 files changed, 26 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9adf72ec..014c405b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Feb 12 17:20:15 2003 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Simplify 'test x$have_x != xfalse'
+ to $have_x.
+
Wed Feb 12 17:17:12 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: If --without-x is specified, don't
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 9adf72ec..014c405b 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,8 @@
+Wed Feb 12 17:20:15 2003 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Simplify 'test x$have_x != xfalse'
+ to $have_x.
+
Wed Feb 12 17:17:12 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: If --without-x is specified, don't
diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4
index 9adf72ec..014c405b 100644
--- a/ChangeLog.pre-1-4
+++ b/ChangeLog.pre-1-4
@@ -1,3 +1,8 @@
+Wed Feb 12 17:20:15 2003 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Simplify 'test x$have_x != xfalse'
+ to $have_x.
+
Wed Feb 12 17:17:12 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: If --without-x is specified, don't
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index 9adf72ec..014c405b 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,8 @@
+Wed Feb 12 17:20:15 2003 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Simplify 'test x$have_x != xfalse'
+ to $have_x.
+
Wed Feb 12 17:17:12 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: If --without-x is specified, don't
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index 9adf72ec..014c405b 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,8 @@
+Wed Feb 12 17:20:15 2003 Owen Taylor <otaylor@redhat.com>
+
+ * configure.in: Simplify 'test x$have_x != xfalse'
+ to $have_x.
+
Wed Feb 12 17:17:12 2003 Owen Taylor <otaylor@redhat.com>
* configure.in: If --without-x is specified, don't
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