Two errors caused by previous commit;

One related to extension handling on Linux, the other is a fix for compiling with Irix and STL
This commit is contained in:
Charlie Carley
2007-01-23 13:25:20 +00:00
parent 39d1d30350
commit 56a4f529fd
2 changed files with 2 additions and 2 deletions

View File

@@ -191,7 +191,7 @@ static void bglInitEntryPoints (void)
{
if (!libGL)
{
libGL = dlopen("libGL.so", RTLD_GLOBAL);
libGL = dlopen("libGL.so", RTLD_LAZY|RTLD_GLOBAL);
if (libGL)
bglGetProcAddress = (PFNBGLXGETPROCADDRESSARBPROC) (dlsym(libGL, "glXGetProcAddressARB"));
else