From 25dab5829f28db3c62312f70ca7db26d080b6d60 Mon Sep 17 00:00:00 2001 From: srn Date: Thu, 2 Mar 2006 11:07:20 +0000 Subject: [PATCH] Removed unnecessary dlopen flag --- src/SUIT/SUIT_Session.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SUIT/SUIT_Session.cxx b/src/SUIT/SUIT_Session.cxx index e784dfffe..7eca7329a 100755 --- a/src/SUIT/SUIT_Session.cxx +++ b/src/SUIT/SUIT_Session.cxx @@ -290,7 +290,7 @@ SUIT_Session::AppLib SUIT_Session::loadLibrary( const QString& name, QString& li #ifdef WIN32 lib = ::LoadLibrary( (char*)libFile.latin1() ); #else - lib = dlopen( (char*)libFile.latin1(), RTLD_LAZY | RTLD_GLOBAL ); + lib = dlopen( (char*)libFile.latin1(), RTLD_LAZY /*| RTLD_GLOBAL */ ); #endif return lib; } -- 2.39.2