require glib 2.15.3, not 2.15.0, since AM_PATH_GLIB_2_0 didn't know about
authorDan Winship <danw@src.gnome.org>
Fri, 18 Jan 2008 14:55:31 +0000 (14:55 +0000)
committerDan Winship <danw@src.gnome.org>
Fri, 18 Jan 2008 14:55:31 +0000 (14:55 +0000)
* configure.in: require glib 2.15.3, not 2.15.0, since
AM_PATH_GLIB_2_0 didn't know about gio until post-2.15.2. Pointed
out by Matthew Barnes, #510216.

svn path=/trunk/; revision=1049

ChangeLog
configure.in

index e41c718..be20442 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2008-01-18  Dan Winship  <danw@gnome.org>
 
+       * configure.in: require glib 2.15.3, not 2.15.0, since
+       AM_PATH_GLIB_2_0 didn't know about gio until post-2.15.2. Pointed
+       out by Matthew Barnes, #510216.
+
+2008-01-18  Dan Winship  <danw@gnome.org>
+
        * libsoup/soup-auth-domain.c
        (soup_auth_domain_set_generic_auth_callback):
        (soup_auth_domain_check_password): add a new generic auth callback
index a0453b6..4b7e0e7 100644 (file)
@@ -73,9 +73,9 @@ dnl ***********************
 dnl *** Checks for glib ***
 dnl ***********************
 
-AM_PATH_GLIB_2_0(2.15.0,,,gobject gthread gio)
+AM_PATH_GLIB_2_0(2.15.3,,,gobject gthread gio)
 if test "$GLIB_LIBS" = ""; then
-   AC_MSG_ERROR(GLIB 2.15.0 or later is required to build libsoup)
+   AC_MSG_ERROR(GLIB 2.15.3 or later is required to build libsoup)
 fi
 
 PKG_CHECK_MODULES(XML, libxml-2.0)