175d053f66
This bugfix version fixes the following problems: 1. Metatable may access its own deallocated field when it has a self reference in __newindex. 2. Label between local definitions can mix-up their initializations. 3. gmatch iterator fails when called from a coroutine different from the one that created it.
6 lines
219 B
Makefile
6 lines
219 B
Makefile
# $NetBSD: version.mk,v 1.4 2016/06/06 22:18:07 alnsn Exp $
|
|
|
|
LUA_VERSION= 5.3.3
|
|
|
|
LUA_VERSION_MAJOR= ${LUA_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\1/}
|
|
LUA_VERSION_MINOR= ${LUA_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\2/}
|