mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-12-06 18:08:31 +00:00
Remove RTLD_DEEPBIND flag from source2 titles
The issue this flag solved before seems to be resolved by the engine now and is not needed
This commit is contained in:
parent
5a282eb8fc
commit
2221689ce8
@ -63,11 +63,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
typedef void* HINSTANCE;
|
typedef void* HINSTANCE;
|
||||||
#ifdef META_IS_SOURCE2
|
|
||||||
#define dlmount(x) dlopen(x,RTLD_NOW | RTLD_DEEPBIND)
|
|
||||||
#else
|
|
||||||
#define dlmount(x) dlopen(x,RTLD_NOW)
|
#define dlmount(x) dlopen(x,RTLD_NOW)
|
||||||
#endif
|
|
||||||
#define abspath(x, s) realpath(s, x)
|
#define abspath(x, s) realpath(s, x)
|
||||||
#define PATH_SEP_STR "/"
|
#define PATH_SEP_STR "/"
|
||||||
#define PATH_SEP_CHAR '/'
|
#define PATH_SEP_CHAR '/'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user