Skip to content

Commit

Permalink
fix(tooling): Exempt LuaJIT from external bit32 library requirement (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque authored Dec 14, 2022
1 parent ddd36fd commit d094f1b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 127,11 @@ AM_COND_IF([DEPENDENCY_CHECKS], [
AX_LUA_LIBS
AM_COND_IF([SYSTEM_LUAROCKS], [
AS_IF([test "$LUA_SHORT_VERSION" -lt 52],
AX_LUA_MODULE([bit32], [bit32])
)
AS_IF([test "$LUA_SHORT_VERSION" -lt 52], [
AM_COND_IF([LUAJIT], [], [
AX_LUA_MODULE([bit32], [bit32])
])
])
AX_LUA_MODULE([cassowary], [cassowary])
AS_IF([test "$LUA_SHORT_VERSION" -lt 53],
AX_LUA_MODULE([compat53], [compat53])
Expand Down

0 comments on commit d094f1b

Please sign in to comment.