lua-users home
lua-l archive

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


On Mon, Jan 5, 2015 at 3:43 PM, <tonyp@acm.org> wrote:
I plugged the new lsqlite3.c over the previous one (making a single change #include sqlite3.c instead of sqlite3.h because I want a self-contained exe file) and recompiled Lua 5.2.3, and I get the following warnings & errors (Win7 MSVC compiler), while the previous version I had no problems:

Yes, sorry...

Change

#else
#define PUSH_INT64(L,i64in,str,sz) \

to

#else
#define PUSH_INT64(L,i64in,fallback) \

at around line 141 in lsqlite3.c.

If that works for you I'll update the repo.

e