|
From: Elias N. <eli...@us...> - 2005-05-17 07:44:24
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common/devil In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8779/devil Modified Files: extil.c extilu.c extilut.c Log Message: Mac OS X Devil: Make sure we include our own header files last so that our definition of bool is used Index: extilut.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/devil/extilut.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- extilut.c 28 Mar 2005 14:53:30 -0000 1.4 +++ extilut.c 17 May 2005 07:43:40 -0000 1.5 @@ -1,5 +1,3 @@ -#include "extilut.h" - /* Handle to ilut Library */ #ifdef _WIN32 static HMODULE devILUThandle; @@ -15,6 +13,7 @@ extern const struct mach_header* devILhandle; static const struct mach_header* devILUThandle; // never actually used, just makes it shut up #endif +#include "extilut.h" /** * Retrieves a function pointer from the ilut library Index: extil.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/devil/extil.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- extil.c 29 Mar 2005 10:32:42 -0000 1.7 +++ extil.c 17 May 2005 07:43:40 -0000 1.8 @@ -1,5 +1,3 @@ -#include "extil.h" - /* Handle to devil Library */ #ifdef _WIN32 static HMODULE devILhandle; @@ -13,6 +11,7 @@ #include <string.h> const struct mach_header* devILhandle = NULL; #endif +#include "extil.h" /** * Retrieves a function pointer from the devil library Index: extilu.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/devil/extilu.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- extilu.c 28 Mar 2005 14:59:22 -0000 1.5 +++ extilu.c 17 May 2005 07:43:40 -0000 1.6 @@ -1,5 +1,3 @@ -#include "extilu.h" - /* Handle to ilu Library */ #ifdef _WIN32 static HMODULE devILUhandle; @@ -15,6 +13,7 @@ extern const struct mach_header* devILhandle; static const struct mach_header* devILUhandle; // never actually used, just makes it shut up #endif +#include "extilu.h" /** * Retrieves a function pointer from the ilu library |