From: Francesco M. <fr...@us...> - 2007-02-09 17:34:28
|
Update of /cvsroot/wxlua/wxLua/build/bakefiles In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18667/build/bakefiles Modified Files: options.bkl wxluabase.bkl Log Message: added the THREADING option to fix the problem occurring when using RUNTIME_LIBS=static as reported by Ryan Pusztai Index: options.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/bakefiles/options.bkl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** options.bkl 3 Feb 2007 19:12:22 -0000 1.5 --- options.bkl 9 Feb 2007 17:34:21 -0000 1.6 *************** *** 48,51 **** --- 48,52 ---- </option> + <!-- Some advanced options: --> <if cond="FORMAT!='autoconf'"> <option name="RUNTIME_LIBS"> *************** *** 59,62 **** --- 60,76 ---- </description> </option> + <option name="THREADING"> + <values>multi,single</values> + <default-value>multi</default-value> + <description> + This is an advanced option. Handle with care. + The thread model to use: use 'multi' default to allow + multi-threading. + </description> + </option> + <option + + + Enable threading in compiled code. </if> </if> Index: wxluabase.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/bakefiles/wxluabase.bkl,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** wxluabase.bkl 3 Feb 2007 19:12:22 -0000 1.33 --- wxluabase.bkl 9 Feb 2007 17:34:21 -0000 1.34 *************** *** 237,240 **** --- 237,241 ---- <if cond="FORMAT!='autoconf' and TARGETING_IDE=='0'"> <runtime-libs>$(RUNTIME_LIBS)</runtime-libs> + <threading>$(USE_THREADS)</threading> </if> |