summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2014-05-29 22:17:42 +0200
committerJürg Billeter <j@bitron.ch>2014-08-24 10:43:09 +0200
commit9e95df0f49fa0f2933dd3a83ab5c0c4187824379 (patch)
treec62fe92e132ee59abc3a3e6f82343ea4d9985867 /compiler
parentdfbcc107cf2a43e5dd7facfecee1c7b3b637901d (diff)
downloadvala-9e95df0f49fa0f2933dd3a83ab5c0c4187824379.tar.gz
Require and target GLib >= 2.24
The next stable release of vala will happen four years after the release of GLib 2.24.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 6ac1e1c8d..4a20ea1ba 100644
--- a/compiler/valacompiler.vala
+++ b/compiler/valacompiler.vala
@@ -251,7 +251,7 @@ class Vala.Compiler {
}
int glib_major = 2;
- int glib_minor = 18;
+ int glib_minor = 24;
if (target_glib != null && target_glib.scanf ("%d.%d", out glib_major, out glib_minor) != 2) {
Report.error (null, "Invalid format for --target-glib");
}