aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-23 08:39:07 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-23 08:39:07 +0000
commit9fac20d9ecb25a1d6164200c82f1bf766346da81 (patch)
tree88a6cbee3068439280427c5db1ec787f4bffa956 /configure.in
parenta6bf4adb74ab589d98d6441349727507cbc2c1b1 (diff)
Build and install the HTMLized man pages on UN*X.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11217 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 0d517ea29b..644531314a 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.271 2004/06/22 21:15:41 guy Exp $
+# $Id: configure.in,v 1.272 2004/06/23 08:39:06 guy Exp $
#
AC_INIT(etypes.h)
@@ -30,11 +30,20 @@ then
#
AC_MSG_ERROR(I couldn't find pod2man; make sure it's installed and in your path)
fi
+AC_PATH_PROG(POD2HTML, pod2html)
+if test "x$POD2HTML" = x
+then
+ #
+ # The alternative is not to build the HTML man pages....
+ #
+ AC_MSG_ERROR(I couldn't find pod2html; make sure it's installed and in your path)
+fi
AC_PATH_PROG(LEX, flex)
AC_PATH_PROG(PYTHON, python)
AC_SUBST(PERL)
AC_SUBST(POD2MAN)
+AC_SUBST(POD2HTML)
AC_SUBST(LEX)
AC_SUBST(FLEX_PATH)
AC_SUBST(PYTHON)