aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/Effect/ladspa/ladspahost.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Effect/ladspa/ladspahost.cpp b/src/plugins/Effect/ladspa/ladspahost.cpp
index 0875384bc..b1c4c7f8c 100644
--- a/src/plugins/Effect/ladspa/ladspahost.cpp
+++ b/src/plugins/Effect/ladspa/ladspahost.cpp
@@ -167,7 +167,7 @@ LADSPAEffect *LADSPAHost::load(const QString &filename, long int num)
LADSPAEffect *instance = new LADSPAEffect;
instance->fileName = filename;
- instance->library = dlopen(qPrintable(filename), RTLD_NOW | RTLD_DEEPBIND);
+ instance->library = dlopen(qPrintable(filename), RTLD_LAZY);
instance->handle = 0;
instance->handle2 = 0;
if (!instance->library)
@@ -368,7 +368,7 @@ void LADSPAHost::findPlugins(const QString &path_entry)
foreach(QFileInfo file, files)
{
- library = dlopen(qPrintable(file.absoluteFilePath ()), RTLD_NOW | RTLD_DEEPBIND);
+ library = dlopen(qPrintable(file.absoluteFilePath ()), RTLD_LAZY);
if (library == 0)
{
continue;