summaryrefslogtreecommitdiff
path: root/config_office
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-10-11 13:07:27 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-10-11 13:07:27 +0000
commit62737271511d3a3e57acc3087055a2155b934aae (patch)
tree69ad36e3bd060b66941483e9cbafd02443fa6edc /config_office
parentb83af8c90bb06bc77ab309c9f09bd915b20df704 (diff)
INTEGRATION: CWS cfgcws01 (1.69.4); FILE MERGED
2004/09/28 09:11:31 mmeeks 1.69.4.1: Issue number: 34707 Submitted by: mmeeks Reviewed by: mmeeks Add check for perl's Archive::Zip functionality & deps.
Diffstat (limited to 'config_office')
-rw-r--r--config_office/configure.in14
1 files changed, 12 insertions, 2 deletions
diff --git a/config_office/configure.in b/config_office/configure.in
index effe2f22476e..433b74d571b0 100644
--- a/config_office/configure.in
+++ b/config_office/configure.in
@@ -3,7 +3,7 @@ dnl * vi:set sw=3 ts=3 et:
dnl *
dnl * Name: configure.in
dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
-dnl * Date: $Date: 2004-10-11 13:55:26 $
+dnl * Date: $Date: 2004-10-11 14:07:27 $
dnl *
dnl * Desc: This file serves as input for the GNU autoconf package
dnl * in order to create a configure script.
@@ -12,7 +12,7 @@ dnl * necessary to build OpenOffice.org
dnl *
dnl *
dnl ******************************************************************/
-AC_REVISION( $Revision: 1.71 $ )
+AC_REVISION( $Revision: 1.72 $ )
AC_PREREQ(2.50)
AC_INIT()
echo "$@" >config.parms
@@ -1650,6 +1650,16 @@ fi
AC_SUBST(PERL)
dnl ===================================================================
+dnl Testing for required Perl modules
+dnl ===================================================================
+AC_MSG_CHECKING([for required Perl modules])
+if `$PERL -e 'use Archive::Zip;'`; then
+ AC_MSG_RESULT([all modules found])
+else
+ AC_MSG_ERROR([Failed to find some modules])
+fi
+
+dnl ===================================================================
dnl Check whether the tcsh can be used.
dnl ===================================================================
if test "$_os" != "WINNT" -o "$with_use_shell" != "4nt"; then