Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2216


Ignore:
Timestamp:
Nov 18, 2008, 6:48:41 PM (15 years ago)
Author:
rgrieder
Message:

Fixed CEGUILua 0.6.1 build in the repository. We don't have a config.h file, so LUA_VERSION_NUM needs to be used.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem/src/ceguilua-0.6.1/ceguilua/CEGUILua.cpp

    r1982 r2216  
    6161LuaScriptModule::LuaScriptModule()
    6262{
    63     #if CEGUI_LUA_VER >= 51
     63    #if LUA_VERSION_NUM >= 501
    6464        static const luaL_Reg lualibs[] = {
    6565            {"", luaopen_base},
     
    8282
    8383    // init all standard libraries
    84     #if CEGUI_LUA_VER >= 51
     84    #if LUA_VERSION_NUM >= 501
    8585            const luaL_Reg *lib = lualibs;
    8686            for (; lib->func; lib++)
Note: See TracChangeset for help on using the changeset viewer.