From 5bf055422b4e7c0200157d20f0881d74877c65ef Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 13 Jan 2011 18:30:00 +0000 Subject: [PATCH 4/8] Check for xsltproc in configure.in --- configure.in | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure.in b/configure.in index 2268ecd..cf71fa3 100644 --- a/configure.in +++ b/configure.in @@ -1349,6 +1349,10 @@ fi AM_CONDITIONAL(DBUS_DOXYGEN_DOCS_ENABLED, test x$enable_doxygen_docs = xyes) AC_MSG_RESULT($enable_doxygen_docs) +XSLTPROC=false +AC_CHECK_PROGS([XSLTPROC], [xsltproc]) +AM_CONDITIONAL(DBUS_HAVE_XSLTPROC, test "$XSLTPROC" != false) + ### XML Documentation AC_PATH_PROG(XMLTO, xmlto, no) -- 1.7.2.3