summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-08-01 19:27:30 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2007-08-01 19:27:30 +0100
commit8a27b1d1164c6c63467d79c497330fefd7c6de6e (patch)
treebe6ca2544e7a87353b967b9ab778d6546e10a8c9
parent44f7d60ff7ea038c2e314f05f1ccbc3a76f258d5 (diff)
downloaddbus-python-8a27b1d1164c6c63467d79c497330fefd7c6de6e.tar.gz
Check for epydoc version >= 3, and default to building API docs if available
-rw-r--r--configure.ac17
1 files changed, 15 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 48929ea..d30b86b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,7 +60,7 @@ AC_MSG_RESULT([$enable_html_docs])
AC_MSG_CHECKING([whether you want to build API docs])
AC_ARG_ENABLE(api-docs,
-AC_HELP_STRING([--enable-api-docs], [Enable API documentation building (requires epydoc 3 and docutils)]), enable_api_docs=$enableval, enable_api_docs=no)
+AC_HELP_STRING([--enable-api-docs], [Enable API documentation building (requires epydoc 3 and docutils)]), enable_api_docs=$enableval, enable_api_docs="if possible")
AC_MSG_RESULT([$enable_api_docs])
@@ -81,13 +81,26 @@ fi
if test "${enable_api_docs}" != no; then
AC_PATH_PROG([EPYDOC], [epydoc])
+ AC_MSG_CHECKING([epydoc 3])
+ if test -n "$EPYDOC"; then
+ EPYDOC_VERSION=`$EPYDOC --version`
+ case "$EPYDOC_VERSION" in
+ *ersion?3*)
+ AC_MSG_RESULT([yes, $EPYDOC_VERSION])
+ ;;
+ *)
+ AC_MSG_RESULT([no, $EPYDOC_VERSION])
+ EPYDOC=
+ ;;
+ esac
+ fi
if test -z "$EPYDOC"; then
case "$enable_api_docs" in
if*possible)
enable_api_docs=no
;;
*)
- AC_MSG_ERROR([cannot compile API documentation without epydoc installed])
+ AC_MSG_ERROR([cannot compile API documentation without epydoc 3.0beta1 or newer installed])
;;
esac
fi