From: Josh Coalson Date: Fri, 19 May 2006 00:31:12 +0000 (+0000) Subject: add --disable-doxygen-docs options (sf patch #1365935 https://sourceforge.net/tracker... X-Git-Tag: 1.2.0~483 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5134f1f5aa46dc15c9d79c0d63c5fd6da1ef780;p=platform%2Fupstream%2Fflac.git add --disable-doxygen-docs options (sf patch #1365935 https://sourceforge.net/tracker/index.php?func=detail&aid=1365935&group_id=13478&atid=313478) --- diff --git a/configure.in b/configure.in index 92f2005..a65dacd 100644 --- a/configure.in +++ b/configure.in @@ -168,7 +168,10 @@ dnl check for i18n(internationalization); these are from libiconv/gettext AM_ICONV AM_LANGINFO_CODESET -AC_CHECK_PROGS(DOXYGEN, doxygen) +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)