diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-02-19 00:02:28 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-02-19 03:59:26 +0530 |
commit | af85d0e65ef99c6e3db0f7f785968a675340edd2 (patch) | |
tree | 311baa81f5fa8ab7e9508b6e56af27bf87ad3485 /mesonbuild/modules/gnome.py | |
parent | 577a3591c9e11f41a9fd442659f5b4b3978a178a (diff) | |
download | meson-af85d0e65ef99c6e3db0f7f785968a675340edd2.zip meson-af85d0e65ef99c6e3db0f7f785968a675340edd2.tar.gz meson-af85d0e65ef99c6e3db0f7f785968a675340edd2.tar.bz2 |
gnome: Fix minimum gresource dependency required
This is the latest release of glib that exists and has the required
dependency-generation fixes.
Without this GNOME Recipes cannot even configure.
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 92082c5..f288b58 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -37,7 +37,7 @@ from . import ExtensionModule # # https://github.com/ninja-build/ninja/issues/1184 # https://bugzilla.gnome.org/show_bug.cgi?id=774368 -gresource_dep_needed_version = '>= 2.52.0' +gresource_dep_needed_version = '>= 2.51.1' native_glib_version = None girwarning_printed = False |