diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 5 | ||||
-rw-r--r-- | configure.in | 2 |
6 files changed, 26 insertions, 1 deletions
@@ -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 |