From: Ruben Kerkhof Date: Sat, 7 Mar 2015 23:13:00 +0000 (+0100) Subject: Log if the user asked for Lua X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~98^2~59^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2c10d4d9b4f16130685db69f577fb8e8682b675;p=thirdparty%2Fpdns.git Log if the user asked for Lua Just like we do for our other checks --- diff --git a/m4/pdns_with_lua.m4 b/m4/pdns_with_lua.m4 index 633b945c78..a589217b3f 100644 --- a/m4/pdns_with_lua.m4 +++ b/m4/pdns_with_lua.m4 @@ -1,9 +1,11 @@ AC_DEFUN([PDNS_WITH_LUA],[ - dnl Check for lua + AC_MSG_CHECKING([whether we will be linking in Lua]) AC_ARG_WITH([lua], [AS_HELP_STRING([--with-lua], [build Lua Bindings @<:@default=auto@:>@])], [with_lua=$withval], - [with_lua=auto]) + [with_lua=auto] + ) + AC_MSG_RESULT([$with_lua]) AS_IF([test "x$with_lua" != "xno"],[ AS_IF([test "x$with_lua" = "xyes" -o "x$with_lua" = "xauto"],