From: John L. <jr...@us...> - 2007-06-25 03:32:39
|
Update of /cvsroot/wxlua/wxLua/samples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6003/wxLua/samples Modified Files: luamodule.wx.lua Log Message: Allow loading luamodule from same dir as wx.dll fix exporting data in wxldebug.h Index: luamodule.wx.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/samples/luamodule.wx.lua,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** luamodule.wx.lua 31 May 2007 17:18:55 -0000 1.4 --- luamodule.wx.lua 25 Jun 2007 03:32:35 -0000 1.5 *************** *** 16,20 **** -- wxLua has been compiled in shared mode (--enable-shared on Unix, -- SHARED=1 on Windows) ! package.cpath = ";;../lib/?.so;../lib/vc_dll/?.dll;../lib/bcc_dll/?.dll;../lib/mingw_dll/?.dll;" require("wx") --- 16,20 ---- -- wxLua has been compiled in shared mode (--enable-shared on Unix, -- SHARED=1 on Windows) ! package.cpath = ";;../lib/?.so;./?.dll;../lib/vc_dll/?.dll;../lib/bcc_dll/?.dll;../lib/mingw_dll/?.dll;" require("wx") |