Skip to content

Commit

Permalink
libcrypto 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elena-krismer authored Aug 10, 2023
1 parent b47fdc3 commit c13cf68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release/pyinstaller/alphastats.spec
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ if sys.platform[:5] == "win32":
base_path = os.path.dirname(sys.executable)
library_path = os.path.join(base_path, "Library", "bin")
dll_path = os.path.join(base_path, "DLLs")
libcrypto_dll_path = os.path.join(dll_path, "libcrypto-1_1-x64.dll")
libssl_dll_path = os.path.join(dll_path, "libssl-1_1-x64.dll")
libcrypto_lib_path = os.path.join(library_path, "libcrypto-1_1-x64.dll")
libssl_lib_path = os.path.join(library_path, "libssl-1_1-x64.dll")
libcrypto_dll_path = os.path.join(dll_path, "libcrypto-3_0-x64.dll")
libssl_dll_path = os.path.join(dll_path, "libssl-3_0-x64.dll")
libcrypto_lib_path = os.path.join(library_path, "libcrypto-3_0-x64.dll")
libssl_lib_path = os.path.join(library_path, "libssl-3_0-x64.dll")
if not os.path.exists(libcrypto_dll_path):
datas.append((libcrypto_lib_path, "."))
if not os.path.exists(libssl_dll_path):
Expand Down

0 comments on commit c13cf68

Please sign in to comment.