From dd785dbfa82249c315e102f6a355f1580d3c7436 Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Fri, 5 Mar 2010 17:23:00 -0500 Subject: Documentation for collection interface Passed through the interface and changed the comments to comply with the collection interface. --- common/collection/configure.ac | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'common/collection/configure.ac') diff --git a/common/collection/configure.ac b/common/collection/configure.ac index 2ec6c019..25aba162 100644 --- a/common/collection/configure.ac +++ b/common/collection/configure.ac @@ -1,4 +1,6 @@ -AC_INIT([collection],[0.4.0],[sssd-devel@lists.fedorahosted.org]) +AC_INIT([collection], + [0.4.0], + [sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([collection.c]) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) @@ -32,6 +34,9 @@ AC_CHECK_FUNC([strcasestr], AC_DEFINE([COL_MAX_DATA], [65535], [Max length of the data block allowed in the collection value.]) +AC_PATH_PROG([DOXYGEN], [doxygen], [false]) +AM_CONDITIONAL([HAVE_DOXYGEN], [test x$DOXYGEN != xfalse ]) -AC_CONFIG_FILES([Makefile collection.pc]) + +AC_CONFIG_FILES([Makefile collection.cfg.doxy collection.pc]) AC_OUTPUT -- cgit