summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2016-02-04 20:12:50 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2016-02-07 15:51:39 +0100
commit0b297f4273a868c90b8e96adf52380839fcc38c8 (patch)
treef38ac15ac53f7291993c102ebc1a9d709149b740 /compiler
parent75858b096d52b55df52f2248d2ec7aadf34c475a (diff)
downloadvala-0b297f4273a868c90b8e96adf52380839fcc38c8.tar.gz
Require and target GLib >= 2.32
The next stable release of vala will happen four years after the release of GLib 2.32.0.
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 968689830..b19d5c59e 100644
--- a/compiler/valacompiler.vala
+++ b/compiler/valacompiler.vala
@@ -273,7 +273,7 @@ class Vala.Compiler {
}
int glib_major = 2;
- int glib_minor = 24;
+ int glib_minor = 32;
if (target_glib != null && target_glib.scanf ("%d.%d", out glib_major, out glib_minor) != 2) {
Report.error (null, "Invalid format for --target-glib");
}