|
From: Holger M. <ho...@ma...> - 2014-08-13 20:40:06
|
I did a quick'n'dirty patch:
--- ./src/effects/LadspaEffect.cpp.orig 2014-08-13 22:37:11.623392733 +0200
+++ ./src/effects/LadspaEffect.cpp 2014-08-13 22:25:34.552406957 +0200
@@ -376,7 +376,8 @@
std::vector<EffectInfo*> v; // will be filled in callback function _foundLadspaDll()
char* pcLadspaPath = getenv("LADSPA_PATH");
- String ladspaDir = pcLadspaPath ? pcLadspaPath : defaultLadspaDir();
+ //String ladspaDir = pcLadspaPath ? pcLadspaPath : defaultLadspaDir();
+ String ladspaDir = ""; /* -hm- */
std::istringstream ss(ladspaDir);
std::string path;
|