debugging info for solv
git-svn-id: svn://localhost/ardour2/trunk@1204 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
47d076418d
commit
ed59a43ced
@ -341,6 +341,8 @@ 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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user