Re: [wxlua-users] Can't call some wxKeyboardState methods on wxMouseEvent, but should

2013-09-11 Thread Paul K
Hi John, That function (and class hierarchy) only exists in wxWidgets 2.9 onwards. It's just an alternative to the current ControlDown(), AltDown(), ShiftDown() functions. Will those work for you in the near term? Yes, but instead of checking event:GetModifiers() == wx.wxMOD_CONTROL I need

[wxlua-users] wxlua fails to build against LuaJIT 2.0.2

2013-09-11 Thread Paul K
Hi John, I'm trying to build wxlua against LuaJIT and get compilation errors. I know, I can build against normal Lua 5.1 and use it with LuaJIT (and that's exactly what I'm doing now), but I'd like to avoid that extra step if possible. These are the errors: ../wxLua/modules/wxlua/lbitlib.c:83:

Re: [wxlua-users] wxlua fails to build against LuaJIT 2.0.2

2013-09-11 Thread John Labenski
On Wed, Sep 11, 2013 at 5:52 PM, Paul K paulclin...@yahoo.com wrote: Hi John, I'm trying to build wxlua against LuaJIT and get compilation errors. I know, I can build against normal Lua 5.1 and use it with LuaJIT (and that's exactly what I'm doing now), but I'd like to avoid that extra step

Re: [wxlua-users] BUILD_INSTALL_PREFIX is not respected in wxlua trunk (most likely broken in r190 or later)

2013-09-11 Thread Paul K
Hi John, since CMake advertises that CMAKE_INSTALL_PREFIX is the install dir I went back to using that to make it more familiar to CMake users. yes, replacing BUILD_INSTALL_PREFIX with CMAKE_INSTALL_PREFIX worked. Thank you. Paul.