Re: [wxlua-users] Problem compiling wxlua svn 247

2015-05-21 Thread Philipp Überbacher
On Mon, 18 May 2015 18:14:58 -0400 John Labenski wrote: > On Mon, May 18, 2015 at 4:01 AM, Philipp Überbacher > wrote: > > > On Mon, 18 May 2015 09:25:06 +0200 > > Philipp Überbacher wrote: > > > > > > > > > > > wxlbind.cpp:831:51: error: ‘luaL_register’ was not declared in > > > > > this scop

Re: [wxlua-users] Problem compiling wxlua svn 247

2015-05-18 Thread John Labenski
On Mon, May 18, 2015 at 4:01 AM, Philipp Überbacher wrote: > On Mon, 18 May 2015 09:25:06 +0200 > Philipp Überbacher wrote: > > > > > > > > wxlbind.cpp:831:51: error: ‘luaL_register’ was not declared in > > > > this scope luaL_register(L, wx2lua(m_nameSpace), wxlualib); > > > > > > You probably

Re: [wxlua-users] Problem compiling wxlua svn 247

2015-05-18 Thread Victor Bombi
also, if you added -DLUA_COMPAT_MODULE after running cmake perhaps you need to delete directory and run cmake from scratch again - Original Message - From: "Philipp Überbacher" To: Sent: Monday, May 18, 2015 10:01 AM Subject: Re: [wxlua-users] Problem compiling wxlua svn

Re: [wxlua-users] Problem compiling wxlua svn 247

2015-05-18 Thread Philipp Überbacher
On Mon, 18 May 2015 09:25:06 +0200 Philipp Überbacher wrote: > On Sun, 17 May 2015 13:25:49 -0700 > Paul K wrote: > > > Hi Philipp , > > > > > wxlbind.cpp:831:51: error: ‘luaL_register’ was not declared in > > > this scope luaL_register(L, wx2lua(m_nameSpace), wxlualib); > > > > You probably

Re: [wxlua-users] Problem compiling wxlua svn 247

2015-05-18 Thread Philipp Überbacher
On Sun, 17 May 2015 13:25:49 -0700 Paul K wrote: > Hi Philipp , > > > wxlbind.cpp:831:51: error: ‘luaL_register’ was not declared in this > > scope luaL_register(L, wx2lua(m_nameSpace), wxlualib); > > You probably also need -DLUA_COMPAT_MODULE, as luaL_register is not > part of Lua 5.2 if the c

Re: [wxlua-users] Problem compiling wxlua svn 247

2015-05-17 Thread Paul K
Hi Philipp , > wxlbind.cpp:831:51: error: ‘luaL_register’ was not declared in this scope > luaL_register(L, wx2lua(m_nameSpace), wxlualib); You probably also need -DLUA_COMPAT_MODULE, as luaL_register is not part of Lua 5.2 if the compatibility mode is not turned on. Paul. -