From 641cfc0f502a4f4b32f6aa5b2c64422725595725 Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Fri, 15 Jan 2010 02:31:15 +0000 Subject: [PATCH] Define the HAVE_DOXYGEN conditional unconditionally so the configure script completes even with --disable-docs. svn path=/trunk/vorbis/; revision=16785 --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0ca65bb..8d56dcb 100644 --- a/configure.ac +++ b/configure.ac @@ -64,13 +64,14 @@ AC_PROG_LIBTOOL AM_PROG_CC_C_O dnl Check for doxygen +HAVE_DOXYGEN=false if test "x$enable_docs" = xyes; then AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, true, false) - AM_CONDITIONAL(HAVE_DOXYGEN,$HAVE_DOXYGEN) if test $HAVE_DOXYGEN = "false"; then AC_MSG_WARN([*** doxygen not found, API documentation will not be built]) fi fi +AM_CONDITIONAL(HAVE_DOXYGEN,$HAVE_DOXYGEN) dnl latex tools for the specification document AC_ARG_ENABLE(docs, -- 2.7.4