From: Francesco M. <fr...@us...> - 2006-12-19 21:12:07
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19847/modules/wxlua/include Modified Files: wxlbind.h wxlstate.h Log Message: now BUILDDIR is set exactly like the wxWidgets builddir system LUA is now used if available on Unix or on Windows with USE_SYSTEM_LUA=1 changed the way the lua headers are included (removed the 'lua/include' prefix) to make it possible to use external lua Now when using built-in LUA the generated library is named lua5.1 and it overwrites any eventually preexisting lua library (when installed). Fixed the "samples" directory copy when srcdir==. Index: wxlbind.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlbind.h,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** wxlbind.h 17 Dec 2006 07:47:17 -0000 1.32 --- wxlbind.h 19 Dec 2006 21:12:03 -0000 1.33 *************** *** 14,19 **** extern "C" { ! #include "lua/include/lualib.h" ! #include "lua/include/lauxlib.h" } --- 14,19 ---- extern "C" { ! #include "lualib.h" ! #include "lauxlib.h" } Index: wxlstate.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** wxlstate.h 14 Dec 2006 01:01:26 -0000 1.57 --- wxlstate.h 19 Dec 2006 21:12:03 -0000 1.58 *************** *** 29,35 **** extern "C" { ! #include "lua/include/lua.h" ! #include "lua/include/lualib.h" ! #include "lua/include/lauxlib.h" // To not include "lua.h" use these --- 29,35 ---- extern "C" { ! #include "lua.h" ! #include "lualib.h" ! #include "lauxlib.h" // To not include "lua.h" use these |