aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-30 20:30:19 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-30 20:30:19 +0000
commitbbf26f66c40fd6c80a32845ddfdf6be01643ee14 (patch)
treeb1a06381aa0b73949105001cb2b222dfb48bd3e1 /configure.in
parent1b338dfb771cd39a4865e73bd2185b2f7e95f887 (diff)
If we don't have pod2man, quit - otherwise, we'd just drive on and use
the empty POD2MAN variable in commands, producing very confusing errors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8838 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 9da4904618..03d4274ffb 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.227 2003/10/28 07:02:35 guy Exp $
+# $Id: configure.in,v 1.228 2003/10/30 20:30:19 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -31,6 +31,13 @@ AC_PROG_YACC
AM_PROG_LEX
AC_PATH_PROG(PERL, perl)
AC_PATH_PROG(POD2MAN, pod2man)
+if test x$POD2MAN = x
+then
+ #
+ # The alternative is not to build the man pages....
+ #
+ AC_MSG_ERROR(pod2man is not present on this system)
+fi
AC_PATH_PROG(LEX, flex)
AC_PATH_PROG(PYTHON, python)