From: Josef 'Jeff' Sipek Date: Tue, 2 Mar 2021 14:51:59 +0000 (-0500) Subject: configure: Remove useless checks for luajit X-Git-Tag: 2.3.15~327 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F155%2Fhead;p=thirdparty%2Fdovecot%2Fcore.git configure: Remove useless checks for luajit 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. --- diff --git a/configure.ac b/configure.ac index b51bfd0c60..630bc7b534 100644 --- a/configure.ac +++ b/configure.ac @@ -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"],