>From a69393f453dbf714d8fe82aff3e8d9a5667d0ab6 Mon Sep 17 00:00:00 2001 From: Robert Schwebel <[email protected]> Date: Tue, 1 Feb 2011 10:55:41 +0100 Subject: [PATCH] dconf: increase minimum glib version
G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE was introduced only in glib-2.27.3, so this is the minimum required glib version now. 34b297bd6ab4110978709d7cf49b60d7aa1ea90d changes the minimal version to 2.27.2, but the symbol was really only introduced in 2.27.3. Signed-off-by: Robert Schwebel <[email protected]> --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 386e290..827540e 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ GLIB_GSETTINGS GTK_DOC_CHECK([1.15]) # Dependencies -PKG_CHECK_MODULES(glib, glib-2.0 >= 2.27.2) +PKG_CHECK_MODULES(glib, glib-2.0 >= 2.27.3) PKG_CHECK_MODULES(gio, gio-2.0) PKG_CHECK_MODULES(dbus, dbus-1) -- 1.7.5.4 _______________________________________________ gtk-devel-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtk-devel-list
