1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00
samba-mirror/docs/docbook/configure.in

21 lines
396 B
Plaintext

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)
AC_OUTPUT( Makefile )