config/lx_enable_doc.m4
changeset 1681 84e43c7ca1e3
equal deleted inserted replaced
-1:000000000000 0:bfe9848f6c17
       
     1 AC_DEFUN([LX_ENABLE_DOC],
       
     2 [
       
     3   AC_ARG_ENABLE([doc],
       
     4 AS_HELP_STRING([--enable-doc@<:@=yes|no|full@:>@], [build the documentation (full enables internal documentation too) @<:@default=yes@:>@])
       
     5 AS_HELP_STRING([--disable-doc], [do not build the documentation]),
       
     6          [], [enable_doc=yes])
       
     7 
       
     8   AC_MSG_CHECKING([whether to build the documention])
       
     9   case "$enable_doc" in
       
    10     yes)
       
    11       DOXYGEN_INTERNAL_DOCS=NO
       
    12       AC_MSG_RESULT([yes])
       
    13       ;;
       
    14     full)
       
    15       DOXYGEN_INTERNAL_DOCS=YES
       
    16       AC_MSG_RESULT([full])
       
    17       ;;
       
    18     no)
       
    19       DOXYGEN_INTERNAL_DOCS=NO
       
    20       AC_MSG_RESULT([no])
       
    21       ;;
       
    22     *)
       
    23       AC_MSG_ERROR([bad value $enable_doc for option --enable-doc])
       
    24       ;;
       
    25   esac
       
    26   AC_SUBST(DOXYGEN_INTERNAL_DOCS)
       
    27   AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"])
       
    28 ])