]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/server.cpp
Remove RTLD_DEEPBIND, it is no longer required
[xonotic/netradiant.git] / radiant / server.cpp
index 12997d4d0801c2ede679dfb1e74556c12c443389..4e93bce58493067ee0690e0eec2d340ee873ad9f 100644 (file)
@@ -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() ) {