diff options
author | David Robillard <d@drobilla.net> | 2018-01-16 21:22:51 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-16 21:22:51 +0100 |
commit | 15e7f5fe435c9ca67414a8aa1f8b2c328bab4a3d (patch) | |
tree | 32de788f344125e86c094b8c7175efe916d5ecba /wscript | |
parent | b371eb33bb30976c24ccddb6834ee657e89df432 (diff) | |
download | jalv-15e7f5fe435c9ca67414a8aa1f8b2c328bab4a3d.tar.gz jalv-15e7f5fe435c9ca67414a8aa1f8b2c328bab4a3d.tar.bz2 jalv-15e7f5fe435c9ca67414a8aa1f8b2c328bab4a3d.zip |
Explicitly set language version
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -49,9 +49,7 @@ def configure(conf): conf.load('compiler_c', cache=True) conf.load('compiler_cxx', cache=True) conf.load('autowaf', cache=True) - - if conf.check(cflags=["-std=c11"]): - conf.env.append_unique('CFLAGS', ['-std=c11']) + autowaf.set_c_lang(conf, 'c99') autowaf.check_pkg(conf, 'lv2', atleast_version='1.14.0', uselib_store='LV2') autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', |