X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=acinclude.m4;h=8b240add9a8e21579e5a896c8d4504d07681dff4;hb=ee78071902e93ce22a3170f0937c158fd16894d8;hp=27fda424f4c9d6123b1a751ea7f534fe411f1317;hpb=e3b7009dc0be6515d23fbda9c744082506df4cb0;p=free-sw%2Fxcb%2Flibxcb diff --git a/acinclude.m4 b/acinclude.m4 index 27fda42..8b240ad 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -44,12 +44,16 @@ AC_DEFUN([AM_CHECK_DOXYGEN], AC_HELP_STRING( [--disable-build-docs], [Disable the build of the documentation]), - [if test "${disable_build_docs}" = "yes" ; then + [if test x"$enableval" != x"yes" ; then enable_build_docs="no" else enable_build_docs="yes" fi], [enable_build_docs="yes"]) + + if test "$enable_build_docs" = "no" ; then + BUILD_DOCS=no + else dnl dnl Get the prefix where doxygen is installed. dnl @@ -93,16 +97,13 @@ AC_DEFUN([AM_CHECK_DOXYGEN], AC_MSG_WARN( [Warning: no doxygen detected. Documentation will not be built]) fi]) + fi AC_MSG_CHECKING([whether documentation is built]) AC_MSG_RESULT([${BUILD_DOCS}]) dnl dnl Substitution dnl AC_SUBST([DOXYGEN]) - dnl according to the autoconf doc, htmldir == docdir == ${prefix}/share/doc/${PACKAGE_NAME} - dnl I tried to use docdir, without success - htmldir=${prefix}/share/doc/${PACKAGE_NAME} - AC_SUBST(htmldir) AM_CONDITIONAL(BUILD_DOCS, test "x$BUILD_DOCS" = "xyes") ]) dnl End of acinclude.m4