Hi<br><br>When running &#39;configure --with-lua=no&#39; I got the following output:<br>checking if with lua... no]<br><br>and then it continued to check for LUA existance.<br><br>In addition, after fixing the obvious autoconf typo, the stub #ifdef path in lua-pdns-recursor.cc wasn&#39;t<br>
taken due to LIBDIR beeing set.<br><br>The following patch fixes both issues:<br>Index: <a href="http://configure.ac">configure.ac</a><br>===================================================================<br>--- <a href="http://configure.ac">configure.ac</a>        (revision 2279)<br>
+++ <a href="http://configure.ac">configure.ac</a>        (working copy)<br>@@ -26,7 +26,7 @@<br><br> dnl Check for lua<br> AC_MSG_CHECKING(if with lua)<br>-AC_ARG_WITH(lua, AC_HELP_STRING([--with-lua],[lua]), WITH_LUA=$withval],[WITH_LUA=yes])<br>
+AC_ARG_WITH(lua, AC_HELP_STRING([--with-lua],[lua]), WITH_LUA=$withval,[WITH_LUA=yes])<br><br> AC_MSG_RESULT($WITH_LUA)<br> if test &quot;$WITH_LUA&quot; != &quot;no&quot;; then<br>Index: pdns/lua-pdns-recursor.cc<br>===================================================================<br>
--- pdns/lua-pdns-recursor.cc   (revision 2279)<br>+++ pdns/lua-pdns-recursor.cc   (working copy)<br>@@ -1,6 +1,6 @@<br> #include &quot;lua-pdns-recursor.hh&quot;<br><br>-#if !defined(PDNS_ENABLE_LUA) &amp;&amp; !defined(LIBDIR)<br>
+#if !defined(PDNS_ENABLE_LUA) || !defined(LIBDIR)<br><br> // stub implementation<br><br>Best regards,<br>Jimmy<br>