diff options
-rw-r--r-- | docs/docbook/configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/docbook/configure.in b/docs/docbook/configure.in index 3a9ed51d16..57482d134e 100644 --- a/docs/docbook/configure.in +++ b/docs/docbook/configure.in @@ -1,8 +1,18 @@ AC_INIT(global.ent) +# Jade wrapper AC_PATH_PROG(JW, jw) +if test "x$JW" = x; then + AC_MSG_ERROR("jw is required") +fi AC_PATH_PROG(PERL, perl) +if test "x$PERL" = x; then + AC_MSG_ERROR("perl is required") +fi AC_PATH_PROG(HTMLDOC, htmldoc) +if test "x$HTMLDOC" = x; then + AC_MSG_ERROR("htmldoc is required") +fi DOC_BUILD_DATE=`date '+%d-%m-%Y'` AC_SUBST(DOC_BUILD_DATE) |