From abc17351adfd5b707098e2ee36dd6104b29622bb Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Mon, 23 Jan 2012 10:42:27 +0000 Subject: gobject: Require minimum gobject library version of 2.26.0 The GObject bindings require G_DEFINE_BOXED_TYPE, which was not added until 2.25.15. There are probably other dependencies. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index db4e25c0..f3a6f13d 100644 --- a/configure.ac +++ b/configure.ac @@ -1005,7 +1005,7 @@ AC_ARG_ENABLE([gobject], AS_IF( [test "x$enable_gobject" != "xno"], [ - PKG_CHECK_MODULES([GOBJECT], [gobject-2.0], + PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.26.0], [ AC_SUBST([GOBJECT_CFLAGS]) AC_SUBST([GOBJECT_LIBS]) -- cgit