From: John L. <jr...@us...> - 2007-07-16 19:35:51
|
Update of /cvsroot/wxlua/wxLua/bindings/wxluasocket In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15684/wxLua/bindings/wxluasocket Modified Files: Makefile wxluasocket.i wxluasocket_rules.lua 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 =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxluasocket/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 14 Jun 2007 01:23:07 -0000 1.4 --- Makefile 16 Jul 2007 19:34:15 -0000 1.5 *************** *** 1,11 **** ! # ! # File: makefile.unx # Author: John Labenski, J Winwood # Created: 2002 # Updated: # Copyright: (c) 2002. J Winwood - # - # - # Makefile for generating the bindings WXLUA_DIR = ../.. --- 1,7 ---- ! # File: Makefile # Author: John Labenski, J Winwood # Created: 2002 # Updated: # Copyright: (c) 2002. J Winwood WXLUA_DIR = ../.. *************** *** 14,18 **** genwxbind: ! @(cd $(WXLUA_DIR)/bindings && ../bin/lua -e"rulesFilename=\"wxluasocket/wxluasocket_rules.lua\"" genwxbind.lua > wxluasocket/error.txt) # do nothing to clean --- 10,14 ---- genwxbind: ! @(cd $(WXLUA_DIR)/bindings && ../bin/lua -e"rulesFilename=\"wxluasocket/wxluasocket_rules.lua\"" genwxbind.lua) # do nothing to clean Index: wxluasocket_rules.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxluasocket/wxluasocket_rules.lua,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** wxluasocket_rules.lua 14 Jun 2007 01:23:07 -0000 1.5 --- wxluasocket_rules.lua 16 Jul 2007 19:34:15 -0000 1.6 *************** *** 14,18 **** -- Set the C++ "namespace" that the bindings will be placed. ! -- eg. cpp function names contain this to prevent duplicate function names hook_cpp_namespace = "wxluasocket" --- 14,18 ---- -- Set the C++ "namespace" that the bindings will be placed. ! -- i.e. cpp function names contain this to prevent duplicate function names hook_cpp_namespace = "wxluasocket" *************** *** 71,78 **** "#include \"wx/defs.h\"\n".. "#include \"wxluasocket/include/wxluasocketdefs.h\"\n".. ! "#include \"wxbind/include/wxbind.h\"\n".. ! "#include \"wxluasocket/include/wxluasocket_bind.h\"\n".. ! "#ifndef wxUSE_WAVE\n#define wxUSE_WAVE 0\n#endif\n".. ! "#ifndef wxUSE_SOUND\n#define wxUSE_SOUND 0\n#endif\n" ------------------------------------------------------------------------------- --- 71,76 ---- "#include \"wx/defs.h\"\n".. "#include \"wxluasocket/include/wxluasocketdefs.h\"\n".. ! "#include \"wxbind/include/wxcore_bind.h\"\n".. ! "#include \"wxluasocket/include/wxluasocket_bind.h\"\n" ------------------------------------------------------------------------------- *************** *** 108,112 **** -- that changes any data types used by this binding. ! datatype_cache_input_fileTable = { wxlua_dir.."bindings/wxwidgets/wx_datatypes.lua" } ------------------------------------------------------------------------------- --- 106,110 ---- -- that changes any data types used by this binding. ! datatype_cache_input_fileTable = { wxlua_dir.."bindings/wxwidgets/wxcore_datatypes.lua" } ------------------------------------------------------------------------------- Index: wxluasocket.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxluasocket/wxluasocket.i,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** wxluasocket.i 17 Jun 2007 17:17:36 -0000 1.13 --- wxluasocket.i 16 Jul 2007 19:34:15 -0000 1.14 *************** *** 5,9 **** // Copyright: (c) 2001-2002 Lomtick Software. All rights reserved. // Licence: wxWidgets licence ! // wxWidgets: Updated to 2.6.3 // =========================================================================== --- 5,9 ---- // Copyright: (c) 2001-2002 Lomtick Software. All rights reserved. // Licence: wxWidgets licence ! // wxWidgets: Updated to 2.8.4 // =========================================================================== |