summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2018-03-10 14:13:21 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2018-03-10 14:13:21 +0000
commit222db5d1a5b846eca7432b25d1fbf4cf61672c56 (patch)
tree8b21799c3c4b67070bcbf1114c251a87abae319a
parent862680daf4f2542d34f51082a03eebdea4dd4cc6 (diff)
downloadgobject-introspection-222db5d1a5b846eca7432b25d1fbf4cf61672c56.tar.gz
meson: Do not depend on a non-existing version of GLib
We have already bumped the version of G-I, but GLib hasn't bumped its version, yet.
-rw-r--r--meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index d273981c..0e8b22fc 100644
--- a/meson.build
+++ b/meson.build
@@ -48,8 +48,9 @@ configure_file(
output: 'config.h'
)
-# Always bumped to match our version
-glib_version = '>=2.@0@.@1@'.format(gi_versions[1], gi_versions[2])
+# FIXME: Always bumped to match our version
+#glib_version = '>=2.@0@.@1@'.format(gi_versions[1], gi_versions[2])
+glib_version = '>= 2.55.1'
glib_dep = dependency('glib-2.0', version : glib_version,
fallback: ['glib', 'libglib_dep'])