diff --git a/radiant/server.cpp b/radiant/server.cpp index af38afa3..81ea5efa 100644 --- a/radiant/server.cpp +++ b/radiant/server.cpp @@ -147,10 +147,6 @@ public: #include -#ifndef RTLD_DEEPBIND -#define RTLD_DEEPBIND 0 -#endif - class DynamicLibrary { void* m_library; @@ -158,7 +154,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() ) {