From: Brian Paul Date: Wed, 18 Jun 2008 15:21:28 +0000 (-0600) Subject: egl: use RTLD_LAZY X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a668b43568b99170e354c7e7cbb393e633765ec4;p=mesa.git egl: use RTLD_LAZY --- diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 5ecfb9eb306..4a611b9fc97 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -183,7 +183,7 @@ _eglOpenDriver(_EGLDisplay *dpy, const char *driverName, const char *args) /* XXX also prepend a directory path??? */ sprintf(driverFilename, "%s.so", driverName); _eglLog(_EGL_DEBUG, "dlopen(%s)", driverFilename); - lib = dlopen(driverFilename, RTLD_NOW); + lib = dlopen(driverFilename, RTLD_LAZY); #endif if (!lib) {