From: John L. <jr...@us...> - 2007-07-16 19:36:07
|
Update of /cvsroot/wxlua/wxLua/build/msw In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15684/wxLua/build/msw Modified Files: makefile.bcc makefile.gcc makefile.vc makefile.wat Log Message: Separate wxWidgets bindings into wxadv, wxaui, wxbase, wxcore, etc... Allow bool = 1/0 and 1/0 = bool in wxlua_getboolean/integer/number Index: makefile.vc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** makefile.vc 4 Jul 2007 14:57:43 -0000 1.48 --- makefile.vc 16 Jul 2007 19:34:29 -0000 1.49 *************** *** 71,84 **** RUNTIME_LIBS = dynamic ! # Does the wxLua bindings for wxAUI need to be compiled ? [0,1] USE_WXBINDAUI = 1 ! # Does the wxLua bindings for wxSTC need to be compiled ? [0,1] USE_WXBINDSTC = 1 # Does the wxLua debug support need to be compiled ? [0,1] USE_WXLUADEBUG = 1 ! # Does the wxLua socket support need to be compiled ? [0,1] USE_WXLUASOCKET = 1 --- 71,114 ---- RUNTIME_LIBS = dynamic ! # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] ! USE_WXBINDADV = 1 ! ! # Do the wxLua bindings for the wxAUI lib need to be compiled ? [0,1] USE_WXBINDAUI = 1 ! # Do the wxLua bindings for the wxBase lib need to be compiled ? [0,1] ! USE_WXBINDBASE = 1 ! ! # Do the wxLua bindings for the wxCore lib need to be compiled ? [0,1] ! USE_WXBINDCORE = 1 ! ! # Do the wxLua bindings for the wxGL lib need to be compiled ? [0,1] ! USE_WXBINDGL = 1 ! ! # Do the wxLua bindings for the wxHTML lib need to be compiled ? [0,1] ! USE_WXBINDHTML = 1 ! ! # Do the wxLua bindings for the wxMedia lib need to be compiled ? [0,1] ! USE_WXBINDMEDIA = 1 ! ! # Do the wxLua bindings for the wxNet lib need to be compiled ? [0,1] ! USE_WXBINDNET = 1 ! ! # Do the wxLua bindings for the wxRichText lib need to be compiled ? [0,1] ! USE_WXBINDRICHTEXT = 0 ! ! # Do the wxLua bindings for wxSTC need to be compiled ? [0,1] USE_WXBINDSTC = 1 + # Do the wxLua bindings for wxXML need to be compiled ? [0,1] + USE_WXBINDXML = 1 + + # Do the wxLua bindings for wxXRC need to be compiled ? [0,1] + USE_WXBINDXRC = 1 + # Does the wxLua debug support need to be compiled ? [0,1] USE_WXLUADEBUG = 1 ! # Does the wxLua debug socket support need to be compiled ? [0,1] USE_WXLUASOCKET = 1 *************** *** 116,124 **** USE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" LUA_DIR="$(LUA_DIR)" \ RUNTIME_LIBS="$(RUNTIME_LIBS)" THREADING="$(THREADING)" \ ! USE_WXBINDAUI="$(USE_WXBINDAUI)" USE_WXBINDSTC="$(USE_WXBINDSTC)" \ ! USE_WXLUADEBUG="$(USE_WXLUADEBUG)" USE_WXLUASOCKET="$(USE_WXLUASOCKET)" \ ! USE_LUAMODULE="$(USE_LUAMODULE)" USE_WXLUAAPP="$(USE_WXLUAAPP)" \ ! USE_WXLUACANAPP="$(USE_WXLUACANAPP)" WXSTEDIT_DIR="$(WXSTEDIT_DIR)" \ ! USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" \ USE_WXLUAFREEZEAPP="$(USE_WXLUAFREEZEAPP)" --- 146,159 ---- USE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" LUA_DIR="$(LUA_DIR)" \ RUNTIME_LIBS="$(RUNTIME_LIBS)" THREADING="$(THREADING)" \ ! USE_WXBINDADV="$(USE_WXBINDADV)" USE_WXBINDAUI="$(USE_WXBINDAUI)" \ ! USE_WXBINDBASE="$(USE_WXBINDBASE)" USE_WXBINDCORE="$(USE_WXBINDCORE)" \ ! USE_WXBINDGL="$(USE_WXBINDGL)" USE_WXBINDHTML="$(USE_WXBINDHTML)" \ ! USE_WXBINDMEDIA="$(USE_WXBINDMEDIA)" USE_WXBINDNET="$(USE_WXBINDNET)" \ ! USE_WXBINDRICHTEXT="$(USE_WXBINDRICHTEXT)" \ ! USE_WXBINDSTC="$(USE_WXBINDSTC)" USE_WXBINDXML="$(USE_WXBINDXML)" \ ! USE_WXBINDXRC="$(USE_WXBINDXRC)" USE_WXLUADEBUG="$(USE_WXLUADEBUG)" \ ! USE_WXLUASOCKET="$(USE_WXLUASOCKET)" USE_LUAMODULE="$(USE_LUAMODULE)" \ ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUACANAPP="$(USE_WXLUACANAPP)" \ ! WXSTEDIT_DIR="$(WXSTEDIT_DIR)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" \ USE_WXLUAFREEZEAPP="$(USE_WXLUAFREEZEAPP)" Index: makefile.bcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.bcc,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** makefile.bcc 4 Jul 2007 05:39:15 -0000 1.42 --- makefile.bcc 16 Jul 2007 19:34:28 -0000 1.43 *************** *** 115,128 **** !endif ! # Does the wxLua bindings for wxAUI need to be compiled ? [0,1] !ifndef USE_WXBINDAUI USE_WXBINDAUI = 1 !endif ! # Does the wxLua bindings for wxSTC need to be compiled ? [0,1] !ifndef USE_WXBINDSTC USE_WXBINDSTC = 1 !endif # Does the wxLua debug support need to be compiled ? [0,1] !ifndef USE_WXLUADEBUG --- 115,178 ---- !endif ! # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDADV ! USE_WXBINDADV = 1 ! !endif ! ! # Do the wxLua bindings for the wxAUI lib need to be compiled ? [0,1] !ifndef USE_WXBINDAUI USE_WXBINDAUI = 1 !endif ! # Do the wxLua bindings for the wxBase lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDBASE ! USE_WXBINDBASE = 1 ! !endif ! ! # Do the wxLua bindings for the wxCore lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDCORE ! USE_WXBINDCORE = 1 ! !endif ! ! # Do the wxLua bindings for the wxGL lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDGL ! USE_WXBINDGL = 1 ! !endif ! ! # Do the wxLua bindings for the wxHTML lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDHTML ! USE_WXBINDHTML = 1 ! !endif ! ! # Do the wxLua bindings for the wxMedia lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDMEDIA ! USE_WXBINDMEDIA = 1 ! !endif ! ! # Do the wxLua bindings for the wxNet lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDNET ! USE_WXBINDNET = 1 ! !endif ! ! # Do the wxLua bindings for the wxRichText lib need to be compiled ? [0,1] ! !ifndef USE_WXBINDRICHTEXT ! USE_WXBINDRICHTEXT = 0 ! !endif ! ! # Do the wxLua bindings for wxSTC need to be compiled ? [0,1] !ifndef USE_WXBINDSTC USE_WXBINDSTC = 1 !endif + # Do the wxLua bindings for wxXML need to be compiled ? [0,1] + !ifndef USE_WXBINDXML + USE_WXBINDXML = 1 + !endif + + # Do the wxLua bindings for wxXRC need to be compiled ? [0,1] + !ifndef USE_WXBINDXRC + USE_WXBINDXRC = 1 + !endif + # Does the wxLua debug support need to be compiled ? [0,1] !ifndef USE_WXLUADEBUG *************** *** 130,134 **** !endif ! # Does the wxLua socket support need to be compiled ? [0,1] !ifndef USE_WXLUASOCKET USE_WXLUASOCKET = 1 --- 180,184 ---- !endif ! # Does the wxLua debug socket support need to be compiled ? [0,1] !ifndef USE_WXLUASOCKET USE_WXLUASOCKET = 1 *************** *** 180,185 **** -DUSE_APPS="$(USE_APPS)" -DUSE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" \ -DLUA_DIR="$(LUA_DIR)" -DRUNTIME_LIBS="$(RUNTIME_LIBS)" \ ! -DTHREADING="$(THREADING)" -DUSE_WXBINDAUI="$(USE_WXBINDAUI)" \ ! -DUSE_WXBINDSTC="$(USE_WXBINDSTC)" -DUSE_WXLUADEBUG="$(USE_WXLUADEBUG)" \ -DUSE_WXLUASOCKET="$(USE_WXLUASOCKET)" -DUSE_LUAMODULE="$(USE_LUAMODULE)" \ -DUSE_WXLUAAPP="$(USE_WXLUAAPP)" -DUSE_WXLUACANAPP="$(USE_WXLUACANAPP)" \ --- 230,241 ---- -DUSE_APPS="$(USE_APPS)" -DUSE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" \ -DLUA_DIR="$(LUA_DIR)" -DRUNTIME_LIBS="$(RUNTIME_LIBS)" \ ! -DTHREADING="$(THREADING)" -DUSE_WXBINDADV="$(USE_WXBINDADV)" \ ! -DUSE_WXBINDAUI="$(USE_WXBINDAUI)" -DUSE_WXBINDBASE="$(USE_WXBINDBASE)" \ ! -DUSE_WXBINDCORE="$(USE_WXBINDCORE)" -DUSE_WXBINDGL="$(USE_WXBINDGL)" \ ! -DUSE_WXBINDHTML="$(USE_WXBINDHTML)" \ ! -DUSE_WXBINDMEDIA="$(USE_WXBINDMEDIA)" -DUSE_WXBINDNET="$(USE_WXBINDNET)" \ ! -DUSE_WXBINDRICHTEXT="$(USE_WXBINDRICHTEXT)" \ ! -DUSE_WXBINDSTC="$(USE_WXBINDSTC)" -DUSE_WXBINDXML="$(USE_WXBINDXML)" \ ! -DUSE_WXBINDXRC="$(USE_WXBINDXRC)" -DUSE_WXLUADEBUG="$(USE_WXLUADEBUG)" \ -DUSE_WXLUASOCKET="$(USE_WXLUASOCKET)" -DUSE_LUAMODULE="$(USE_LUAMODULE)" \ -DUSE_WXLUAAPP="$(USE_WXLUAAPP)" -DUSE_WXLUACANAPP="$(USE_WXLUACANAPP)" \ Index: makefile.wat =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.wat,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** makefile.wat 4 Jul 2007 14:57:43 -0000 1.47 --- makefile.wat 16 Jul 2007 19:34:29 -0000 1.48 *************** *** 71,84 **** RUNTIME_LIBS = dynamic ! # Does the wxLua bindings for wxAUI need to be compiled ? [0,1] USE_WXBINDAUI = 1 ! # Does the wxLua bindings for wxSTC need to be compiled ? [0,1] USE_WXBINDSTC = 1 # Does the wxLua debug support need to be compiled ? [0,1] USE_WXLUADEBUG = 1 ! # Does the wxLua socket support need to be compiled ? [0,1] USE_WXLUASOCKET = 1 --- 71,114 ---- RUNTIME_LIBS = dynamic ! # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] ! USE_WXBINDADV = 1 ! ! # Do the wxLua bindings for the wxAUI lib need to be compiled ? [0,1] USE_WXBINDAUI = 1 ! # Do the wxLua bindings for the wxBase lib need to be compiled ? [0,1] ! USE_WXBINDBASE = 1 ! ! # Do the wxLua bindings for the wxCore lib need to be compiled ? [0,1] ! USE_WXBINDCORE = 1 ! ! # Do the wxLua bindings for the wxGL lib need to be compiled ? [0,1] ! USE_WXBINDGL = 1 ! ! # Do the wxLua bindings for the wxHTML lib need to be compiled ? [0,1] ! USE_WXBINDHTML = 1 ! ! # Do the wxLua bindings for the wxMedia lib need to be compiled ? [0,1] ! USE_WXBINDMEDIA = 1 ! ! # Do the wxLua bindings for the wxNet lib need to be compiled ? [0,1] ! USE_WXBINDNET = 1 ! ! # Do the wxLua bindings for the wxRichText lib need to be compiled ? [0,1] ! USE_WXBINDRICHTEXT = 0 ! ! # Do the wxLua bindings for wxSTC need to be compiled ? [0,1] USE_WXBINDSTC = 1 + # Do the wxLua bindings for wxXML need to be compiled ? [0,1] + USE_WXBINDXML = 1 + + # Do the wxLua bindings for wxXRC need to be compiled ? [0,1] + USE_WXBINDXRC = 1 + # Does the wxLua debug support need to be compiled ? [0,1] USE_WXLUADEBUG = 1 ! # Does the wxLua debug socket support need to be compiled ? [0,1] USE_WXLUASOCKET = 1 *************** *** 168,176 **** USE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" LUA_DIR="$(LUA_DIR)" & RUNTIME_LIBS="$(RUNTIME_LIBS)" THREADING="$(THREADING)" & ! USE_WXBINDAUI="$(USE_WXBINDAUI)" USE_WXBINDSTC="$(USE_WXBINDSTC)" & ! USE_WXLUADEBUG="$(USE_WXLUADEBUG)" USE_WXLUASOCKET="$(USE_WXLUASOCKET)" & ! USE_LUAMODULE="$(USE_LUAMODULE)" USE_WXLUAAPP="$(USE_WXLUAAPP)" & ! USE_WXLUACANAPP="$(USE_WXLUACANAPP)" WXSTEDIT_DIR="$(WXSTEDIT_DIR)" & ! USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" & USE_WXLUAFREEZEAPP="$(USE_WXLUAFREEZEAPP)" --- 198,211 ---- USE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" LUA_DIR="$(LUA_DIR)" & RUNTIME_LIBS="$(RUNTIME_LIBS)" THREADING="$(THREADING)" & ! USE_WXBINDADV="$(USE_WXBINDADV)" USE_WXBINDAUI="$(USE_WXBINDAUI)" & ! USE_WXBINDBASE="$(USE_WXBINDBASE)" USE_WXBINDCORE="$(USE_WXBINDCORE)" & ! USE_WXBINDGL="$(USE_WXBINDGL)" USE_WXBINDHTML="$(USE_WXBINDHTML)" & ! USE_WXBINDMEDIA="$(USE_WXBINDMEDIA)" USE_WXBINDNET="$(USE_WXBINDNET)" & ! USE_WXBINDRICHTEXT="$(USE_WXBINDRICHTEXT)" & ! USE_WXBINDSTC="$(USE_WXBINDSTC)" USE_WXBINDXML="$(USE_WXBINDXML)" & ! USE_WXBINDXRC="$(USE_WXBINDXRC)" USE_WXLUADEBUG="$(USE_WXLUADEBUG)" & ! USE_WXLUASOCKET="$(USE_WXLUASOCKET)" USE_LUAMODULE="$(USE_LUAMODULE)" & ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUACANAPP="$(USE_WXLUACANAPP)" & ! WXSTEDIT_DIR="$(WXSTEDIT_DIR)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" & USE_WXLUAFREEZEAPP="$(USE_WXLUAFREEZEAPP)" Index: makefile.gcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.gcc,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** makefile.gcc 4 Jul 2007 14:57:43 -0000 1.45 --- makefile.gcc 16 Jul 2007 19:34:29 -0000 1.46 *************** *** 65,78 **** RUNTIME_LIBS := dynamic ! # Does the wxLua bindings for wxAUI need to be compiled ? [0,1] USE_WXBINDAUI := 1 ! # Does the wxLua bindings for wxSTC need to be compiled ? [0,1] USE_WXBINDSTC := 1 # Does the wxLua debug support need to be compiled ? [0,1] USE_WXLUADEBUG := 1 ! # Does the wxLua socket support need to be compiled ? [0,1] USE_WXLUASOCKET := 1 --- 65,108 ---- RUNTIME_LIBS := dynamic ! # Do the wxLua bindings for the wxAdv lib need to be compiled ? [0,1] ! USE_WXBINDADV := 1 ! ! # Do the wxLua bindings for the wxAUI lib need to be compiled ? [0,1] USE_WXBINDAUI := 1 ! # Do the wxLua bindings for the wxBase lib need to be compiled ? [0,1] ! USE_WXBINDBASE := 1 ! ! # Do the wxLua bindings for the wxCore lib need to be compiled ? [0,1] ! USE_WXBINDCORE := 1 ! ! # Do the wxLua bindings for the wxGL lib need to be compiled ? [0,1] ! USE_WXBINDGL := 1 ! ! # Do the wxLua bindings for the wxHTML lib need to be compiled ? [0,1] ! USE_WXBINDHTML := 1 ! ! # Do the wxLua bindings for the wxMedia lib need to be compiled ? [0,1] ! USE_WXBINDMEDIA := 1 ! ! # Do the wxLua bindings for the wxNet lib need to be compiled ? [0,1] ! USE_WXBINDNET := 1 ! ! # Do the wxLua bindings for the wxRichText lib need to be compiled ? [0,1] ! USE_WXBINDRICHTEXT := 0 ! ! # Do the wxLua bindings for wxSTC need to be compiled ? [0,1] USE_WXBINDSTC := 1 + # Do the wxLua bindings for wxXML need to be compiled ? [0,1] + USE_WXBINDXML := 1 + + # Do the wxLua bindings for wxXRC need to be compiled ? [0,1] + USE_WXBINDXRC := 1 + # Does the wxLua debug support need to be compiled ? [0,1] USE_WXLUADEBUG := 1 ! # Does the wxLua debug socket support need to be compiled ? [0,1] USE_WXLUASOCKET := 1 *************** *** 110,118 **** USE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" LUA_DIR="$(LUA_DIR)" \ RUNTIME_LIBS="$(RUNTIME_LIBS)" THREADING="$(THREADING)" \ ! USE_WXBINDAUI="$(USE_WXBINDAUI)" USE_WXBINDSTC="$(USE_WXBINDSTC)" \ ! USE_WXLUADEBUG="$(USE_WXLUADEBUG)" USE_WXLUASOCKET="$(USE_WXLUASOCKET)" \ ! USE_LUAMODULE="$(USE_LUAMODULE)" USE_WXLUAAPP="$(USE_WXLUAAPP)" \ ! USE_WXLUACANAPP="$(USE_WXLUACANAPP)" WXSTEDIT_DIR="$(WXSTEDIT_DIR)" \ ! USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" \ USE_WXLUAFREEZEAPP="$(USE_WXLUAFREEZEAPP)" --- 140,153 ---- USE_SYSTEM_LUA="$(USE_SYSTEM_LUA)" LUA_DIR="$(LUA_DIR)" \ RUNTIME_LIBS="$(RUNTIME_LIBS)" THREADING="$(THREADING)" \ ! USE_WXBINDADV="$(USE_WXBINDADV)" USE_WXBINDAUI="$(USE_WXBINDAUI)" \ ! USE_WXBINDBASE="$(USE_WXBINDBASE)" USE_WXBINDCORE="$(USE_WXBINDCORE)" \ ! USE_WXBINDGL="$(USE_WXBINDGL)" USE_WXBINDHTML="$(USE_WXBINDHTML)" \ ! USE_WXBINDMEDIA="$(USE_WXBINDMEDIA)" USE_WXBINDNET="$(USE_WXBINDNET)" \ ! USE_WXBINDRICHTEXT="$(USE_WXBINDRICHTEXT)" \ ! USE_WXBINDSTC="$(USE_WXBINDSTC)" USE_WXBINDXML="$(USE_WXBINDXML)" \ ! USE_WXBINDXRC="$(USE_WXBINDXRC)" USE_WXLUADEBUG="$(USE_WXLUADEBUG)" \ ! USE_WXLUASOCKET="$(USE_WXLUASOCKET)" USE_LUAMODULE="$(USE_LUAMODULE)" \ ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUACANAPP="$(USE_WXLUACANAPP)" \ ! WXSTEDIT_DIR="$(WXSTEDIT_DIR)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" \ USE_WXLUAFREEZEAPP="$(USE_WXLUAFREEZEAPP)" |