From: John L. <jr...@us...> - 2007-04-25 02:52:28
|
Update of /cvsroot/wxlua/wxLua/modules/lua In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9859/wxLua/modules/lua Modified Files: COPYRIGHT HISTORY INSTALL Makefile README Log Message: Updated lua to 5.1.2 Index: README =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 29 Mar 2006 05:48:10 -0000 1.2 --- README 25 Apr 2007 02:52:20 -0000 1.3 *************** *** 25,30 **** ------------ Lua is implemented in pure ANSI C, and compiles unmodified in all known ! platforms that have an ANSI C compiler. Under Unix, simply typing "make" ! should work. See INSTALL for detailed instructions. * Origin --- 25,30 ---- ------------ Lua is implemented in pure ANSI C, and compiles unmodified in all known ! platforms that have an ANSI C compiler. In most Unix-like platforms, simply ! do "make" with a suitable target. See INSTALL for detailed instructions. * Origin Index: Makefile =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 12 Jun 2006 03:50:36 -0000 1.4 --- Makefile 25 Apr 2007 02:52:20 -0000 1.5 *************** *** 10,14 **** # Where to install. The installation starts in the src directory, so take care # if INSTALL_TOP is not an absolute path. (Man pages are installed from the ! # doc directory.) # INSTALL_TOP= /usr/local --- 10,15 ---- # Where to install. The installation starts in the src directory, so take care # if INSTALL_TOP is not an absolute path. (Man pages are installed from the ! # doc directory.) You may want to make these paths consistent with LUA_ROOT, ! # LUA_LDIR, and LUA_CDIR in luaconf.h (and also with etc/lua.pc). # INSTALL_TOP= /usr/local *************** *** 38,42 **** # Convenience platforms targets. ! PLATS= aix ansi bsd generic linux macosx mingw posix solaris # What to install. --- 39,43 ---- # Convenience platforms targets. ! PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris # What to install. *************** *** 48,52 **** # Lua version and release. V= 5.1 ! R= 5.1.1 all: $(PLAT) --- 49,53 ---- # Lua version and release. V= 5.1 ! R= 5.1.2 all: $(PLAT) *************** *** 120,129 **** @echo "-- EOF" - # show what has changed since we unpacked - newer: - @$(FIND) . -newer MANIFEST -type f - # list targets that do not create files (but not all makes understand .PHONY) ! .PHONY: all $(PLATS) clean test install local none dummy echo pecho lecho newer # (end of Makefile) --- 121,126 ---- @echo "-- EOF" # list targets that do not create files (but not all makes understand .PHONY) ! .PHONY: all $(PLATS) clean test install local none dummy echo pecho lecho # (end of Makefile) Index: COPYRIGHT =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/COPYRIGHT,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** COPYRIGHT 29 Mar 2006 05:48:10 -0000 1.2 --- COPYRIGHT 25 Apr 2007 02:52:20 -0000 1.3 *************** *** 10,14 **** =============================================================================== ! Copyright (C) 1994-2006 Lua.org, PUC-Rio. Permission is hereby granted, free of charge, to any person obtaining a copy --- 10,14 ---- =============================================================================== ! Copyright (C) 1994-2007 Lua.org, PUC-Rio. Permission is hereby granted, free of charge, to any person obtaining a copy Index: INSTALL =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** INSTALL 29 Mar 2006 05:48:10 -0000 1.2 --- INSTALL 25 Apr 2007 02:52:20 -0000 1.3 *************** *** 9,13 **** see if your platform is listed. If so, just do "make xxx", where xxx is your platform name. The platforms currently supported are: ! ansi bsd generic linux macosx mingw posix solaris See below for customization instructions and for instructions on how --- 9,16 ---- see if your platform is listed. If so, just do "make xxx", where xxx is your platform name. The platforms currently supported are: ! aix ansi bsd freebsd generic linux macosx mingw posix solaris ! ! If your platform is not listed, try the closest one or posix, generic, ! ansi, in this order. See below for customization instructions and for instructions on how *************** *** 82,87 **** compiler: library, luac.c print.c ! If you use Visual Studio .NET, you can use etc/luavs.bat ! in its "Command Prompt". If all you want is to build the Lua interpreter, you may put all .c files --- 85,90 ---- compiler: library, luac.c print.c ! If you use Visual Studio .NET, you can use etc/luavs.bat in its ! "Command Prompt". If all you want is to build the Lua interpreter, you may put all .c files Index: HISTORY =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/HISTORY,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HISTORY 29 Mar 2006 05:48:10 -0000 1.2 --- HISTORY 25 Apr 2007 02:52:20 -0000 1.3 *************** *** 15,19 **** + new functions: lua_createtable, lua_get(set)field, lua_push(to)integer. + user supplies memory allocator (lua_open becomes lua_newstate). ! + luaopen_* functionst must be called through Lua. Implementation: + new configuration scheme via luaconf.h. --- 15,19 ---- + new functions: lua_createtable, lua_get(set)field, lua_push(to)integer. + user supplies memory allocator (lua_open becomes lua_newstate). ! + luaopen_* functions must be called through Lua. Implementation: + new configuration scheme via luaconf.h. |