From d5acb1679c0df56c71f5ee7edfb84f6a32fb1120 Mon Sep 17 00:00:00 2001 From: TimePath Date: Sun, 13 Aug 2017 20:47:16 +1000 Subject: [PATCH] Remove RTLD_DEEPBIND, it is no longer required --- radiant/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) { -- 2.39.2