lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 08/01/2010 18:49, Luiz Henrique de Figueiredo wrote:
Lua 5.2.0 (work1) is now available at
	http://www.lua.org/work/lua-5.2.0-work1.tar.gz

...

All feedback welcome. Thanks.

In luaconf.h, the definition of lua_number2uint is missing when compiling with MS compilers. So it fails to compile lbitlib.c

Also, lbitlib.c fails to compile under mingw. Included is a patch but I don't know if that is the way to solve it.

Regards,
Ignacio


--- reference\src\lbitlib.c	Tue Nov 24 10:05:44 2009
+++ src\lbitlib.c	Fri Jan 08 21:18:15 2010
@@ -4,6 +4,9 @@
 ** See Copyright Notice in lua.h
 */
 
+#define lbitlib_c
+#define LUA_LIB
+
 #include "lua.h"
 
 #include "lauxlib.h"