diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-04 09:44:51 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-04 10:07:28 +0200 |
commit | 70aaaad2f9391453f7d8c9cb1ebad349d4b96421 (patch) | |
tree | a40fd370fea4190799b9c6e3a6a7b08b98a30027 | |
parent | 7eac882fe8f48cc3145cff24fecf499b87c38f2d (diff) |
Depends on GLib 2.30
telepathy-glib 0.18.0 already depends on this version so that won't change
much in practice and it will allow us to use GLIB_VERSION_* macros
(GLIB_VERSION_2_24 doesn't exist).
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1f5ed8a88..58d78b9d4 100644 --- a/configure.ac +++ b/configure.ac @@ -228,8 +228,8 @@ AM_CONDITIONAL([ENABLE_GTK_DOC], [test "x$enable_gtk_doc" = xyes]) dnl Check for Glib PKG_CHECK_MODULES(GLIB, - [glib-2.0 >= 2.24, gobject-2.0 >= 2.24, gthread-2.0 >= 2.24, gio-2.0]) -PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.24]) + [glib-2.0 >= 2.30, gobject-2.0 >= 2.30, gthread-2.0 >= 2.30, gio-2.0]) +PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.30]) AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) |