From bd49be19699f39a47af7ee1c3987ef86c973fe36 Mon Sep 17 00:00:00 2001 From: Alberto Ruiz Date: Wed, 3 Sep 2008 14:26:57 +0000 Subject: =?UTF-8?q?Bug=20550659=20=E2=80=93=20configure.in=20ignores=20a?= =?UTF-8?q?=20win32=20backend=20only=20scenario?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2008-09-03 Alberto Ruiz Bug 550659 – configure.in ignores a win32 backend only scenario * configure.in: Added $have_win32 check svn path=/trunk/; revision=2713 --- ChangeLog | 6 ++++++ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b2679ae9..40712544 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-03 Alberto Ruiz + + Bug 550659 – configure.in ignores a win32 backend only scenario + + * configure.in: Added $have_win32 check + 2008-08-28 Behdad Esfahbod 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 -- cgit v1.2.1