summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2022-07-13 14:57:05 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2022-07-13 15:13:05 +0100
commit41796d77b4f29260c622d326af724b31cc00f3b1 (patch)
treed48e76ab798232f5ccce567a48280517a0859e45
parent3b5db10205023bfa43a9675a6ade826653a1c41c (diff)
downloadgobject-introspection-41796d77b4f29260c622d326af724b31cc00f3b1.tar.gz
build: Remove a version check that is always true
We require Meson 0.60, to match newer GLib.
-rw-r--r--meson.build5
1 files changed, 1 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index c30261e9..bf44ad22 100644
--- a/meson.build
+++ b/meson.build
@@ -288,10 +288,7 @@ pkg.generate(
# be named girepo_dep for backward compatibility with projects that where already
# using that name as fallback: dependency('gobject-introspection-1.0',
# fallback : ['gobject-introspection', 'girepo_dep'])
-# FIXME: meson.override_dependency() and declare_dependency()'s variable arguments
-# are new in Meson 0.54.0, older versions of Meson won't be able to use g-i as
-# subproject anyway
-if meson.version().version_compare('>=0.54.0') and get_option('build_introspection_data') == true
+if get_option('build_introspection_data') == true
girepo_dep = declare_dependency(
sources: typelibs,
dependencies: girepo_dep,