From 1314743ca9960c4ecb484b5466c78d020678d694 Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Tue, 2 Mar 2021 09:51:59 -0500 Subject: [PATCH] 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. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"], -- 2.47.3