From: Elias N. <eli...@us...> - 2002-12-11 07:16:36
|
Update of /cvsroot/java-game-lib/LWJGL/src/native In directory sc8-pr-cvs1:/tmp/cvs-serv22313 Modified Files: config.h.in configure.in Log Message: Switched to dynamic loading of gl functions and libs Index: config.h.in CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/config.h.in =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/config.h.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- config.h.in 28 Nov 2002 22:40:05 -0000 1.1 +++ config.h.in 11 Dec 2002 07:16:31 -0000 1.2 @@ -6,12 +6,6 @@ /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H -/* Define to 1 if you have the `GL' library (-lGL). */ -#undef HAVE_LIBGL - -/* Define to 1 if you have the `GLU' library (-lGLU). */ -#undef HAVE_LIBGLU - /* Define to 1 if you have the `openal' library (-lopenal). */ #undef HAVE_LIBOPENAL Index: configure.in CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/configure.in =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/configure.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- configure.in 30 Nov 2002 21:36:12 -0000 1.5 +++ configure.in 11 Dec 2002 07:16:31 -0000 1.6 @@ -56,12 +56,8 @@ fi dnl Checks for libraries. -dnl Replace `main' with a function in -lGL: LIBS='-L/usr/X11R6/lib' AC_PATH_X -AC_CHECK_LIB(GL, main,, AC_MSG_ERROR(GL is required)) -dnl Replace `main' with a function in -lGLU: -AC_CHECK_LIB(GLU, main,, AC_MSG_ERROR(GLU is required)) dnl Replace `main' with a function in -lX11: AC_CHECK_LIB(X11, main,, AC_MSG_ERROR(X11 is required)) dnl Replace `main' with a function in -lXext: |