mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
PR: 223002 Submitted by: Greg V <greg@unrelenting.technology> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13112
11 lines
478 B
C++
11 lines
478 B
C++
--- dispatch/glproc_gl.cpp.orig 2017-10-13 17:18:18 UTC
|
|
+++ dispatch/glproc_gl.cpp
|
|
@@ -200,7 +200,7 @@ void * _libgl_sym(const char *symbol)
|
|
* exposes symbols to it.
|
|
*/
|
|
|
|
- _libGlHandle = _dlopen(libgl_filename, RTLD_GLOBAL | RTLD_LAZY | RTLD_DEEPBIND);
|
|
+ _libGlHandle = _dlopen(libgl_filename, RTLD_GLOBAL | RTLD_LAZY);
|
|
if (!_libGlHandle) {
|
|
os::log("apitrace: error: couldn't find libGL.so\n");
|
|
return NULL;
|