summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2017-05-01 11:15:56 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2017-05-17 11:35:36 +0200
commit90cf68c81c63f1332d8c12a5787f364464c184f7 (patch)
tree41ec2da645223bb859befea8f5e964e344a1eb68 /compiler
parentd259b5f92c21c1137e5eadbc13ebe894a5df197d (diff)
downloadvala-90cf68c81c63f1332d8c12a5787f364464c184f7.tar.gz
Require and target GLib >= 2.40
The next stable release of vala will happen 3.5 years after the release of GLib 2.40.0. https://bugzilla.gnome.org/show_bug.cgi?id=782005
Diffstat (limited to 'compiler')
-rw-r--r--compiler/valacompiler.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/valacompiler.vala b/compiler/valacompiler.vala
index 0b76eece2..d2d399760 100644
--- a/compiler/valacompiler.vala
+++ b/compiler/valacompiler.vala
@@ -289,7 +289,7 @@ class Vala.Compiler {
}
int glib_major = 2;
- int glib_minor = 32;
+ int glib_minor = 40;
if (target_glib != null && target_glib.scanf ("%d.%d", out glib_major, out glib_minor) != 2) {
Report.error (null, "Invalid format for --target-glib");
}