From: Dan Winship Date: Fri, 18 Jan 2008 14:55:31 +0000 (+0000) Subject: require glib 2.15.3, not 2.15.0, since AM_PATH_GLIB_2_0 didn't know about X-Git-Tag: LIBSOUP_2_3_0_1~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a08f944f7de635a8153cf33874ee0fa5ec48ec02;p=platform%2Fupstream%2Flibsoup.git require glib 2.15.3, not 2.15.0, since AM_PATH_GLIB_2_0 didn't know about * 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 --- diff --git a/ChangeLog b/ChangeLog index e41c718..be20442 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2008-01-18 Dan Winship + * 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 + * libsoup/soup-auth-domain.c (soup_auth_domain_set_generic_auth_callback): (soup_auth_domain_check_password): add a new generic auth callback diff --git a/configure.in b/configure.in index a0453b6..4b7e0e7 100644 --- a/configure.in +++ b/configure.in @@ -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)