configure.ac (98e4ac81) configure.ac (9b3da915)
1dnl * *************************************************************
2dnl *
3dnl * Licensed to the Apache Software Foundation (ASF) under one
4dnl * or more contributor license agreements. See the NOTICE file
5dnl * distributed with this work for additional information
6dnl * regarding copyright ownership. The ASF licenses this file
7dnl * to you under the Apache License, Version 2.0 (the
8dnl * "License"); you may not use this file except in compliance

--- 2007 unchanged lines hidden (view full) ---

2016AC_SUBST(PERL)
2017
2018dnl ===================================================================
2019dnl Testing for required Perl modules
2020dnl The list of required Perl modules is documented here:
2021dnl http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO#General_Build_Requirements
2022dnl ===================================================================
2023AC_MSG_CHECKING([for required Perl modules])
1dnl * *************************************************************
2dnl *
3dnl * Licensed to the Apache Software Foundation (ASF) under one
4dnl * or more contributor license agreements. See the NOTICE file
5dnl * distributed with this work for additional information
6dnl * regarding copyright ownership. The ASF licenses this file
7dnl * to you under the Apache License, Version 2.0 (the
8dnl * "License"); you may not use this file except in compliance

--- 2007 unchanged lines hidden (view full) ---

2016AC_SUBST(PERL)
2017
2018dnl ===================================================================
2019dnl Testing for required Perl modules
2020dnl The list of required Perl modules is documented here:
2021dnl http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO#General_Build_Requirements
2022dnl ===================================================================
2023AC_MSG_CHECKING([for required Perl modules])
2024if `$PERL -e 'use Archive::Zip; use LWP::UserAgent; use XML::Parser; use LWP::Protocol'>/dev/null 2>&1`; then
2024if `$PERL -e 'use Archive::Zip;
2025 use LWP::UserAgent;
2026 use XML::Parser;
2027 use Digest::SHA;
2028 use Digest::MD5;
2029 use LWP::Protocol::https;'>/dev/null 2>&1`; then
2025 AC_MSG_RESULT([all modules found])
2026else
2027 # Find out which modules are missing.
2028 missing_perl_modules=
2029 if ! `$PERL -e 'use Archive::Zip;'>/dev/null 2>&1`; then
2030 missing_perl_modules=Archive::Zip
2031 fi
2032 if ! `$PERL -e 'use LWP::UserAgent;'>/dev/null 2>&1`; then

--- 5302 unchanged lines hidden ---
2030 AC_MSG_RESULT([all modules found])
2031else
2032 # Find out which modules are missing.
2033 missing_perl_modules=
2034 if ! `$PERL -e 'use Archive::Zip;'>/dev/null 2>&1`; then
2035 missing_perl_modules=Archive::Zip
2036 fi
2037 if ! `$PERL -e 'use LWP::UserAgent;'>/dev/null 2>&1`; then

--- 5302 unchanged lines hidden ---