configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 015b61daec58227263bf05defe97a03c92762dc5
Author:     Michael Stahl <[email protected]>
AuthorDate: Wed Oct 1 15:55:08 2025 +0200
Commit:     Xisco Fauli <[email protected]>
CommitDate: Mon Oct 20 14:36:41 2025 +0200

    configure: openssl 3.0.18 evidently needs perl Time::Piece
    
    Can't locate Time/Piece.pm in @INC (you may need to install the Time::Piece 
module) (@INC entries checked: ...) at Makefile.in line 37.
    
    Change-Id: Ia47eeb971f7bf91972f46be46330f10e64682799
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191735
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <[email protected]>
    (cherry picked from commit 0622d8d160b54b120e3955b6b0e177a2a25ca0d1)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191752
    Reviewed-by: Xisco Fauli <[email protected]>

diff --git a/configure.ac b/configure.ac
index aa4e3d17cd87..d483770725da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6941,9 +6941,9 @@ if test "$enable_openssl" = "yes" -a 
"$with_system_openssl" != "yes"; then
     # OpenSSL needs that to build
     if test -n "$WSL_ONLY_AS_HELPER"; then
         # OpenSSL is built via spp, FindBin is provided by default, but deps 
might change in future
-        perl_use_string_spp="$perl_use_string_spp ; use FindBin"
+        perl_use_string_spp="$perl_use_string_spp ; use FindBin ; use 
Time::Piece"
     else
-        perl_use_string="$perl_use_string ; use FindBin"
+        perl_use_string="$perl_use_string ; use FindBin ; use Time::Piece"
     fi
 fi
 dnl in WSL_ONLY_AS_HELPER case the test should be done with 
git-bash-provided-perl and not perl from

Reply via email to