diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-25 20:34:05 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-25 20:34:05 (GMT) |
commit | b1c594d52df0c744792729f514a207823f462b77 (patch) | |
tree | 662db207206ebb5671d7e9fc001d6d3bb1226221 /src/H5PL.c | |
parent | dabebe412fee2d1b0eed6ef0a8e59495d8539b68 (diff) | |
download | hdf5-b1c594d52df0c744792729f514a207823f462b77.zip hdf5-b1c594d52df0c744792729f514a207823f462b77.tar.gz hdf5-b1c594d52df0c744792729f514a207823f462b77.tar.bz2 |
[svn-r23451] I took out RTLD_LAZY for dlopen.
Tested on koala.
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ typedef const H5Z_class2_t *(__cdecl *get_filter_info_t)(); #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|RTLD_LAZY) +#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_NOW) /* Get the address of a symbol in dynamic library */ #define H5PL_GET_LIB_FUNC(H,N) dlsym(H,N) |