diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-10-10 11:58:28 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:18 +0100 |
commit | dbb06b6246c5488d20aae77a1ced268e01b62e58 (patch) | |
tree | 32e425f7b244145e5ad85f7f224ef7126bc4fda4 /configure.ac | |
parent | b5a1c38cc417972d911c86a52a6a692afdf2cf2a (diff) |
build: require GLib and GIO >= 2.30
gdbus-codegen is first available in the stable 2.30 release of GLib, see
http://mail.gnome.org/archives/gtk-devel-list/2011-September/msg00218.html
GIO and GIO-Unix are now required during the build.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fd0871fa..55d39a7d 100644 --- a/configure.ac +++ b/configure.ac @@ -29,7 +29,13 @@ AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package]) IT_PROG_INTLTOOL([0.35.0]) -PKG_CHECK_MODULES(MM, dbus-glib-1 >= 0.86 glib-2.0 >= 2.18 gmodule-2.0 gobject-2.0) +PKG_CHECK_MODULES(MM, + dbus-glib-1 >= 0.86 + glib-2.0 >= 2.30 + gmodule-2.0 + gobject-2.0 + gio-2.0 + gio-unix-2.0) AC_SUBST(MM_CFLAGS) AC_SUBST(MM_LIBS) |