diff options
author | Ernestas Kulik <ernestask@gnome.org> | 2017-05-03 17:36:45 +0300 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-03 16:14:58 +0100 |
commit | fee3f9afa15ee409f036a08ae4065faf10151416 (patch) | |
tree | 18027299f80b26030bddebd4b62935b6d9fff29c /meson.build | |
parent | fb6f9e10dade45dd95ec5cc8e4283e61bb824188 (diff) | |
download | gtk+-fee3f9afa15ee409f036a08ae4065faf10151416.tar.gz |
meson: depend on glib >= 2.53.1
The code uses g_object_new_with_properties(), which is only available in
versions 2.53.1 and up.
https://bugzilla.gnome.org/show_bug.cgi?id=782123
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index d88ddd49c0..b16d3c10d8 100644 --- a/meson.build +++ b/meson.build @@ -9,8 +9,8 @@ project('gtk+-4.0', 'c', license: 'LGPLv2.1+') glib_major_req = 2 -glib_minor_req = 49 -glib_micro_req = 4 +glib_minor_req = 53 +glib_micro_req = 1 if glib_minor_req.is_odd() glib_min_required = 'GLIB_VERSION_@0@_@1@'.format(glib_major_req, glib_minor_req - 1) |