├── .gitignore ├── COPYING ├── all.config ├── bin ├── README └── srluab │ └── README ├── default.config ├── dll.config ├── exe.config ├── install.lua ├── lake ├── lakefile ├── lfs.config ├── lib └── README ├── linenoise ├── Makefile ├── README.markdown ├── example.c ├── linenoise.c └── linenoise.h ├── lua-5.2.2 ├── Makefile ├── lapi.c ├── lapi.h ├── lauxlib.c ├── lauxlib.h ├── lbaselib.c ├── lbitlib.c ├── lcode.c ├── lcode.h ├── lcorolib.c ├── lctype.c ├── lctype.h ├── ldblib.c ├── ldebug.c ├── ldebug.h ├── ldo.c ├── ldo.h ├── ldump.c ├── lfunc.c ├── lfunc.h ├── lgc.c ├── lgc.h ├── linit.c.in ├── liolib.c ├── llex.c ├── llex.h ├── llimits.h ├── llinit.c ├── lmathlib.c ├── lmem.c ├── lmem.h ├── loadlib.c ├── lobject.c ├── lobject.h ├── lopcodes.c ├── lopcodes.h ├── loslib.c ├── lparser.c ├── lparser.h ├── lstate.c ├── lstate.h ├── lstring.c ├── lstring.h ├── lstrlib.c ├── ltable.c ├── ltable.h ├── ltablib.c ├── ltm.c ├── ltm.h ├── lua.c ├── lua.h ├── lua.hpp ├── luac.c ├── luaconf.h ├── lualib.h ├── lundump.c ├── lundump.h ├── lvm.c ├── lvm.h ├── lzio.c └── lzio.h ├── lua-5.3.0 ├── Makefile ├── README ├── doc │ ├── contents.html │ ├── logo.gif │ ├── lua.1 │ ├── lua.css │ ├── luac.1 │ ├── manual.css │ ├── manual.html │ ├── osi-certified-72x60.png │ └── readme.html └── src │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── linit.c.in │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── lua.config ├── lua ├── README └── ml.lua ├── luaish ├── config.lua ├── lua.lua ├── luaish.lua └── t.lua ├── modules ├── bc.lake ├── bc │ ├── Makefile │ ├── README │ ├── config.h │ ├── lbc.c │ ├── number.c │ ├── number.h │ └── test.lua ├── complex.lake ├── complex │ ├── README │ ├── lcomplex.c │ └── test.lua ├── curses_c.lake ├── inotify.lake ├── lfs │ ├── COPYING │ ├── lfs.c │ ├── lfs.h │ └── test.lua ├── linenoise.lake ├── linotify │ ├── COPYRIGHT │ ├── README │ ├── linotify.c │ └── test.lua ├── lpeg.lake ├── lpeg │ ├── lpeg.c │ ├── lpeg.h │ ├── re.lua │ └── test.lua ├── lsqlite3.lake ├── lsqlite3_svn08 │ ├── HISTORY │ ├── Makefile │ ├── README │ ├── doc │ │ ├── lsqlite3.pod │ │ ├── lsqlite3.wiki │ │ └── pod2html.pl │ ├── examples │ │ ├── aggregate.lua │ │ ├── function.lua │ │ ├── order.lua │ │ ├── simple.lua │ │ ├── smart.lua │ │ ├── statement.lua │ │ └── tracing.lua │ ├── installpath.lua │ ├── lsqlite3-0.8-1.rockspec │ ├── lsqlite3.c │ ├── lunit.lua │ ├── test.lua │ └── tests-sqlite3.lua ├── ltcl.lake ├── ltcltk-0.9-2 │ ├── Makefile │ ├── clean.sh │ ├── doc │ │ ├── LICENSE │ │ ├── README │ │ ├── README_ltcl │ │ └── README_ltk │ ├── ltcl.c │ ├── ltcltk-0.9-2.rockspec │ ├── ltk.lua │ └── samples │ │ ├── ltcltest.lua │ │ ├── ltcltest.output │ │ ├── ltkaddwidget.lua │ │ ├── ltkcheckers.lua │ │ ├── ltkfuncplotter.lua │ │ ├── ltkhello.lua │ │ ├── ltkhtext.lua │ │ ├── ltkimage.lua │ │ ├── ltkoptionmenu.lua │ │ ├── renumbertests.lua │ │ ├── tkbrowse.lua │ │ ├── tkhello.lua │ │ └── tktcolor.lua ├── lua-linenoise │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── example.lua │ ├── linenoise-0.1-1.rockspec │ ├── linenoise.c │ └── lua.lua ├── luaexpat │ ├── src │ │ ├── lxp.def │ │ ├── lxp │ │ │ └── lom.lua │ │ ├── lxplib.c │ │ ├── lxplib.h │ │ └── test-driver.lua │ └── tests │ │ ├── test-lom.lua │ │ └── test.lua ├── luaposix │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog.old │ ├── NEWS │ ├── README │ ├── bsd-strlcpy.c │ ├── curses.lua │ ├── lcurses.c │ ├── lposix.c │ ├── lua52compat.h │ ├── posix.lua │ ├── tests-curses.lua │ ├── tests-fcntl.lua │ ├── tests-posix.lua │ ├── tests-posix.output │ └── tree.lua ├── luasignal │ ├── LICENSE │ ├── README │ ├── TODO │ └── src │ │ ├── queue.c │ │ ├── queue.h │ │ ├── signal.c │ │ ├── signal.luadoc │ │ ├── signames.c │ │ └── signames.h ├── luasocket │ ├── LICENSE │ ├── NEW │ ├── README │ ├── etc │ │ ├── README │ │ ├── b64.lua │ │ ├── check-links.lua │ │ ├── check-memory.lua │ │ ├── dict.lua │ │ ├── dispatch.lua │ │ ├── eol.lua │ │ ├── forward.lua │ │ ├── get.lua │ │ ├── lp.lua │ │ ├── qp.lua │ │ └── tftp.lua │ ├── samples │ │ ├── README │ │ ├── cddb.lua │ │ ├── daytimeclnt.lua │ │ ├── echoclnt.lua │ │ ├── echosrvr.lua │ │ ├── listener.lua │ │ ├── lpr.lua │ │ ├── talker.lua │ │ └── tinyirc.lua │ ├── src │ │ ├── auxiliar.c │ │ ├── auxiliar.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── except.c │ │ ├── except.h │ │ ├── ftp.lua │ │ ├── globals.lua │ │ ├── headers.lua │ │ ├── http.lua │ │ ├── inet.c │ │ ├── inet.h │ │ ├── io.c │ │ ├── io.h │ │ ├── ltn12.lua │ │ ├── luasocket.c │ │ ├── luasocket.h │ │ ├── makefile │ │ ├── mbox.lua │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mime.lua │ │ ├── options.c │ │ ├── options.h │ │ ├── select.c │ │ ├── select.h │ │ ├── serial.c │ │ ├── smtp.lua │ │ ├── socket.h │ │ ├── socket.lua │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── test-driver.lua │ │ ├── timeout.c │ │ ├── timeout.h │ │ ├── tp.lua │ │ ├── udp.c │ │ ├── udp.h │ │ ├── unix.c │ │ ├── unix.h │ │ ├── url.lua │ │ ├── usocket.c │ │ ├── usocket.h │ │ ├── wsocket.c │ │ └── wsocket.h │ └── test │ │ ├── README │ │ ├── driver.lua │ │ ├── find-connect-limit │ │ ├── tcp-getoptions │ │ ├── testclnt.lua │ │ ├── testsrvr.lua │ │ ├── testsupport.lua │ │ ├── udp-zero-length-send │ │ └── udp-zero-length-send-recv ├── luasql.odbc.lake ├── luasql │ ├── README │ ├── example.lua │ ├── license.html │ └── src │ │ ├── ls_mysql.c │ │ ├── ls_odbc.c │ │ ├── ls_postgres.c │ │ ├── luasql.c │ │ └── luasql.h ├── lxp.lake ├── manifest ├── mime.core.lake ├── posix_c.lake ├── socket.core.lake ├── struct │ ├── COPYING │ ├── struct.c │ └── test.lua ├── winapi-1.4 │ ├── winapi.c │ ├── winapi.l.c │ ├── wutils.c │ └── wutils.h └── winapi.lake ├── readme.md ├── setpath ├── shared.config ├── srlua ├── Makefile ├── README ├── glue.c ├── glue.h ├── srlua.c ├── test.lua └── wsrlua.c ├── test-dynamic.bat ├── test-static ├── test-static.bat ├── test.lake ├── test └── README ├── tests ├── tests.bat └── tools ├── soar.lua └── srlua.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.obj 3 | *.d 4 | lib/ 5 | bin/ 6 | lua/ 7 | test/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/COPYING -------------------------------------------------------------------------------- /all.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/all.config -------------------------------------------------------------------------------- /bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/bin/README -------------------------------------------------------------------------------- /bin/srluab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/bin/srluab/README -------------------------------------------------------------------------------- /default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/default.config -------------------------------------------------------------------------------- /dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/dll.config -------------------------------------------------------------------------------- /exe.config: -------------------------------------------------------------------------------- 1 | -- building a 'full' executable on Windows 2 | name = 'lua52f' 3 | -------------------------------------------------------------------------------- /install.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/install.lua -------------------------------------------------------------------------------- /lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lake -------------------------------------------------------------------------------- /lakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lakefile -------------------------------------------------------------------------------- /lfs.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lfs.config -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- 1 | Static libraries end up here 2 | -------------------------------------------------------------------------------- /linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/linenoise/Makefile -------------------------------------------------------------------------------- /linenoise/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/linenoise/README.markdown -------------------------------------------------------------------------------- /linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/linenoise/example.c -------------------------------------------------------------------------------- /linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/linenoise/linenoise.c -------------------------------------------------------------------------------- /linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/linenoise/linenoise.h -------------------------------------------------------------------------------- /lua-5.2.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/Makefile -------------------------------------------------------------------------------- /lua-5.2.2/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lapi.c -------------------------------------------------------------------------------- /lua-5.2.2/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lapi.h -------------------------------------------------------------------------------- /lua-5.2.2/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lauxlib.c -------------------------------------------------------------------------------- /lua-5.2.2/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lauxlib.h -------------------------------------------------------------------------------- /lua-5.2.2/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lbaselib.c -------------------------------------------------------------------------------- /lua-5.2.2/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lbitlib.c -------------------------------------------------------------------------------- /lua-5.2.2/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lcode.c -------------------------------------------------------------------------------- /lua-5.2.2/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lcode.h -------------------------------------------------------------------------------- /lua-5.2.2/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lcorolib.c -------------------------------------------------------------------------------- /lua-5.2.2/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lctype.c -------------------------------------------------------------------------------- /lua-5.2.2/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lctype.h -------------------------------------------------------------------------------- /lua-5.2.2/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ldblib.c -------------------------------------------------------------------------------- /lua-5.2.2/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ldebug.c -------------------------------------------------------------------------------- /lua-5.2.2/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ldebug.h -------------------------------------------------------------------------------- /lua-5.2.2/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ldo.c -------------------------------------------------------------------------------- /lua-5.2.2/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ldo.h -------------------------------------------------------------------------------- /lua-5.2.2/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ldump.c -------------------------------------------------------------------------------- /lua-5.2.2/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lfunc.c -------------------------------------------------------------------------------- /lua-5.2.2/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lfunc.h -------------------------------------------------------------------------------- /lua-5.2.2/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lgc.c -------------------------------------------------------------------------------- /lua-5.2.2/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lgc.h -------------------------------------------------------------------------------- /lua-5.2.2/linit.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/linit.c.in -------------------------------------------------------------------------------- /lua-5.2.2/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/liolib.c -------------------------------------------------------------------------------- /lua-5.2.2/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/llex.c -------------------------------------------------------------------------------- /lua-5.2.2/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/llex.h -------------------------------------------------------------------------------- /lua-5.2.2/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/llimits.h -------------------------------------------------------------------------------- /lua-5.2.2/llinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/llinit.c -------------------------------------------------------------------------------- /lua-5.2.2/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lmathlib.c -------------------------------------------------------------------------------- /lua-5.2.2/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lmem.c -------------------------------------------------------------------------------- /lua-5.2.2/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lmem.h -------------------------------------------------------------------------------- /lua-5.2.2/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/loadlib.c -------------------------------------------------------------------------------- /lua-5.2.2/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lobject.c -------------------------------------------------------------------------------- /lua-5.2.2/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lobject.h -------------------------------------------------------------------------------- /lua-5.2.2/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lopcodes.c -------------------------------------------------------------------------------- /lua-5.2.2/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lopcodes.h -------------------------------------------------------------------------------- /lua-5.2.2/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/loslib.c -------------------------------------------------------------------------------- /lua-5.2.2/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lparser.c -------------------------------------------------------------------------------- /lua-5.2.2/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lparser.h -------------------------------------------------------------------------------- /lua-5.2.2/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lstate.c -------------------------------------------------------------------------------- /lua-5.2.2/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lstate.h -------------------------------------------------------------------------------- /lua-5.2.2/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lstring.c -------------------------------------------------------------------------------- /lua-5.2.2/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lstring.h -------------------------------------------------------------------------------- /lua-5.2.2/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lstrlib.c -------------------------------------------------------------------------------- /lua-5.2.2/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ltable.c -------------------------------------------------------------------------------- /lua-5.2.2/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ltable.h -------------------------------------------------------------------------------- /lua-5.2.2/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ltablib.c -------------------------------------------------------------------------------- /lua-5.2.2/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ltm.c -------------------------------------------------------------------------------- /lua-5.2.2/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/ltm.h -------------------------------------------------------------------------------- /lua-5.2.2/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lua.c -------------------------------------------------------------------------------- /lua-5.2.2/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lua.h -------------------------------------------------------------------------------- /lua-5.2.2/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lua.hpp -------------------------------------------------------------------------------- /lua-5.2.2/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/luac.c -------------------------------------------------------------------------------- /lua-5.2.2/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/luaconf.h -------------------------------------------------------------------------------- /lua-5.2.2/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lualib.h -------------------------------------------------------------------------------- /lua-5.2.2/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lundump.c -------------------------------------------------------------------------------- /lua-5.2.2/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lundump.h -------------------------------------------------------------------------------- /lua-5.2.2/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lvm.c -------------------------------------------------------------------------------- /lua-5.2.2/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lvm.h -------------------------------------------------------------------------------- /lua-5.2.2/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lzio.c -------------------------------------------------------------------------------- /lua-5.2.2/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.2.2/lzio.h -------------------------------------------------------------------------------- /lua-5.3.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/Makefile -------------------------------------------------------------------------------- /lua-5.3.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/README -------------------------------------------------------------------------------- /lua-5.3.0/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/contents.html -------------------------------------------------------------------------------- /lua-5.3.0/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/logo.gif -------------------------------------------------------------------------------- /lua-5.3.0/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/lua.1 -------------------------------------------------------------------------------- /lua-5.3.0/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/lua.css -------------------------------------------------------------------------------- /lua-5.3.0/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/luac.1 -------------------------------------------------------------------------------- /lua-5.3.0/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/manual.css -------------------------------------------------------------------------------- /lua-5.3.0/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/manual.html -------------------------------------------------------------------------------- /lua-5.3.0/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /lua-5.3.0/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/doc/readme.html -------------------------------------------------------------------------------- /lua-5.3.0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/Makefile -------------------------------------------------------------------------------- /lua-5.3.0/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lapi.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lapi.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lauxlib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lauxlib.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lbaselib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lbitlib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lcode.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lcode.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lcorolib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lctype.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lctype.h -------------------------------------------------------------------------------- /lua-5.3.0/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ldblib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ldebug.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ldebug.h -------------------------------------------------------------------------------- /lua-5.3.0/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ldo.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ldo.h -------------------------------------------------------------------------------- /lua-5.3.0/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ldump.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lfunc.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lfunc.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lgc.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lgc.h -------------------------------------------------------------------------------- /lua-5.3.0/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/linit.c -------------------------------------------------------------------------------- /lua-5.3.0/src/linit.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/linit.c.in -------------------------------------------------------------------------------- /lua-5.3.0/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/liolib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/llex.c -------------------------------------------------------------------------------- /lua-5.3.0/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/llex.h -------------------------------------------------------------------------------- /lua-5.3.0/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/llimits.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lmathlib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lmem.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lmem.h -------------------------------------------------------------------------------- /lua-5.3.0/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/loadlib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lobject.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lobject.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lopcodes.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lopcodes.h -------------------------------------------------------------------------------- /lua-5.3.0/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/loslib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lparser.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lparser.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lprefix.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lstate.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lstate.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lstring.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lstring.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lstrlib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ltable.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ltable.h -------------------------------------------------------------------------------- /lua-5.3.0/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ltablib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ltm.c -------------------------------------------------------------------------------- /lua-5.3.0/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/ltm.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lua.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lua.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lua.hpp -------------------------------------------------------------------------------- /lua-5.3.0/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/luac.c -------------------------------------------------------------------------------- /lua-5.3.0/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/luaconf.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lualib.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lundump.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lundump.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lutf8lib.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lvm.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lvm.h -------------------------------------------------------------------------------- /lua-5.3.0/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lzio.c -------------------------------------------------------------------------------- /lua-5.3.0/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua-5.3.0/src/lzio.h -------------------------------------------------------------------------------- /lua.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua.config -------------------------------------------------------------------------------- /lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua/README -------------------------------------------------------------------------------- /lua/ml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/lua/ml.lua -------------------------------------------------------------------------------- /luaish/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/luaish/config.lua -------------------------------------------------------------------------------- /luaish/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/luaish/lua.lua -------------------------------------------------------------------------------- /luaish/luaish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/luaish/luaish.lua -------------------------------------------------------------------------------- /luaish/t.lua: -------------------------------------------------------------------------------- 1 | print(posix.getcwd()) 2 | -------------------------------------------------------------------------------- /modules/bc.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc.lake -------------------------------------------------------------------------------- /modules/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/Makefile -------------------------------------------------------------------------------- /modules/bc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/README -------------------------------------------------------------------------------- /modules/bc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/config.h -------------------------------------------------------------------------------- /modules/bc/lbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/lbc.c -------------------------------------------------------------------------------- /modules/bc/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/number.c -------------------------------------------------------------------------------- /modules/bc/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/number.h -------------------------------------------------------------------------------- /modules/bc/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/bc/test.lua -------------------------------------------------------------------------------- /modules/complex.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/complex.lake -------------------------------------------------------------------------------- /modules/complex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/complex/README -------------------------------------------------------------------------------- /modules/complex/lcomplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/complex/lcomplex.c -------------------------------------------------------------------------------- /modules/complex/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/complex/test.lua -------------------------------------------------------------------------------- /modules/curses_c.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/curses_c.lake -------------------------------------------------------------------------------- /modules/inotify.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/inotify.lake -------------------------------------------------------------------------------- /modules/lfs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lfs/COPYING -------------------------------------------------------------------------------- /modules/lfs/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lfs/lfs.c -------------------------------------------------------------------------------- /modules/lfs/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lfs/lfs.h -------------------------------------------------------------------------------- /modules/lfs/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lfs/test.lua -------------------------------------------------------------------------------- /modules/linenoise.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/linenoise.lake -------------------------------------------------------------------------------- /modules/linotify/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/linotify/COPYRIGHT -------------------------------------------------------------------------------- /modules/linotify/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/linotify/README -------------------------------------------------------------------------------- /modules/linotify/linotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/linotify/linotify.c -------------------------------------------------------------------------------- /modules/linotify/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/linotify/test.lua -------------------------------------------------------------------------------- /modules/lpeg.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lpeg.lake -------------------------------------------------------------------------------- /modules/lpeg/lpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lpeg/lpeg.c -------------------------------------------------------------------------------- /modules/lpeg/lpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lpeg/lpeg.h -------------------------------------------------------------------------------- /modules/lpeg/re.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lpeg/re.lua -------------------------------------------------------------------------------- /modules/lpeg/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lpeg/test.lua -------------------------------------------------------------------------------- /modules/lsqlite3.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3.lake -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/HISTORY -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/Makefile -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/README -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/doc/lsqlite3.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/doc/lsqlite3.pod -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/doc/lsqlite3.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/doc/lsqlite3.wiki -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/doc/pod2html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/doc/pod2html.pl -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/aggregate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/aggregate.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/function.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/function.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/order.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/order.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/simple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/simple.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/smart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/smart.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/statement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/statement.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/examples/tracing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/examples/tracing.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/installpath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/installpath.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/lsqlite3-0.8-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/lsqlite3-0.8-1.rockspec -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/lsqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/lsqlite3.c -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/lunit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/lunit.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/test.lua -------------------------------------------------------------------------------- /modules/lsqlite3_svn08/tests-sqlite3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lsqlite3_svn08/tests-sqlite3.lua -------------------------------------------------------------------------------- /modules/ltcl.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcl.lake -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/Makefile -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/clean.sh -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/doc/LICENSE -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/doc/README -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/doc/README_ltcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/doc/README_ltcl -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/doc/README_ltk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/doc/README_ltk -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/ltcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/ltcl.c -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/ltcltk-0.9-2.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/ltcltk-0.9-2.rockspec -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/ltk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/ltk.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltcltest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltcltest.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltcltest.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltcltest.output -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkaddwidget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkaddwidget.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkcheckers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkcheckers.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkfuncplotter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkfuncplotter.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkhello.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkhello.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkhtext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkhtext.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkimage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkimage.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/ltkoptionmenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/ltkoptionmenu.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/renumbertests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/renumbertests.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/tkbrowse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/tkbrowse.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/tkhello.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/tkhello.lua -------------------------------------------------------------------------------- /modules/ltcltk-0.9-2/samples/tktcolor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/ltcltk-0.9-2/samples/tktcolor.lua -------------------------------------------------------------------------------- /modules/lua-linenoise/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/COPYING -------------------------------------------------------------------------------- /modules/lua-linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/Makefile -------------------------------------------------------------------------------- /modules/lua-linenoise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/README.md -------------------------------------------------------------------------------- /modules/lua-linenoise/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/example.lua -------------------------------------------------------------------------------- /modules/lua-linenoise/linenoise-0.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/linenoise-0.1-1.rockspec -------------------------------------------------------------------------------- /modules/lua-linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/linenoise.c -------------------------------------------------------------------------------- /modules/lua-linenoise/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lua-linenoise/lua.lua -------------------------------------------------------------------------------- /modules/luaexpat/src/lxp.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | luaopen_lxp -------------------------------------------------------------------------------- /modules/luaexpat/src/lxp/lom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaexpat/src/lxp/lom.lua -------------------------------------------------------------------------------- /modules/luaexpat/src/lxplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaexpat/src/lxplib.c -------------------------------------------------------------------------------- /modules/luaexpat/src/lxplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaexpat/src/lxplib.h -------------------------------------------------------------------------------- /modules/luaexpat/src/test-driver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaexpat/src/test-driver.lua -------------------------------------------------------------------------------- /modules/luaexpat/tests/test-lom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaexpat/tests/test-lom.lua -------------------------------------------------------------------------------- /modules/luaexpat/tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaexpat/tests/test.lua -------------------------------------------------------------------------------- /modules/luaposix/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/AUTHORS -------------------------------------------------------------------------------- /modules/luaposix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/COPYING -------------------------------------------------------------------------------- /modules/luaposix/ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/ChangeLog.old -------------------------------------------------------------------------------- /modules/luaposix/NEWS: -------------------------------------------------------------------------------- 1 | See the web site (listed in README) for news. 2 | -------------------------------------------------------------------------------- /modules/luaposix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/README -------------------------------------------------------------------------------- /modules/luaposix/bsd-strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/bsd-strlcpy.c -------------------------------------------------------------------------------- /modules/luaposix/curses.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/curses.lua -------------------------------------------------------------------------------- /modules/luaposix/lcurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/lcurses.c -------------------------------------------------------------------------------- /modules/luaposix/lposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/lposix.c -------------------------------------------------------------------------------- /modules/luaposix/lua52compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/lua52compat.h -------------------------------------------------------------------------------- /modules/luaposix/posix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/posix.lua -------------------------------------------------------------------------------- /modules/luaposix/tests-curses.lua: -------------------------------------------------------------------------------- 1 | -- Trivial test that we can load the module 2 | require "curses" 3 | -------------------------------------------------------------------------------- /modules/luaposix/tests-fcntl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/tests-fcntl.lua -------------------------------------------------------------------------------- /modules/luaposix/tests-posix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/tests-posix.lua -------------------------------------------------------------------------------- /modules/luaposix/tests-posix.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/tests-posix.output -------------------------------------------------------------------------------- /modules/luaposix/tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luaposix/tree.lua -------------------------------------------------------------------------------- /modules/luasignal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/LICENSE -------------------------------------------------------------------------------- /modules/luasignal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/README -------------------------------------------------------------------------------- /modules/luasignal/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/TODO -------------------------------------------------------------------------------- /modules/luasignal/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/src/queue.c -------------------------------------------------------------------------------- /modules/luasignal/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/src/queue.h -------------------------------------------------------------------------------- /modules/luasignal/src/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/src/signal.c -------------------------------------------------------------------------------- /modules/luasignal/src/signal.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/src/signal.luadoc -------------------------------------------------------------------------------- /modules/luasignal/src/signames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/src/signames.c -------------------------------------------------------------------------------- /modules/luasignal/src/signames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasignal/src/signames.h -------------------------------------------------------------------------------- /modules/luasocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/LICENSE -------------------------------------------------------------------------------- /modules/luasocket/NEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/NEW -------------------------------------------------------------------------------- /modules/luasocket/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/README -------------------------------------------------------------------------------- /modules/luasocket/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/README -------------------------------------------------------------------------------- /modules/luasocket/etc/b64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/b64.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/check-links.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/check-links.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/check-memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/check-memory.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/dict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/dict.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/dispatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/dispatch.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/eol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/eol.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/forward.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/forward.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/get.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/get.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/lp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/lp.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/qp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/qp.lua -------------------------------------------------------------------------------- /modules/luasocket/etc/tftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/etc/tftp.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/README -------------------------------------------------------------------------------- /modules/luasocket/samples/cddb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/cddb.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/daytimeclnt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/daytimeclnt.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/echoclnt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/echoclnt.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/echosrvr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/echosrvr.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/listener.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/listener.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/lpr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/lpr.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/talker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/talker.lua -------------------------------------------------------------------------------- /modules/luasocket/samples/tinyirc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/samples/tinyirc.lua -------------------------------------------------------------------------------- /modules/luasocket/src/auxiliar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/auxiliar.c -------------------------------------------------------------------------------- /modules/luasocket/src/auxiliar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/auxiliar.h -------------------------------------------------------------------------------- /modules/luasocket/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/buffer.c -------------------------------------------------------------------------------- /modules/luasocket/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/buffer.h -------------------------------------------------------------------------------- /modules/luasocket/src/except.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/except.c -------------------------------------------------------------------------------- /modules/luasocket/src/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/except.h -------------------------------------------------------------------------------- /modules/luasocket/src/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/ftp.lua -------------------------------------------------------------------------------- /modules/luasocket/src/globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/globals.lua -------------------------------------------------------------------------------- /modules/luasocket/src/headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/headers.lua -------------------------------------------------------------------------------- /modules/luasocket/src/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/http.lua -------------------------------------------------------------------------------- /modules/luasocket/src/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/inet.c -------------------------------------------------------------------------------- /modules/luasocket/src/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/inet.h -------------------------------------------------------------------------------- /modules/luasocket/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/io.c -------------------------------------------------------------------------------- /modules/luasocket/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/io.h -------------------------------------------------------------------------------- /modules/luasocket/src/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/ltn12.lua -------------------------------------------------------------------------------- /modules/luasocket/src/luasocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/luasocket.c -------------------------------------------------------------------------------- /modules/luasocket/src/luasocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/luasocket.h -------------------------------------------------------------------------------- /modules/luasocket/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/makefile -------------------------------------------------------------------------------- /modules/luasocket/src/mbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/mbox.lua -------------------------------------------------------------------------------- /modules/luasocket/src/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/mime.c -------------------------------------------------------------------------------- /modules/luasocket/src/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/mime.h -------------------------------------------------------------------------------- /modules/luasocket/src/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/mime.lua -------------------------------------------------------------------------------- /modules/luasocket/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/options.c -------------------------------------------------------------------------------- /modules/luasocket/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/options.h -------------------------------------------------------------------------------- /modules/luasocket/src/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/select.c -------------------------------------------------------------------------------- /modules/luasocket/src/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/select.h -------------------------------------------------------------------------------- /modules/luasocket/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/serial.c -------------------------------------------------------------------------------- /modules/luasocket/src/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/smtp.lua -------------------------------------------------------------------------------- /modules/luasocket/src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/socket.h -------------------------------------------------------------------------------- /modules/luasocket/src/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/socket.lua -------------------------------------------------------------------------------- /modules/luasocket/src/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/tcp.c -------------------------------------------------------------------------------- /modules/luasocket/src/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/tcp.h -------------------------------------------------------------------------------- /modules/luasocket/src/test-driver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/test-driver.lua -------------------------------------------------------------------------------- /modules/luasocket/src/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/timeout.c -------------------------------------------------------------------------------- /modules/luasocket/src/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/timeout.h -------------------------------------------------------------------------------- /modules/luasocket/src/tp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/tp.lua -------------------------------------------------------------------------------- /modules/luasocket/src/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/udp.c -------------------------------------------------------------------------------- /modules/luasocket/src/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/udp.h -------------------------------------------------------------------------------- /modules/luasocket/src/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/unix.c -------------------------------------------------------------------------------- /modules/luasocket/src/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/unix.h -------------------------------------------------------------------------------- /modules/luasocket/src/url.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/url.lua -------------------------------------------------------------------------------- /modules/luasocket/src/usocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/usocket.c -------------------------------------------------------------------------------- /modules/luasocket/src/usocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/usocket.h -------------------------------------------------------------------------------- /modules/luasocket/src/wsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/wsocket.c -------------------------------------------------------------------------------- /modules/luasocket/src/wsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/src/wsocket.h -------------------------------------------------------------------------------- /modules/luasocket/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/README -------------------------------------------------------------------------------- /modules/luasocket/test/driver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/driver.lua -------------------------------------------------------------------------------- /modules/luasocket/test/find-connect-limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/find-connect-limit -------------------------------------------------------------------------------- /modules/luasocket/test/tcp-getoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/tcp-getoptions -------------------------------------------------------------------------------- /modules/luasocket/test/testclnt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/testclnt.lua -------------------------------------------------------------------------------- /modules/luasocket/test/testsrvr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/testsrvr.lua -------------------------------------------------------------------------------- /modules/luasocket/test/testsupport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/testsupport.lua -------------------------------------------------------------------------------- /modules/luasocket/test/udp-zero-length-send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/udp-zero-length-send -------------------------------------------------------------------------------- /modules/luasocket/test/udp-zero-length-send-recv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasocket/test/udp-zero-length-send-recv -------------------------------------------------------------------------------- /modules/luasql.odbc.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql.odbc.lake -------------------------------------------------------------------------------- /modules/luasql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/README -------------------------------------------------------------------------------- /modules/luasql/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/example.lua -------------------------------------------------------------------------------- /modules/luasql/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/license.html -------------------------------------------------------------------------------- /modules/luasql/src/ls_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/src/ls_mysql.c -------------------------------------------------------------------------------- /modules/luasql/src/ls_odbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/src/ls_odbc.c -------------------------------------------------------------------------------- /modules/luasql/src/ls_postgres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/src/ls_postgres.c -------------------------------------------------------------------------------- /modules/luasql/src/luasql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/src/luasql.c -------------------------------------------------------------------------------- /modules/luasql/src/luasql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/luasql/src/luasql.h -------------------------------------------------------------------------------- /modules/lxp.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/lxp.lake -------------------------------------------------------------------------------- /modules/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/manifest -------------------------------------------------------------------------------- /modules/mime.core.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/mime.core.lake -------------------------------------------------------------------------------- /modules/posix_c.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/posix_c.lake -------------------------------------------------------------------------------- /modules/socket.core.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/socket.core.lake -------------------------------------------------------------------------------- /modules/struct/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/struct/COPYING -------------------------------------------------------------------------------- /modules/struct/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/struct/struct.c -------------------------------------------------------------------------------- /modules/struct/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/struct/test.lua -------------------------------------------------------------------------------- /modules/winapi-1.4/winapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/winapi-1.4/winapi.c -------------------------------------------------------------------------------- /modules/winapi-1.4/winapi.l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/winapi-1.4/winapi.l.c -------------------------------------------------------------------------------- /modules/winapi-1.4/wutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/winapi-1.4/wutils.c -------------------------------------------------------------------------------- /modules/winapi-1.4/wutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/winapi-1.4/wutils.h -------------------------------------------------------------------------------- /modules/winapi.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/modules/winapi.lake -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/readme.md -------------------------------------------------------------------------------- /setpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/setpath -------------------------------------------------------------------------------- /shared.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/shared.config -------------------------------------------------------------------------------- /srlua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/Makefile -------------------------------------------------------------------------------- /srlua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/README -------------------------------------------------------------------------------- /srlua/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/glue.c -------------------------------------------------------------------------------- /srlua/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/glue.h -------------------------------------------------------------------------------- /srlua/srlua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/srlua.c -------------------------------------------------------------------------------- /srlua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/test.lua -------------------------------------------------------------------------------- /srlua/wsrlua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/srlua/wsrlua.c -------------------------------------------------------------------------------- /test-dynamic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/test-dynamic.bat -------------------------------------------------------------------------------- /test-static: -------------------------------------------------------------------------------- 1 | lua lake NAME=lua52s -f test.lake 2 | -------------------------------------------------------------------------------- /test-static.bat: -------------------------------------------------------------------------------- 1 | lua lake NAME=lua52s -f test.lake 2 | -------------------------------------------------------------------------------- /test.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/test.lake -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/test/README -------------------------------------------------------------------------------- /tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/tests -------------------------------------------------------------------------------- /tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/tests.bat -------------------------------------------------------------------------------- /tools/soar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/tools/soar.lua -------------------------------------------------------------------------------- /tools/srlua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedonovan/luabuild/HEAD/tools/srlua.lua --------------------------------------------------------------------------------