Update of /cvsroot/wxlua/wxLua/modules/lua
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13456/wxLua/modules/lua
Modified Files:
Makefile
Log Message:
update lua to 5.1.1
update wxLua bindings to changes in wxWidgets CVS HEAD 2.7.0
Index: Makefile
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/lua/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile 29 Mar 2006 05:48:10 -0000 1.3
--- Makefile 12 Jun 2006 03:50:36 -0000 1.4
***************
*** 46,51 ****
TO_MAN= lua.1 luac.1
! # Lua version. Currently used only for messages.
V= 5.1
all: $(PLAT)
--- 46,52 ----
TO_MAN= lua.1 luac.1
! # Lua version and release.
V= 5.1
+ R= 5.1.1
all: $(PLAT)
***************
*** 81,89 ****
echo:
@echo ""
! @echo "These are the parameters currently set in src/Makefile to build Lua $V:"
@echo ""
@cd src && $(MAKE) -s echo
@echo ""
! @echo "These are the parameters currently set in Makefile to install Lua $V:"
@echo ""
@echo "PLAT = $(PLAT)"
--- 82,90 ----
echo:
@echo ""
! @echo "These are the parameters currently set in src/Makefile to build Lua $R:"
@echo ""
@cd src && $(MAKE) -s echo
@echo ""
! @echo "These are the parameters currently set in Makefile to install Lua $R:"
@echo ""
@echo "PLAT = $(PLAT)"
***************
*** 104,107 ****
--- 105,109 ----
pecho:
@echo "V = $(V)"
+ @echo "R = $(R)"
@echo "TO_BIN = $(TO_BIN)"
@echo "TO_INC = $(TO_INC)"
***************
*** 112,117 ****
# uncomment the last sed expression if you want nil instead of empty strings
lecho:
! @echo "-- installation parameters for Lua $V"
@echo "VERSION = '$V'"
@$(MAKE) echo | grep = | sed -e 's/= /= "/' -e 's/$$/"/' #-e 's/""/nil/'
@echo "-- EOF"
--- 114,120 ----
# uncomment the last sed expression if you want nil instead of empty strings
lecho:
! @echo "-- installation parameters for Lua $R"
@echo "VERSION = '$V'"
+ @echo "RELEASE = '$R'"
@$(MAKE) echo | grep = | sed -e 's/= /= "/' -e 's/$$/"/' #-e 's/""/nil/'
@echo "-- EOF"
|