]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
Remove RTLD_DEEPBIND, it is no longer required
authorTimePath <andrew.hardaker1995@gmail.com>
Sun, 13 Aug 2017 10:47:16 +0000 (20:47 +1000)
committerTimePath <andrew.hardaker1995@gmail.com>
Sun, 13 Aug 2017 10:47:16 +0000 (20:47 +1000)
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() ) {