drumstick: fix plugin lookup and enable SonivoxEAS and FluidSynth plugins

SonivoxEAS is enabled by building with PulseAudio.
This commit is contained in:
Orivej Desh
2020-11-12 03:41:46 +00:00
parent 66c98ec550
commit a1c9c430bf
3 changed files with 37 additions and 8 deletions
@@ -0,0 +1,12 @@
Make it look for its plugin in its own installation directory.
--- a/library/rt/backendmanager.cpp
+++ b/library/rt/backendmanager.cpp
@@ -159,6 +159,7 @@ namespace rt {
foreach(const QString& path, QCoreApplication::libraryPaths()) {
d->appendDir( path + QDir::separator() + QSTR_DRUMSTICK, result );
}
+ d->appendDir( "@out@/lib/drumstick", result );
return result;
}