Skip to content

Commit

Permalink
fix lua5.2 compiling (that isn't defined until we include the headers…
Browse files Browse the repository at this point in the history
… ...)
  • Loading branch information
jacob1 committed Feb 14, 2015
1 parent 57d1b49 commit b06af53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lua/LuaCompat.h
Expand Up @@ -10,7 +10,7 @@ extern "C"
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#elif LUA_VERSION_NUM >= 502
#elif defined(LUA_COMPAT_ALL)
#include "lua5.2/lua.h"
#include "lua5.2/lauxlib.h"
#include "lua5.2/lualib.h"
Expand Down

0 comments on commit b06af53

Please sign in to comment.