summaryrefslogtreecommitdiffstats
path: root/docs/docbook/configure.in
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-04-30 21:39:49 +0000
committerAlexander Bokovoy <ab@samba.org>2003-04-30 21:39:49 +0000
commitf4f6e0b29e744077dfb836745716a659a49d7529 (patch)
treebc9f800e84a5a529251e9a43bcc55f393574f7c3 /docs/docbook/configure.in
parent0cdab65ae336d8d1887519076a121deffe1ceb17 (diff)
downloadsamba-f4f6e0b29e744077dfb836745716a659a49d7529.tar.gz
samba-f4f6e0b29e744077dfb836745716a659a49d7529.tar.xz
samba-f4f6e0b29e744077dfb836745716a659a49d7529.zip
Docbook XML conversion: XSLT and build infrastructure
Diffstat (limited to 'docs/docbook/configure.in')
-rw-r--r--docs/docbook/configure.in17
1 files changed, 6 insertions, 11 deletions
diff --git a/docs/docbook/configure.in b/docs/docbook/configure.in
index 57482d134e5..6775e6db94e 100644
--- a/docs/docbook/configure.in
+++ b/docs/docbook/configure.in
@@ -1,17 +1,12 @@
AC_INIT(global.ent)
-# Jade wrapper
-AC_PATH_PROG(JW, jw)
-if test "x$JW" = x; then
- AC_MSG_ERROR("jw is required")
+AC_PATH_PROG(XSLTPROC, xsltproc)
+if test "x$XSLTPROC" = x; then
+ AC_MSG_ERROR("xsltproc 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")
+AC_PATH_PROG(PDFLATEX, pdflatex)
+if test "x$PDFLATEX" = x; then
+ AC_MSG_ERROR("pdflatex is required")
fi
DOC_BUILD_DATE=`date '+%d-%m-%Y'`