From 708b3d754a5a36d9a180ed4d0d05b347b4fa47ec Mon Sep 17 00:00:00 2001 From: Jim Nelson Date: Mon, 27 Jun 2011 15:01:04 -0700 Subject: [PATCH] Check for valac >= 0.12.0: #3726 This checks the version of Vala when ./waf configure is executed, not at build time, but that's okay. --- wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wscript b/wscript index 2b175a9b..67f84255 100644 --- a/wscript +++ b/wscript @@ -18,6 +18,8 @@ def options(opt): def configure(conf): conf.load('compiler_c vala') + conf.check_vala((0, 12, 0)) + conf.check_cfg( package='glib-2.0', uselib_store='GLIB',