From: Simon McVittie Date: Thu, 13 Jan 2011 18:30:00 +0000 (+0000) Subject: Check for xsltproc in configure.in X-Git-Tag: dbus-1.4.8~14^2^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5bf055422b4e7c0200157d20f0881d74877c65ef;p=platform%2Fupstream%2Fdbus.git Check for xsltproc in configure.in --- 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)