summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-12-18 23:27:16 +0000
committerLennart Poettering <lennart@poettering.net>2004-12-18 23:27:16 +0000
commit46be51bbc763d02922da18b1b3d7946aba9ab4ea (patch)
tree06fc54a8ddd5dbfb9e9bfee209a935043b4c4b48 /configure.ac
parentc73f5e4e6922363cc7cbf4f39f236e310845f9b9 (diff)
* don't build doxygen docs by default
git-svn-id: file:///home/lennart/svn/public/libdaemon/trunk@70 153bfa13-eec0-0310-be40-b0cb6a0e1b4b
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac19
1 files changed, 0 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac
index 0a7437e..8879e24 100644
--- a/configure.ac
+++ b/configure.ac
@@ -68,25 +68,6 @@ AC_FUNC_SETPGRP
AC_TYPE_SIGNAL
AC_TYPE_SIZE_T
-# DOXYGEN documentation generation
-AC_ARG_ENABLE(doxygen,
- AS_HELP_STRING(--disable-doxygen,Turn off doxygen usage for documentation generation),
-[case "${enableval}" in
- yes) doxygen=yes ;;
- no) doxygen=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --disable-doxygen) ;;
-esac],[doxygen=yes])
-
-if test x$doxygen = xyes ; then
- AC_CHECK_PROG(have_doxygen, doxygen, yes, no)
-
- if test x$have_doxygen = xno ; then
- AC_MSG_ERROR([*** Sorry, you have to install doxygen or use --disable-doxygen ***])
- fi
-fi
-
-AM_CONDITIONAL([USE_DOXYGEN], [test "x$doxygen" = xyes])
-
# LYNX documentation generation
AC_ARG_ENABLE(lynx,
AS_HELP_STRING(--disable-lynx,Turn off lynx usage for documentation generation),