Am 18.05.2014 09:10, schrieb Zlobin Nikita:
All plugins are in /usr/lib/ladspa, and this path is in LADSPA_PATH.
Otherwise all other ladspa hosts should not find anything, but they do.

So then I'm sorry, I'm out of ideas what it could be, as it works here very well. :-(

One thing you could try is to set the path explicit in sila_browser.cpp
line 457, replace the block

     char * p = getenv ("LADSPA_PATH");
        if (p != NULL) {
            path = getenv ("LADSPA_PATH");
        } else {
        setenv("LADSPA_PATH","/usr/lib/ladspa",0);
        setenv("LADSPA_PATH","/usr/local/lib/ladspa",0);
        path = getenv("LADSPA_PATH");
    }

with just
        setenv("LADSPA_PATH","/usr/lib/ladspa",0);
        path ="/usr/lib/ladspa" ;




_______________________________________________
Linux-audio-dev mailing list
Linux-audio-dev@lists.linuxaudio.org
http://lists.linuxaudio.org/listinfo/linux-audio-dev

Reply via email to