Committing in .
Modified Files: wxWindows/src/common/dynlib.cpp VMS patch for second argument of dlopen ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9123 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -53,8 +53,12 @@
|
|||||||
// note about dlopen() flags: we use RTLD_NOW to have more Windows-like
|
// note about dlopen() flags: we use RTLD_NOW to have more Windows-like
|
||||||
// behaviour (Win won't let you load a library with missing symbols) and
|
// behaviour (Win won't let you load a library with missing symbols) and
|
||||||
// RTLD_GLOBAL because it is needed sometimes and probably doesn't hurt
|
// RTLD_GLOBAL because it is needed sometimes and probably doesn't hurt
|
||||||
// otherwise
|
// otherwise. On VMS the second argument on dlopen is ignored.
|
||||||
|
#ifdef __VMS
|
||||||
|
# define wxDllOpen(lib) dlopen(lib.fn_str(), 0 )
|
||||||
|
#else
|
||||||
# define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_LAZY | RTLD_GLOBAL)
|
# define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_LAZY | RTLD_GLOBAL)
|
||||||
|
#endif
|
||||||
#define wxDllGetSymbol(handle, name) dlsym(handle, name)
|
#define wxDllGetSymbol(handle, name) dlsym(handle, name)
|
||||||
# define wxDllClose dlclose
|
# define wxDllClose dlclose
|
||||||
#elif defined(HAVE_SHL_LOAD)
|
#elif defined(HAVE_SHL_LOAD)
|
||||||
|
Reference in New Issue
Block a user