From c4b1eb35e827c43a0dcf41027c98aaedf46be036 Mon Sep 17 00:00:00 2001 From: lneto Date: Sat, 19 Jul 2014 18:38:33 +0000 Subject: lua: updated from 5.1 to 5.3 work3 * lua(1): - changed lua_Integer to intmax_t - updated distrib/sets/lists and etc/mtree - updated bsd.lua.mk - fixed bozohttpd (lua-bozo.c) - compatibilized bindings: gpio, sqlite * lua(4): - removed floating-point and libc dependencies using '#ifndef _KERNEL' - fixed division by zero and exponentiation - libkern: added isalnum(), iscntrl(), isgraph(), isprint() and ispunct() - acpica: removed isprint() from acnetbsd.h - libc: moved strcspn.c, strpbrk.c and strspn.c to common - removed stub headers - compatibilized bindings: luapmf, luasystm * reorganized luaconf.h * updated doc/CHANGES and doc/RESPONSIBLE --- external/mit/lua/lib/liblua/Makefile | 15 ++++++++------- external/mit/lua/lib/liblua/shlib_version | 6 +++--- 2 files changed, 11 insertions(+), 10 deletions(-) (limited to 'external/mit/lua/lib/liblua') diff --git a/external/mit/lua/lib/liblua/Makefile b/external/mit/lua/lib/liblua/Makefile index 28b32bb0529..07aa0d50b14 100644 --- a/external/mit/lua/lib/liblua/Makefile +++ b/external/mit/lua/lib/liblua/Makefile @@ -1,11 +1,13 @@ -# $NetBSD: Makefile,v 1.5 2013/09/11 09:59:52 joerg Exp $ +# $NetBSD: Makefile,v 1.6 2014/07/19 18:38:34 lneto Exp $ LIB= lua -SRCS= lapi.c lauxlib.c lbaselib.c lcode.c ldblib.c ldebug.c ldo.c \ - ldump.c lfunc.c lgc.c linit.c liolib.c llex.c lmathlib.c \ - lmem.c loadlib.c lobject.c lopcodes.c loslib.c lparser.c \ - lstate.c lstring.c lstrlib.c ltable.c ltablib.c ltm.c \ - lundump.c lvm.c lzio.c +LUA_CORE= lapi.c lcode.c lctype.c ldebug.c ldo.c ldump.c lfunc.c lgc.c \ + llex.c lmem.c lobject.c lopcodes.c lparser.c lstate.c \ + lstring.c ltable.c ltm.c lundump.c lvm.c lzio.c +LUA_LIB= lauxlib.c lbaselib.c lbitlib.c lcorolib.c ldblib.c liolib.c \ + lmathlib.c loslib.c lstrlib.c ltablib.c lutf8lib.c loadlib.c \ + linit.c +SRCS= ${LUA_CORE} ${LUA_LIB} .include @@ -17,7 +19,6 @@ CWARNFLAGS.clang+= -Wno-empty-body LIBDPLIBS+= m ${NETBSDSRCDIR}/lib/libm -.PATH: ${NETBSDSRCDIR}/external/mit/lua/dist/etc .PATH: ${NETBSDSRCDIR}/external/mit/lua/dist/src .include diff --git a/external/mit/lua/lib/liblua/shlib_version b/external/mit/lua/lib/liblua/shlib_version index 1eb6ff6d988..6b0a45307e7 100644 --- a/external/mit/lua/lib/liblua/shlib_version +++ b/external/mit/lua/lib/liblua/shlib_version @@ -1,3 +1,3 @@ -# $NetBSD: shlib_version,v 1.1 2010/10/31 11:26:01 mbalmer Exp $ -major=1 -minor=0 +# $NetBSD: shlib_version,v 1.2 2014/07/19 18:38:34 lneto Exp $ +major=5 +minor=3 -- cgit