lua-users home
lua-l archive

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


Am 02.06.2011 16:45, schrieb Luiz Henrique de Figueiredo:
That is the premise of LGPL, you cannot statically link to it for the
fact that a user cannot pull in new versions of their own altered
version of the given LGPL library.

I think this is confused.

And off-topic...

Well to stay on-topic, this is quite embarrasing:

	r = luaL_loadstring(L, "return 42\n");

returns 0 (no error), while

	r = luaL_loadstring(L, "return 42");

returns LUA_ERRSYNTAX.  Ich have no clue yet, why.