This is an automated email from the ASF dual-hosted git repository. damjan pushed a commit to branch windows-amd64 in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 980bc504a0b2458e8d9c76c0e2458dd569841ace Author: Damjan Jovanovic <dam...@apache.org> AuthorDate: Sun Jan 19 04:56:53 2025 +0200 On Windows/amd64, OpenSSL library names have an "-x64" suffix. Patch by: me --- main/scp2/source/ooo/file_library_ooo.scp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/main/scp2/source/ooo/file_library_ooo.scp b/main/scp2/source/ooo/file_library_ooo.scp index ca9dadba1e..229277ed63 100644 --- a/main/scp2/source/ooo/file_library_ooo.scp +++ b/main/scp2/source/ooo/file_library_ooo.scp @@ -1774,8 +1774,10 @@ File gid_File_Lib_Openssl TXT_FILE_BODY; Styles = (PACKED); Dir = SCP2_OOO_BIN_DIR; - #ifdef WNT + #if defined(WNT) && defined(X86) Name = "libssl-3.dll"; + #elif defined(WNT) && defined(X86_64) + Name = "libssl-3-x64.dll"; #else Name = SCP2_URE_DL_VER("ssl", "3"); #endif @@ -1787,8 +1789,10 @@ File gid_File_Lib_Crypto TXT_FILE_BODY; Styles = (PACKED); Dir = SCP2_OOO_BIN_DIR; - #ifdef WNT + #if defined(WNT) && defined(X86) Name = "libcrypto-3.dll"; + #elif defined(WNT) && defined(X86_64) + Name = "libcrypto-3-x64.dll"; #else Name = SCP2_URE_DL_VER("crypto", "3"); #endif