Just a little question:
will there be a 64bit build too? because while the murgaLua fine on 64bit without modification (here at least) it fails to load libraries that are on the system with this error:
error loading module 'luasql.sqlite3' from file '/usr/lib/lua/5.1/luasql/sqlite3.so':
/usr/lib/lua/5.1/luasql/sqlite3.so: wrong ELF class: ELFCLASS64
Which kind of makes sense, but it would be usefull to do stuff like this (I know sqlite3 is also in murgaLua, but just an example here.)
Edit: It would also be nice if in the package.path and package.cpath would contain the standard paths for lua modules, and not only the /usr/local/... onces
so :
package.path=package.path..";./?.lua;/usr/local/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?/init.lua;/usr/local/lib/lua/5.1/?.lua;/usr/local/lib/lua/5.1/?/init.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua"
package.cpath=package.cpath .. ";./?.so;/usr/local/lib/lua/5.1/?.so;/usr/lib/lua/5.1/?.so;/usr/local/lib/lua/5.1/loadall.so"
Doing this we can use the lua modules already on the system
greetz,
Jan-Pieter