summaryrefslogtreecommitdiff
path: root/external/mit/lua/usr.bin
AgeCommit message (Collapse)Author
2014-07-19lua: updated from 5.1 to 5.3 work3lneto
* 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
2011-01-19libterminfo needs to come after libedit for static linkingplunky
(while here, coalesce LDADD/DPADD lines)
2011-01-19add note that the static linking of liblua is intentionalplunky
("hidden" symbols need to be reached)
2011-01-19link against the dynamic library [liblua.so]plunky
we could link against the static liblua.a here (the Lua dist build does that) but would need to pass "-Wl,--export-dynamic" to ensure that all symbols were available, as dlopen() with other modules may cause problems later.
2011-01-19DPADD for libm tooplunky
2011-01-19include libm and libedit in DPADDplunky
2010-11-05To allow static linking, specify -lterminfo as well, and don't relyhe
on shared library inter-dependencies to pull everything together. Fixes the build for sun2.
2010-10-31Lua build infrastructurembalmer