From: John L. <jr...@us...> - 2008-01-18 03:43:06
|
Update of /cvsroot/wxlua/wxLua/build/msw In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27192/wxLua/build/msw Modified Files: makefile.gcc makefile.vc makefile.wat Log Message: Update the Lua source to 5.1.3-rc1 Use <set var="VARS_DONT_ELIMINATE" append="1">THREADING</set> so it doesn't get stripped out by bakefile. Index: makefile.vc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** makefile.vc 15 Jan 2008 18:37:27 -0000 1.51 --- makefile.vc 18 Jan 2008 03:43:00 -0000 1.52 *************** *** 74,77 **** --- 74,82 ---- RUNTIME_LIBS = dynamic + # This is an advanced option. Handle with care. + # The thread model to use: use 'multi' default to allow + # multi-threading. [multi,single] + THREADING = multi + # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] USE_WXBINDADV = 1 Index: makefile.wat =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.wat,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** makefile.wat 15 Jan 2008 18:37:27 -0000 1.50 --- makefile.wat 18 Jan 2008 03:43:00 -0000 1.51 *************** *** 74,77 **** --- 74,82 ---- RUNTIME_LIBS = dynamic + # This is an advanced option. Handle with care. + # The thread model to use: use 'multi' default to allow + # multi-threading. [multi,single] + THREADING = multi + # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] USE_WXBINDADV = 1 Index: makefile.gcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.gcc,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** makefile.gcc 15 Jan 2008 18:37:27 -0000 1.48 --- makefile.gcc 18 Jan 2008 03:42:59 -0000 1.49 *************** *** 68,71 **** --- 68,76 ---- RUNTIME_LIBS := dynamic + # This is an advanced option. Handle with care. + # The thread model to use: use 'multi' default to allow + # multi-threading. [multi,single] + THREADING := multi + # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] USE_WXBINDADV := 1 |