# HG changeset patch # User Andrew John Hughes # Date 1317396733 -3600 # Node ID b2b7ee69a5cd7428c251aee983dac0fbe1edfdb0 # Parent cbaa865cf6f30c3b842e2a270f7316b9452e036b Check for GIO >= 2.26 for GSettings. 2011-09-30 Andrew John Hughes * acinclude.m4: (IT_CHECK_FOR_GIO): Require 2.26 and above for GSettings. diff -r cbaa865cf6f3 -r b2b7ee69a5cd ChangeLog --- a/ChangeLog Fri Sep 30 05:42:54 2011 +0100 +++ b/ChangeLog Fri Sep 30 16:32:13 2011 +0100 @@ -1,3 +1,9 @@ +2011-09-30 Andrew John Hughes + + * acinclude.m4: + (IT_CHECK_FOR_GIO): Require 2.26 and + above for GSettings. + 2011-09-30 Andrew John Hughes Bump changesets to bring in fix which diff -r cbaa865cf6f3 -r b2b7ee69a5cd acinclude.m4 --- a/acinclude.m4 Fri Sep 30 05:42:54 2011 +0100 +++ b/acinclude.m4 Fri Sep 30 16:32:13 2011 +0100 @@ -2037,10 +2037,10 @@ AC_MSG_RESULT(${ENABLE_SYSTEM_GIO}) if test x"${ENABLE_SYSTEM_GIO}" = "xyes"; then dnl Check for Gio+ headers and libraries. - PKG_CHECK_MODULES(GIO, gio-2.0,[GIO_FOUND=yes],[GIO_FOUND=no]) + PKG_CHECK_MODULES(GIO, gio-2.0 >= 2.26,[GIO_FOUND=yes],[GIO_FOUND=no]) if test "x${GIO_FOUND}" = xno then - AC_MSG_ERROR([Could not find GIO; install GIO or build with --disable-system-gio to use the in-tree headers.]) + AC_MSG_ERROR([Could not find GIO >= 2.26; install GIO or build with --disable-system-gio to use the in-tree headers.]) fi AC_SUBST(GIO_CFLAGS) AC_SUBST(GIO_LIBS)