summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-09-20 12:07:15 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2012-04-12 13:28:21 +0100
commite0329bd9ccc05b095c38fde993289db4912c09d5 (patch)
tree32ca14b27c983b0bcc2a24477dfb62cf818cfa00
parent07d4cb30fa07bf3dca05bc77aa28170ba062c77e (diff)
downloadtelepathy-glib-e0329bd9ccc05b095c38fde993289db4912c09d5.tar.gz
Don't check documentation completeness in this stable branch
-rw-r--r--configure.ac8
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])