Re: Building Lua on Android under Terminal-IDE
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Building Lua on Android under Terminal-IDE
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 7 Apr 2015 10:52:41 -0300
> [...] Also, another change I did is modifying llex.c to hardcode
> ls->decpoint = '.'.
There is a macro to allow that change without modifing the source code.
Couldn't you use it?
#define l_getlocaledecpoint() '.'
(You can add that #define in luaconf.h or even through -D.)
-- Roberto