summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-08-01 14:43:56 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-08-01 14:43:56 +0000
commite01c889e0b92b93afc1ec81e0cf13928bb1b9d6c (patch)
tree52b363c6cb017fdc310dfc4f4bc3be5fe7bae3fa /configure.in
parent06d35ed065ed5149b33cd0f8b598b6c6f24e02ae (diff)
downloadpango-e01c889e0b92b93afc1ec81e0cf13928bb1b9d6c.tar.gz
Fix check for having any backend HAVE_XFT => have_xft, etc. (Problem
Thu Aug 1 10:41:26 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Fix check for having any backend HAVE_XFT => have_xft, etc. (Problem reported by Andreas J Guelzow)
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 4d38ea90..6b07e503 100644
--- a/configure.in
+++ b/configure.in
@@ -239,7 +239,7 @@ AM_CONDITIONAL(HAVE_WIN32, $have_win32)
# a new Pango backend outside of Pango, you are up to sending the necessary
# patch to fix that rule. :-)
#
-if $HAVE_FREETYPE || $HAVE_X || $HAVE_XFT || $HAVE_WIN32 ; then : ; else
+if $have_freetype || $have_x || $have_xft || $have_win32 ; then : ; else
AC_MSG_ERROR([*** Didn't find any of FreeType, X11, or Win32.
*** Must have at least one backend to build Pango.])
fi