diff options
-rw-r--r-- | src/jalv.c | 4 | ||||
-rw-r--r-- | wscript | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -777,6 +777,7 @@ main(int argc, char** argv) jalv.bpm = 120.0f; jalv.control_in = (uint32_t)-1; + suil_init(&argc, &argv, SUIL_ARG_NONE); if (jalv_init(&argc, &argv, &jalv.opts)) { return EXIT_FAILURE; } @@ -1109,8 +1110,7 @@ main(int argc, char** argv) } /* Create workers if necessary */ - if (lilv_plugin_has_feature(jalv.plugin, jalv.nodes.work_schedule) - && lilv_plugin_has_extension_data(jalv.plugin, jalv.nodes.work_interface)) { + if (lilv_plugin_has_extension_data(jalv.plugin, jalv.nodes.work_interface)) { const LV2_Worker_Interface* iface = (const LV2_Worker_Interface*) lilv_instance_get_extension_data(jalv.instance, LV2_WORKER__interface); @@ -59,7 +59,7 @@ def configure(conf): autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD', atleast_version='0.12.0', mandatory=True) autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL', - atleast_version='0.6.0', mandatory=True) + atleast_version='0.8.7', mandatory=True) autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM', atleast_version='0.6.0', mandatory=True) if Options.options.portaudio: |