lua-users home
lua-l archive

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


On Dec 9, 2007 5:01 PM, Tymek W <es_uomikim@op.pl> wrote:
> After './configure' I get errors:
> (...)
> checking lua.h usability... yes
> checking lua.h presence... yes
> checking for lua.h... yes
> checking for library containing lua_getfenv... no
> configure: error: Lua5 is required

You can edit the configure.in (or configure.ac) to remove the Lua
check, and add "lua" to the list of libraries to link with (but you
probably have to read the autoconf manual for that). To generate
configure you can use autoreconf.

Anders