[xiph-commits] r16785 - trunk/vorbis

giles at svn.xiph.org giles at svn.xiph.org
Thu Jan 14 18:31:15 PST 2010


Author: giles
Date: 2010-01-14 18:31:15 -0800 (Thu, 14 Jan 2010)
New Revision: 16785

Modified:
   trunk/vorbis/configure.ac
Log:
Define the HAVE_DOXYGEN conditional unconditionally so the configure 
script completes even with --disable-docs.


Modified: trunk/vorbis/configure.ac
===================================================================
--- trunk/vorbis/configure.ac	2010-01-14 23:42:27 UTC (rev 16784)
+++ trunk/vorbis/configure.ac	2010-01-15 02:31:15 UTC (rev 16785)
@@ -64,13 +64,14 @@
 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,



More information about the commits mailing list