From 580ee0fc272a468cd6c3c85224a1366844e97aac Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 7 Mar 2011 10:39:08 -0600 Subject: [PATCH] build: relax glib version requirement to 2.24 We only need newer glib for G_DEFINE_BOXED_TYPE, which is only required for introspection. If you don't want introspection, you don't need that, so allow building on glib 2.24 without. We may be compatible with even earlier glib versions too, if so let me know and I'll downgrade the requirement further. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bbea603b36..6dcfdef7b6 100644 --- a/configure.ac +++ b/configure.ac @@ -236,7 +236,7 @@ PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.1 dbus-glib-1 >= 0.75) AC_SUBST(DBUS_CFLAGS) AC_SUBST(DBUS_LIBS) -PKG_CHECK_MODULES(GLIB, gthread-2.0 glib-2.0 >= 2.26 gobject-2.0) +PKG_CHECK_MODULES(GLIB, gthread-2.0 glib-2.0 >= 2.24 gobject-2.0) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS)