summaryrefslogtreecommitdiff
path: root/vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2023-02-28 12:29:16 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2023-02-28 12:29:16 +0100
commit97d6ffb154ce0afab2bafb81b824ff7faadb66fa (patch)
treec474d7a975cabcb1d16b0f1ea2d64906cab9cb45 /vala
parent4c804623b43531bd90a28d7edf62e7fde08c7381 (diff)
downloadvala-97d6ffb154ce0afab2bafb81b824ff7faadb66fa.tar.gz
Require and target GLib >= 2.56
The next stable release of vala will happen over 5 years after the release of GLib 2.56.0. Fixes https://gitlab.gnome.org/GNOME/vala/issues/1415
Diffstat (limited to 'vala')
-rw-r--r--vala/valacodecontext.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valacodecontext.vala b/vala/valacodecontext.vala
index 0ac4bbdf8..63dacd1a3 100644
--- a/vala/valacodecontext.vala
+++ b/vala/valacodecontext.vala
@@ -582,7 +582,7 @@ public class Vala.CodeContext {
}
target_glib_major = 2;
- target_glib_minor = 48;
+ target_glib_minor = 56;
for (int i = 16; i <= target_glib_minor; i += 2) {
defines.add ("GLIB_2_%d".printf (i));