From b5a7b3a004de7e0b237811dbf8c4feb025a09333 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Thu, 4 Jun 2009 11:03:34 +0100 Subject: [PATCH] [configure] Require pango 1.20 instead of 1.18 Clutter now calls pango_layout_set_height which is only available since Pango 1.20. --- README | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index e28a467f3..7c0b3af68 100644 --- a/README +++ b/README @@ -7,7 +7,7 @@ rich and animated graphical user interfaces. Clutter currently requires: * GLib >= 2.14.0 - * PangoCairo >= 1.18 + * PangoCairo >= 1.20 * OpenGL >= 1.4, OpenGL ES 1.1 or OpenGL ES 2.0 * GLX, SDL, WGL or an EGL Implementation diff --git a/configure.ac b/configure.ac index 9c421a941..dc09a7cdc 100644 --- a/configure.ac +++ b/configure.ac @@ -539,7 +539,7 @@ fi AC_SUBST(JSON_PREFIX) AM_CONDITIONAL(LOCAL_JSON_GLIB, test "x$have_json" = "xno") -CLUTTER_REQUIRES="cairo >= 1.4 pangocairo >= 1.18 gobject-2.0 >= 2.16 gthread-2.0 gmodule-no-export-2.0 $BACKEND_PC_FILES $JSON_GLIB_PC" +CLUTTER_REQUIRES="cairo >= 1.4 pangocairo >= 1.20 gobject-2.0 >= 2.16 gthread-2.0 gmodule-no-export-2.0 $BACKEND_PC_FILES $JSON_GLIB_PC" if test "x$imagebackend" = "xgdk-pixbuf"; then CLUTTER_REQUIRES="$CLUTTER_REQUIRES gdk-pixbuf-2.0"