Skip to content

Commit

Permalink
fix(build): Work around macros hoisting outside of conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Nov 27, 2024
1 parent 5ada61d commit 2d4ffd6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ AC_ARG_ENABLE([dependency-checks],
[Disable build tooling dependency checks]))
AM_CONDITIONAL([DEPENDENCY_CHECKS], [test "x$enable_dependency_checks" != "xno"])

# Assume true unless later checks prove otherwise, allows our checks for Lua to
# be run conditionally and hence skipped for e.g. docker only build pipelines.
AM_CONDITIONAL([LUAJIT], [true])

AM_COND_IF([DEPENDENCY_CHECKS], [
# Run time deps
Expand Down

0 comments on commit 2d4ffd6

Please sign in to comment.