change to use lazy eval for dlopen

SVN revision: 29868
This commit is contained in:
Carsten Haitzler 2007-05-06 05:05:26 +00:00
parent 826f1c2dcf
commit 97d7a0526b
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ _emotion_module_open(const char *name, Evas_Object *obj, Emotion_Video_Module **
E_SMART_OBJ_GET_RETURN(sd, obj, E_OBJ_NAME, 0);
snprintf(buf, sizeof(buf), "%s%s", PACKAGE_LIB_DIR"/emotion/",
name);
handle = dlopen(buf, RTLD_NOW | RTLD_GLOBAL);
handle = dlopen(buf, RTLD_LAZY);
if (handle)
{
unsigned char (*func_module_open)(Evas_Object *, Emotion_Video_Module **, void **, Emotion_Module_Options *);