]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Log if the user asked for Lua
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 7 Mar 2015 23:13:00 +0000 (00:13 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 7 Mar 2015 23:13:00 +0000 (00:13 +0100)
Just like we do for our other checks

m4/pdns_with_lua.m4

index 633b945c78606197d4432ecaf985f471aa3d1ed5..a589217b3f8b168d6ed03ceaac66967b5047be96 100644 (file)
@@ -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"],