aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-06-09 03:08:13 +0000
committerGerald Combs <gerald@wireshark.org>2004-06-09 03:08:13 +0000
commit058b3c5582ccbcdbe9a8dcd4434e8e2496440c68 (patch)
treee5be073fe0d34c6a1cbf22aec218d281519c880c /configure.in
parent6aba0658ee441a4edcf0b40bf383b2d01e37cb21 (diff)
Add Automake/Autoconf Doxygen targets.
svn path=/trunk/; revision=11128
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 062a461ee4..40a20a2ab2 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.264 2004/05/26 12:08:15 jmayer Exp $
+# $Id: configure.in,v 1.265 2004/06/09 03:08:12 gerald Exp $
#
AC_INIT(etypes.h)
@@ -39,6 +39,11 @@ AC_SUBST(LEX)
AC_SUBST(FLEX_PATH)
AC_SUBST(PYTHON)
+# Check for doxygen
+AC_PATH_PROG(DOXYGEN, doxygen)
+AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, "yes", "no")
+AM_CONDITIONAL(HAVE_DOXYGEN, test x$HAVE_DOXYGEN = xyes)
+
# Check for packaging utilities
# For now, we check to see if the various packaging utilites are in our
# path. I'm too lazy to write code to go hunt for them. - Gerald