summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-06-26 19:13:28 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-06-26 19:13:28 +0000
commit9c41176796502c33fec770dc5952bdcdc9db3783 (patch)
treee2c561525c5cdbe96aae959634e2cb3feceb3b8e /configure.in
parentac5989fb0fec8273fd4955611b6efb0317d138c1 (diff)
downloadpango-9c41176796502c33fec770dc5952bdcdc9db3783.tar.gz
Couple of bug fixes for the last change.
Tue Jun 26 15:11:30 2001 Owen Taylor <otaylor@redhat.com> * pango/pango-context.c (font_set_get_font) pango/pango-context.c (add_engines): Couple of bug fixes for the last change. * configure.in: Abort out when AM_PATH_GLIB fails.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 21a5005e..c701acd0 100644
--- a/configure.in
+++ b/configure.in
@@ -119,7 +119,13 @@ AM_CONDITIONAL(HAVE_XFT, $have_xft)
#
# Checks for GLib
#
-AM_PATH_GLIB_2_0(1.3.5,,,gobject gmodule)
+GLIB_REQUIRED_VERSION=1.3.6
+
+AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION, :,
+ AC_MSG_ERROR([
+*** Glib $GLIB_REQUIRED_VERSION or better is required. The latest version of
+*** Glib is always available from ftp://ftp.gtk.org/.]),
+ gobject gmodule)
CFLAGS="$CFLAGS $GLIB_CFLAGS"