projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cf7931
)
egl: use RTLD_LAZY
author
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 18 Jun 2008 15:21:28 +0000
(09:21 -0600)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 18 Jun 2008 15:22:01 +0000
(09:22 -0600)
src/egl/main/egldriver.c
patch
|
blob
|
history
diff --git
a/src/egl/main/egldriver.c
b/src/egl/main/egldriver.c
index 5ecfb9eb306cdd1be24309d3c2261360df906f84..4a611b9fc971ee153f19a8b1a03a4b6e60d4acbd 100644
(file)
--- 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) {