Commit 4bcb58b3 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'f2ad1495'

* commit 'f2ad1495':
  avisynth: Use RTLD_LOCAL instead of RTLD_GLOBAL
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents cc5f5e14 f2ad1495
......@@ -43,7 +43,7 @@
#define AVISYNTH_LIB "libavxsynth.so"
#endif
#define LoadLibrary(x) dlopen(x, RTLD_NOW | RTLD_GLOBAL)
#define LoadLibrary(x) dlopen(x, RTLD_NOW | RTLD_LOCAL)
#define GetProcAddress dlsym
#define FreeLibrary dlclose
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment