From 15dc6ed9ecdea095b041190aeb8f67ed71efd0e7 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Wed, 27 Jan 2010 10:08:31 -0500 Subject: Add doxygen docs for ConfDB --- server/configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'server/configure.ac') diff --git a/server/configure.ac b/server/configure.ac index 47d53783..f24debb6 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -122,7 +122,11 @@ PKG_CHECK_MODULES([CHECK], [check >= 0.9.5], [have_check=1], [have_check=]) if test x$have_check = x; then AC_MSG_WARN([Without the 'CHECK' libraries, you will be unable to run all tests in the 'make check' suite]) fi + +AC_PATH_PROG([DOXYGEN], [doxygen], [false]) +AM_CONDITIONAL([HAVE_DOXYGEN], [test x$DOXYGEN != xfalse ]) + AM_CONDITIONAL([HAVE_CHECK], [test x$have_check != x]) -AC_CONFIG_FILES([Makefile po/Makefile.in]) +AC_CONFIG_FILES([Makefile doxy.config po/Makefile.in]) AC_OUTPUT -- cgit