diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-09-20 12:07:15 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-04-12 13:28:21 +0100 |
commit | e0329bd9ccc05b095c38fde993289db4912c09d5 (patch) | |
tree | 32ca14b27c983b0bcc2a24477dfb62cf818cfa00 /configure.ac | |
parent | 07d4cb30fa07bf3dca05bc77aa28170ba062c77e (diff) | |
download | telepathy-glib-e0329bd9ccc05b095c38fde993289db4912c09d5.tar.gz |
Don't check documentation completeness in this stable branch
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 1af933c8d..d7a9feea7 100644 --- a/configure.ac +++ b/configure.ac @@ -144,14 +144,16 @@ ifelse(tp_glib_nano_version, 0, [ENABLE_DOC_CHECKS=$enableval], [ENABLE_DOC_CHECKS=no] ) ], [ # tp-glib is version x.y.z.1 - enable extra checks by default + # (but only partially, because this is a stable branch and gtk-doc's + # definition of "complete" sometimes changes) AC_ARG_ENABLE(coding-style-checks, AC_HELP_STRING([--disable-coding-style-checks], [do not check coding style using grep]), [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes]) AC_ARG_ENABLE(doc-checks, - AC_HELP_STRING([--disable-doc-checks], - [do not check for complete documentation coverage]), - [ENABLE_DOC_CHECKS=$enableval], [ENABLE_DOC_CHECKS=yes]) + AC_HELP_STRING([--enable-doc-checks], + [check for complete documentation coverage]), + [ENABLE_DOC_CHECKS=$enableval], [ENABLE_DOC_CHECKS=no]) ]) AC_SUBST([ENABLE_CODING_STYLE_CHECKS]) |