summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@gnome.org>2008-09-03 14:26:57 +0000
committerAlberto Ruiz <aruiz@src.gnome.org>2008-09-03 14:26:57 +0000
commitbd49be19699f39a47af7ee1c3987ef86c973fe36 (patch)
tree9c071c423062e4afe454911aeb83a984abaf4023 /configure.in
parente9ca68fd4e730f611e9795c8682bb0b0393b8c2b (diff)
downloadpango-bd49be19699f39a47af7ee1c3987ef86c973fe36.tar.gz
Bug 550659 – configure.in ignores a win32 backend only scenario
2008-09-03 Alberto Ruiz <aruiz@gnome.org> Bug 550659 – configure.in ignores a win32 backend only scenario * configure.in: Added $have_win32 check svn path=/trunk/; revision=2713
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 5c05e3a5..f25e50bd 100644
--- a/configure.in
+++ b/configure.in
@@ -424,7 +424,7 @@ AM_CONDITIONAL(HAVE_CAIRO_ATSUI, $have_cairo_atsui)
# 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_cairo; then : ; else
+if $have_freetype || $have_x || $have_xft || $have_cairo || $have_win32 ; then : ; else
AC_MSG_ERROR([*** Could not enable any of FreeType, X11, Cairo, or Win32 backends.
*** Must have at least one backend to build Pango.])
fi