diff options
author | Dan Winship <danw@gnome.org> | 2014-03-09 12:42:50 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-03-09 12:42:50 -0400 |
commit | 68735c66778188f4c8cbe531f7802b8c8cb188fd (patch) | |
tree | 91df69400c8b3a243401cfcaeaedc4ce13e15ad8 /configure.ac | |
parent | a82e19520989de9e3e4b69987cfed77edd51f4f0 (diff) | |
download | libsoup-68735c66778188f4c8cbe531f7802b8c8cb188fd.tar.gz |
configure.ac: belatedly bump glib requirement to 2.38
The tests use the TAP driver now, which only exists in glib 2.38 and
later.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5855f7e8..5bdd0798 100644 --- a/configure.ac +++ b/configure.ac @@ -78,12 +78,12 @@ dnl *********************** dnl *** Checks for glib *** dnl *********************** -GLIB_REQUIRED=2.36.0 +GLIB_REQUIRED=2.38.0 AM_PATH_GLIB_2_0($GLIB_REQUIRED,,,gobject gio) if test "$GLIB_LIBS" = ""; then AC_MSG_ERROR(GLIB $GLIB_REQUIRED or later is required to build libsoup) fi -GLIB_CFLAGS="$GLIB_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_36" +GLIB_CFLAGS="$GLIB_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_38" GLIB_MAKEFILE='$(top_srcdir)/Makefile.glib' AC_SUBST(GLIB_MAKEFILE) |