Skip to content

Commit

Permalink
Use luajit by default
Browse files Browse the repository at this point in the history
Luajit provides noticeably better performance with no real disadvantage.
  • Loading branch information
ids1024 committed May 6, 2015
1 parent 866f949 commit 43d0d02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -213,7 +213,7 @@ AC_MSG_RESULT([$with_sdlmixer])
AC_MSG_CHECKING([which lua to use])
AC_ARG_ENABLE([lua],
AC_HELP_STRING([--enable-lua=@<:@internal|shared|luajit@:>@],
[lua to use (default: internal)]), [
[lua to use (default: luajit)]), [
case "$enableval" in
luajit)
used_lua=luajit
Expand All @@ -226,7 +226,7 @@ AC_ARG_ENABLE([lua],
;;
esac
], [
used_lua=internal
used_lua=luajit
])
AC_MSG_RESULT([$used_lua])

Expand Down

0 comments on commit 43d0d02

Please sign in to comment.