summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 18aadb7d..a7783335 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 18aadb7d..a7783335 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 18aadb7d..a7783335 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 18aadb7d..a7783335 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 18aadb7d..a7783335 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 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