aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-06-23 08:39:07 +0000
committerGuy Harris <guy@alum.mit.edu>2004-06-23 08:39:07 +0000
commitfc1023772c00989b292f1b11d315006dfc9e8ffa (patch)
tree88a6cbee3068439280427c5db1ec787f4bffa956 /configure.in
parentaacb8bc9b64f0ee93a865445f39429bfb90475e8 (diff)
Build and install the HTMLized man pages on UN*X.
svn path=/trunk/; revision=11217
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)