From: Peter van Dijk Date: Fri, 28 Jun 2013 08:49:54 +0000 (+0200) Subject: add non-fatal configure check for ragel and asciidoc, thanks Nido X-Git-Tag: rec-3.6.0-rc1~614 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5e2b9e6d5abc1927511e08f279f17b00dc877ff;p=thirdparty%2Fpdns.git add non-fatal configure check for ragel and asciidoc, thanks Nido --- diff --git a/configure.ac b/configure.ac index c98d974fd0..4178905153 100644 --- a/configure.ac +++ b/configure.ac @@ -24,6 +24,9 @@ AC_PROG_MAKE_SET AC_PROG_LIBTOOL AC_LANG_CPLUSPLUS +AC_CHECK_PROG([RAGEL], [ragel], [ragel]) +AC_CHECK_PROG([ASCIIDOC], [asciidoc], [asciidoc]) + dnl Check for lua AC_MSG_CHECKING(if with lua) AC_ARG_WITH(lua, AC_HELP_STRING([--with-lua],[use Lua]), [WITH_LUA=$withval],[WITH_LUA=yes])