summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2011-10-06 09:06:13 -0400
committerDan Winship <danw@gnome.org>2011-10-06 09:08:46 -0400
commit214ff779329703bbe150a1838b356c0e0efc7cbe (patch)
tree2490965a10c2d7edbfee4eee84acb611b21e473a
parenta1078067cf007e46a38c6f441496a25f8ad36acd (diff)
downloadlibsoup-214ff779329703bbe150a1838b356c0e0efc7cbe.tar.gz
configure: bump glib requirement to 2.30
It *builds* fine with older versions, but there are important bugfixes in glib since then, so force people to use something recent.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index abc0b4c8..c7fc7a7d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -72,9 +72,9 @@ dnl ***********************
dnl *** Checks for glib ***
dnl ***********************
-AM_PATH_GLIB_2_0(2.27.5,,,gobject gthread gio)
+AM_PATH_GLIB_2_0(2.30.0,,,gobject gthread gio)
if test "$GLIB_LIBS" = ""; then
- AC_MSG_ERROR(GLIB 2.27.5 or later is required to build libsoup)
+ AC_MSG_ERROR(GLIB 2.30.0 or later is required to build libsoup)
fi
GLIB_CFLAGS="$GLIB_CFLAGS -DG_DISABLE_SINGLE_INCLUDES"