From 0c2494595db708b668c49536445e112237c33714 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 7 Dec 2013 18:04:31 +0100 Subject: [PATCH] detect VST >= 2.4 plugins. --- libs/ardour/linux_vst_support.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/ardour/linux_vst_support.cc b/libs/ardour/linux_vst_support.cc index 1fccf79968..e141717f3e 100644 --- a/libs/ardour/linux_vst_support.cc +++ b/libs/ardour/linux_vst_support.cc @@ -242,7 +242,9 @@ vstfx_load (const char *path) /*Find the main entry point into the plugin*/ - if ((fhandle->main_entry = (main_entry_t) dlsym(fhandle->dll, "main")) == 0) + if ((fhandle->main_entry = (main_entry_t) dlsym(fhandle->dll, "main")) == 0 && + (fhandle->main_entry = (main_entry_t) dlsym(fhandle->dll, "VSTPluginMain")) == 0 + ) { /*If it can't be found, unload the plugin and return a 0 handle*/