Page MenuHomeFreeBSD

D25977.diff
No OneTemporary

D25977.diff

Index: head/contrib/lua/src/luaconf.h.dist
===================================================================
--- head/contrib/lua/src/luaconf.h.dist
+++ head/contrib/lua/src/luaconf.h.dist
@@ -1,5 +1,5 @@
/*
-** $Id: luaconf.h,v 1.259 2016/12/22 13:08:50 roberto Exp $
+** $Id: luaconf.h,v 1.259.1.1 2017/04/19 17:29:57 roberto Exp $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -114,6 +114,7 @@
#define LUA_FLOAT_FLOAT 1
#define LUA_FLOAT_DOUBLE 2
#define LUA_FLOAT_LONGDOUBLE 3
+#define LUA_FLOAT_INT64 4
#if defined(LUA_32BITS) /* { */
/*
@@ -618,6 +619,13 @@
#if !defined(LUA_USE_C89)
#define lua_strx2number(s,p) lua_str2number(s,p)
#endif
+
+
+/*
+@@ lua_pointer2str converts a pointer to a readable string in a
+** non-specified way.
+*/
+#define lua_pointer2str(buff,sz,p) l_sprintf(buff,sz,"%p",p)
/*
Index: head/lib/liblua/luaconf.h
===================================================================
--- head/lib/liblua/luaconf.h
+++ head/lib/liblua/luaconf.h
@@ -122,6 +122,7 @@
#define LUA_FLOAT_FLOAT 1
#define LUA_FLOAT_DOUBLE 2
#define LUA_FLOAT_LONGDOUBLE 3
+#define LUA_FLOAT_INT64 4
#if defined(LUA_32BITS) /* { */
/*

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 3, 10:30 AM (9 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
29194405
Default Alt Text
D25977.diff (1 KB)

Event Timeline