summaryrefslogtreecommitdiff
path: root/src/egl/main/egldriver.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-18 09:21:28 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-18 09:22:01 -0600
commita668b43568b99170e354c7e7cbb393e633765ec4 (patch)
tree7e5af74d1568585b9362c05863085f9a39c63b13 /src/egl/main/egldriver.c
parent0cf79316d076d598f143b68f61308df9ddaf5e9a (diff)
egl: use RTLD_LAZY
Diffstat (limited to 'src/egl/main/egldriver.c')
-rw-r--r--src/egl/main/egldriver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c
index 5ecfb9eb30..4a611b9fc9 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) {