From: TimePath Date: Sun, 13 Aug 2017 10:47:16 +0000 (+1000) Subject: Remove RTLD_DEEPBIND, it is no longer required X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d5acb1679c0df56c71f5ee7edfb84f6a32fb1120;p=xonotic%2Fnetradiant.git Remove RTLD_DEEPBIND, it is no longer required --- diff --git a/radiant/server.cpp b/radiant/server.cpp index 12997d4d..4e93bce5 100644 --- a/radiant/server.cpp +++ b/radiant/server.cpp @@ -150,7 +150,7 @@ public: typedef int ( *FunctionPointer )(); DynamicLibrary( const char* filename ){ - m_library = dlopen( filename, RTLD_NOW | (RTLD_DEEPBIND + 0) ); + m_library = dlopen( filename, RTLD_NOW ); } ~DynamicLibrary(){ if ( !failed() ) {