summaryrefslogtreecommitdiffstats
path: root/src/lua.mk
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2015-05-14 12:58:58 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2015-05-14 12:58:58 (GMT)
commitc7526852f06ce445e8b1546468c802fe075963bf (patch)
tree318bb52397a8410eefa44d728e2d7bd60e058484 /src/lua.mk
parent98a5771690279ebe89ac1b5134f02d4864cefa6b (diff)
downloadmxe-c7526852f06ce445e8b1546468c802fe075963bf.zip
mxe-c7526852f06ce445e8b1546468c802fe075963bf.tar.gz
mxe-c7526852f06ce445e8b1546468c802fe075963bf.tar.bz2
update Lua from 5.2.3 to 5.3.0
Package luabind was changed to be compatible with Lua 5.3.0: * do not use macro LUA_COMPAT_ALL. Lua 5.3 respects macros LUA_COMPAT_5_2 and LUA_COMPAT_5_1 and ignores macro LUA_COMPAT_ALL. * Instead, include needed compatibility defines into header luabind/config.hpp. Side effect of this is that C++ code using luabind doesn't need to define LUA_COMPAT_ALL. This definition was removed from the example of luabind.
Diffstat (limited to 'src/lua.mk')
-rw-r--r--src/lua.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lua.mk b/src/lua.mk
index eafe302..49b75b5 100644
--- a/src/lua.mk
+++ b/src/lua.mk
@@ -3,10 +3,10 @@
PKG := lua
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 5.2.3
+$(PKG)_VERSION := 5.3.0
# Shared version
-$(PKG)_SOVERS := 52
-$(PKG)_CHECKSUM := 926b7907bc8d274e063d42804666b40a3f3c124c
+$(PKG)_SOVERS := 53
+$(PKG)_CHECKSUM := 1c46d1c78c44039939e820126b86a6ae12dadfba
$(PKG)_SUBDIR := lua-$($(PKG)_VERSION)
$(PKG)_FILE := lua-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://www.lua.org/ftp/$($(PKG)_FILE)