diff options
author | David Robillard <d@drobilla.net> | 2019-10-17 13:03:36 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-10-17 13:03:36 +0200 |
commit | ee8a152cb35ad835455a583d0d933ca49e78d5db (patch) | |
tree | c3d976af488ad508e16de8cc6b741ad0473f2f0b /wscript | |
parent | 57b35f6803a284f33b8cf71ce189669a90a6f7b6 (diff) | |
download | jalv-ee8a152cb35ad835455a583d0d933ca49e78d5db.tar.gz jalv-ee8a152cb35ad835455a583d0d933ca49e78d5db.tar.bz2 jalv-ee8a152cb35ad835455a583d0d933ca49e78d5db.zip |
Remove use of autowaf.define
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -128,11 +128,10 @@ def configure(conf): mandatory = False) if conf.is_defined('HAVE_ISATTY') and conf.is_defined('HAVE_FILENO'): - autowaf.define(conf, 'JALV_WITH_COLOR', 1) conf.env.append_unique('CFLAGS', ['-D_POSIX_C_SOURCE=200809L']) if not Options.options.no_jack_session: - autowaf.define(conf, 'JALV_JACK_SESSION', 1) + conf.define('JALV_JACK_SESSION', 1) conf.write_config_header('jalv_config.h', remove=False) |