diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-08-16 04:16:54 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-08-16 04:16:54 +0800 |
commit | 1e7d20812f2faf4a9c787a437746a097476f10dc (patch) | |
tree | cc19fc5330bcad2366a13e4d91c8dc0bc8b273ea /configure.in | |
parent | eaf4de8941d4d37c40c75bee0aecbbd75e08e184 (diff) | |
download | gsoc2013-evolution-1e7d20812f2faf4a9c787a437746a097476f10dc.tar.gz gsoc2013-evolution-1e7d20812f2faf4a9c787a437746a097476f10dc.tar.zst gsoc2013-evolution-1e7d20812f2faf4a9c787a437746a097476f10dc.zip |
Addded missing dirs to the build. Add checks for scrollkeeper and jw to
2001-08-15 Kjartan Maraas <kmaraas@gnome.org>
* 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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 20 |
1 files changed, 20 insertions, 0 deletions
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 |