summaryrefslogtreecommitdiff
path: root/libs/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'libs/plugins')
-rw-r--r--libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc
index a3c23dde80..cde370ead5 100644
--- a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc
+++ b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc
@@ -310,6 +310,16 @@ instantiate (const LV2_Descriptor* descriptor,
return NULL;
}
+#ifdef LV2_EXTENDED
+ if (!self->midnam) {
+ lv2_log_warning (&self->logger, "a-fluidsynth.lv2: Host does not support midnam:update\n");
+ }
+
+ if (!self->bankpatch) {
+ lv2_log_warning (&self->logger, "a-fluidsynth.lv2: Host does not support bankpatch:notify\n");
+ }
+#endif
+
/* initialize fluid synth */
self->settings = new_fluid_settings ();