Greetings.   The new rockspec is at:
  http://www.pjb.com.au/comp/lua/midialsa-1.16-0.rockspec

Doc:     http://www.pjb.com.au/comp/lua/midialsa.html
Tarball: http://www.pjb.com.au/comp/lua/midialsa-1.16.tar.gz

The main changes are for compatiblity with lua 5.2.
LUA_ENVIRONINDEX has gone, and in initialise (from Lua
Programming Gems p.335) there's now just a little #if:
    lua_pushvalue(L, 2); /* register the private functions */
#if LUA_VERSION_NUM >= 502
    luaL_setfuncs(L, prv, 0);    /* 5.2 */
#else
    luaL_register(L, NULL, prv); /* 5.1 */
#endif
which seems to work...

Also, the test script produces better diagnostics if it fails,
and some incompatibilities with alsa 1.0.22 have been fixed.

The corresponding changes in the Perl version:
  http://search.cpan.org/perldoc?MIDI::ALSA
will shortly be uploaded into CPAN (as 1.17).

Regards,  Peter Billam

http://www.pjb.com.au      p...@pjb.com.au     (03) 6278 9410
"Follow the charge, not the particle."  --  Richard Feynman
 from The Theory of Positrons, Physical Review, 1949


------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
Luarocks-developers mailing list
Luarocks-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/luarocks-developers

Reply via email to