summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2011-01-13 18:30:00 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2011-01-14 12:45:51 +0000
commit5bf055422b4e7c0200157d20f0881d74877c65ef (patch)
tree7f28b67d24180c82d41864d8836fb2d9f03d5974
parent0b7be0d8e3289d60e9b2710de61ffe835866a405 (diff)
downloaddbus-5bf055422b4e7c0200157d20f0881d74877c65ef.tar.gz
Check for xsltproc in configure.in
-rw-r--r--configure.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 2268ecdf..cf71fa31 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)