summaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b2679ae9..40712544 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-03 Alberto Ruiz <aruiz@gnome.org>
+
+ Bug 550659 – configure.in ignores a win32 backend only scenario
+
+ * configure.in: Added $have_win32 check
+
2008-08-28 Behdad Esfahbod <behdad@gnome.org>
Bug 549758 – Swedish font sample text could use punctuation
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