Reverted the glu loading

This commit is contained in:
Elias Naur 2003-04-28 11:20:55 +00:00
parent 57e9578eb5
commit 81dc347de0
1 changed files with 1 additions and 1 deletions

View File

@ -3275,7 +3275,7 @@ int extgl_Open()
lib_gl_handle = dlopen("libGL.so.1", RTLD_LAZY | RTLD_GLOBAL);
if (lib_gl_handle == NULL)
return 1;
lib_glu_handle = dlopen("libGLU.so", RTLD_LAZY | RTLD_GLOBAL);
lib_glu_handle = dlopen("libGLU.so.1", RTLD_LAZY | RTLD_GLOBAL);
if (lib_glu_handle == NULL)
return 1;
return 0;