[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Small change request...
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 15 Jun 2021 13:04:42 -0300
> I’d like to request a small change to the way luaconf.h generates the default paths for libraries and so on.
> Right now, it does
> #define LUA_ROOT “/usr/local”
> And I’d love to have it be:
> #ifndef LUA_ROOT
> #define LUA_ROOT “/usr/local”
> #endif
Note that you already can define LUA_PATH_DEFAULT and LUA_CPATH_DEFAULT.
It is a little more verbose (and redundant) than defining LUA_ROOT, but
they give the same final result, as LUA_ROOT is used only to build those
two definitions.
-- Roberto