13
0

debugging info for solv

git-svn-id: svn://localhost/ardour2/trunk@1204 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-12-14 02:57:20 +00:00
parent 47d076418d
commit ed59a43ced

View File

@ -340,6 +340,8 @@ PluginManager::add_vst_directory (string path)
static bool vst_filter (const string& str, void *arg)
{
/* Not a dotfile, has a prefix before a period, suffix is "dll" */
cerr << "VST filter: looking at " << str << endl;
return str[0] != '.' && (str.length() > 4 && str.find (".dll") == (str.length() - 4));
}
@ -356,8 +358,15 @@ PluginManager::vst_discover_from_path (string path)
plugin_objects = scanner (vst_path, vst_filter, 0, true, true);
if (plugin_objects) {
cerr << "Discovered " << plugin_objects.size() << " possible plugins\n";
} else {
cerr << "No plugins discovered at all\n";
}
if (plugin_objects) {
for (x = plugin_objects->begin(); x != plugin_objects->end (); ++x) {
cerr << "checking out " << **x << endl;
vst_discover (**x);
}
}