From: srn Date: Tue, 28 Mar 2006 12:04:15 +0000 (+0000) Subject: BugID 12013, Added a new flag for dlopen X-Git-Tag: for_sharm~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b456dc22c94d4e5098c5b1ceb30f874629b98859;p=modules%2Fgui.git BugID 12013, Added a new flag for dlopen --- diff --git a/src/SUIT/SUIT_Session.cxx b/src/SUIT/SUIT_Session.cxx index 7eca7329a..deb1da0ac 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; }