Evas filters: Fix build for Jenkins gcc_x32

Disable bit32 library if it's not available.
We should probably either ship it or disable it altogether
for the filters. Hmm.
This commit is contained in:
Jean-Philippe Andre 2015-08-21 11:06:50 +09:00
parent 65578034ef
commit 2472dfdb24
1 changed files with 2 additions and 0 deletions

View File

@ -2397,7 +2397,9 @@ static const luaL_Reg lj_lib_load[] = {
{ LUA_STRLIBNAME, luaopen_string },
{ LUA_MATHLIBNAME, luaopen_math },
{ LUA_DBLIBNAME, luaopen_debug },
#ifdef LUA_BITLIBNAME
{ LUA_BITLIBNAME, luaopen_bit },
#endif
#ifdef LUA_JITLIBNAME
{ LUA_JITLIBNAME, luaopen_jit },
#endif