mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
egl: use RTLD_LAZY
This commit is contained in:
parent
0cf79316d0
commit
a668b43568
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue