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.
This commit is contained in:
Jim Nelson 2011-06-27 15:01:04 -07:00
parent 328683ecfb
commit 708b3d754a

View file

@ -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',