Re: Porting Lua to Windows Mobile Professional 6.5.3
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Porting Lua to Windows Mobile Professional 6.5.3
- From: Marc Balmer <marc@...>
- Date: 2011年6月02日 16:56:08 +0200
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.