From: Francesco M. <fr...@us...> - 2008-01-15 20:19:59
|
Update of /cvsroot/wxlua/wxLua/apps/build/bakefiles In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2609/apps/build/bakefiles Modified Files: apps.bkl Log Message: don't build lua interpreter and lua compiler if using system lua Index: apps.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/build/bakefiles/apps.bkl,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** apps.bkl 15 Jan 2008 18:37:26 -0000 1.59 --- apps.bkl 15 Jan 2008 20:19:55 -0000 1.60 *************** *** 96,100 **** <!-- ================================================================== --> ! <exe id="app_lua" template="luaapp"> <!--- the .. is because SRCDIR is always set to us to the wxLua/apps folder and thus we only need to use .. to get to the module root --> --- 96,100 ---- <!-- ================================================================== --> ! <exe id="app_lua" template="luaapp" cond="USE_SYSTEM_LUA=='0'"> <!--- the .. is because SRCDIR is always set to us to the wxLua/apps folder and thus we only need to use .. to get to the module root --> *************** *** 118,122 **** --> ! <exe id="app_luac" template="luaapp" cond="SHARED=='0'"> <sources> <!--- the .. is because SRCDIR is always set to us to the wxLua/apps --- 118,122 ---- --> ! <exe id="app_luac" template="luaapp" cond="SHARED=='0' and USE_SYSTEM_LUA=='0'"> <sources> <!--- the .. is because SRCDIR is always set to us to the wxLua/apps |