]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
configure: Remove useless checks for luajit 155/head
authorJosef 'Jeff' Sipek <jeff.sipek@open-xchange.com>
Tue, 2 Mar 2021 14:51:59 +0000 (09:51 -0500)
committerjeff.sipek <jeff.sipek@open-xchange.com>
Wed, 3 Mar 2021 15:51:52 +0000 (15:51 +0000)
At one point, we considered supporting LuaJIT.  While it turned out to be
not worth it, the prototype removal accidentally left checks in the
configure file.

configure.ac

index b51bfd0c606497cdba5204b58717f351c480d67e..630bc7b5346f57201adb85b5f2937a8798f4c2d6 100644 (file)
@@ -558,8 +558,8 @@ DOVECOT_WANT_CASSANDRA
 DOVECOT_SQL
 
 AM_CONDITIONAL([AUTH_LUA_PLUGIN], [test "x$with_lua_plugin" = "xyes"])
-AM_CONDITIONAL([HAVE_LUA], [test "x$with_luajit" = "xyes" || test "x$with_lua" = "xyes"])
-AS_IF([test "x$with_luajit" = "xyes" || test "x$with_lua" = "xyes"],
+AM_CONDITIONAL([HAVE_LUA], [test "x$with_lua" = "xyes"])
+AS_IF([test "x$with_lua" = "xyes"],
   AS_IF([test "x$with_lua_plugin" = "xyes"],
       [userdb="$userdb lua (plugin)"; passdb="$passdb lua (plugin)"],
       [userdb="$userdb lua"; passdb="$passdb lua"],