This commit is contained in:
Josh Coalson 2006-05-19 00:31:12 +00:00
parent 26c82350fb
commit b5134f1f5a
1 changed files with 4 additions and 1 deletions

View File

@ -168,7 +168,10 @@ dnl check for i18n(internationalization); these are from libiconv/gettext
AM_ICONV
AM_LANGINFO_CODESET
AC_ARG_ENABLE(doxygen_docs, AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]))
if "x$enable_doxygen_docs" != "xno"; then
AC_CHECK_PROGS(DOXYGEN, doxygen)
fi
AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
if test -n "$DOXYGEN" ; then
AC_DEFINE(FLAC__HAS_DOXYGEN)