From 1e7d20812f2faf4a9c787a437746a097476f10dc Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Wed, 15 Aug 2001 20:16:54 +0000 Subject: Addded missing dirs to the build. Add checks for scrollkeeper and jw to 2001-08-15 Kjartan Maraas * configure.in: Addded missing dirs to the build. Add checks for scrollkeeper and jw to get the docs building on later Red Hat's. svn path=/trunk/; revision=12069 --- configure.in | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index a04c46897f..4cda6ef24b 100644 --- a/configure.in +++ b/configure.in @@ -59,6 +59,24 @@ AC_DEFUN(EVO_CHECK_LIB, [ fi ]) +SCROLLKEEPER_REQUIRED=0.1.4 +AC_SUBST(SCROLLKEEPER_REQUIRED) + +dnl Check for scrollkeeper +AC_PATH_PROG(SCROLLKEEPER_CONFIG, scrollkeeper-config,no) +if test x$SCROLLKEEPER_CONFIG = xno; then + AC_MSG_ERROR(Couldn't find scrollkeeper-config, please install the scrollkeeper package) +fi + +dnl Test whether jw is installed +AC_PATH_PROG(JW,jw,no) +if test x$JW = xno; then + HAVE_JW="no" +else + HAVE_JW="yes" +fi +AM_CONDITIONAL(HAVE_JW, test "x$HAVE_JW" = "xyes") +AC_SUBST(HAVE_JW) dnl Initialize maintainer mode AM_MAINTAINER_MODE @@ -1128,11 +1146,13 @@ views/calendar/Makefile tools/Makefile doc/Makefile doc/C/Makefile +doc/no/Makefile doc/devel/Makefile doc/devel/calendar/Makefile doc/devel/calendar/cal-client/Makefile doc/devel/calendar/cal-util/Makefile doc/devel/executive-summary/Makefile +omf-install/Makefile ]) if test "x$with_sub_version" != "x"; then -- cgit v1.2.3