From ae59766fc981ff64236e461cebe3f193c7fd6a51 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 12 Dec 2016 17:08:01 -0600 Subject: Change dlopen from RTLD_NOW to RTLD_LAZY --- src/H5PL.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5PL.c b/src/H5PL.c index 7e4dbcc..1f7bb2a 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -84,7 +84,7 @@ typedef const void *(__cdecl *H5PL_get_plugin_info_t)(void); #define H5PL_HANDLE void * /* Get a handle to a plugin library. Windows: TEXT macro handles Unicode strings */ -#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_NOW) +#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_LAZY) /* Get the address of a symbol in dynamic library */ #define H5PL_GET_LIB_FUNC(H,N) dlsym(H,N) -- cgit v0.12