diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2010-09-08 22:38:22 +0100 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2010-10-05 11:46:00 +0100 |
commit | ee17175118028ad3b2c39be2fd58a21406325b91 (patch) | |
tree | 054b81b53177c6d996e1aead85d7a919849e55fc /configure.in | |
parent | e8c5d7525cb8515d62a0ca791c765b2316ebff98 (diff) |
Integrate building HTML-ified manpages with the build system
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 2286a0e5..6af0ca9f 100644 --- a/configure.in +++ b/configure.in @@ -1344,6 +1344,10 @@ fi AM_CONDITIONAL(DBUS_XML_DOCS_ENABLED, test x$enable_xml_docs = xyes) AC_MSG_RESULT($enable_xml_docs) +AC_PATH_PROG([MAN2HTML], [man2html]) +AC_ARG_VAR([MAN2HTML], [Path to man2html (optional)]) +AM_CONDITIONAL(DBUS_HAVE_MAN2HTML, test x$MAN2HTML != x) + #### Have to go $localstatedir->$prefix/var->/usr/local/var #### find the actual value for $prefix that we'll end up with @@ -1630,8 +1634,9 @@ echo " 64-bit int: ${DBUS_INT64_TYPE} 32-bit int: ${DBUS_INT32_TYPE} 16-bit int: ${DBUS_INT16_TYPE} - Doxygen: ${DOXYGEN} - xmlto: ${XMLTO}" + Doxygen: ${DOXYGEN:-not found} + xmlto: ${XMLTO:-not found} + man2html: ${MAN2HTML:-not found}" echo " Maintainer mode: ${USE_MAINTAINER_MODE} |