|
From: Elias N. <eli...@us...> - 2003-03-27 15:29:01
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory sc8-pr-cvs1:/tmp/cvs-serv6618/common Modified Files: extgl.c Log Message: Various linux fixes(2) Index: extgl.c CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/common/extgl.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/extgl.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- extgl.c 27 Mar 2003 15:16:34 -0000 1.8 +++ extgl.c 27 Mar 2003 15:28:57 -0000 1.9 @@ -3237,11 +3237,11 @@ #ifdef _X11 int extgl_Open(Display *disp, int screen) { - lib_gl_handle = dlopen("libGL.so.1", RTLD_NOW | RTLD_GLOBAL); + 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_NOW | RTLD_GLOBAL); + lib_glu_handle = dlopen("libGLU.so", RTLD_LAZY | RTLD_GLOBAL); if (lib_glu_handle == NULL) return 1; if (extgl_InitGLX(disp, screen) != 0) |