diff options
author | Brian Paul <[email protected]> | 2008-06-18 09:21:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-18 09:22:01 -0600 |
commit | a668b43568b99170e354c7e7cbb393e633765ec4 (patch) | |
tree | 7e5af74d1568585b9362c05863085f9a39c63b13 | |
parent | 0cf79316d076d598f143b68f61308df9ddaf5e9a (diff) |
egl: use RTLD_LAZY
-rw-r--r-- | src/egl/main/egldriver.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |