From 70afb2dd4dd95e3515b6c7ad449a50abd9e61dd3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 19 Aug 2020 12:33:54 +0530 Subject: [PATCH] Fix lib names for OpenSSL 1.1 --- bypy/linux/__main__.py | 2 +- bypy/macos/__main__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bypy/linux/__main__.py b/bypy/linux/__main__.py index 5ec85ac2f..44854ec71 100644 --- a/bypy/linux/__main__.py +++ b/bypy/linux/__main__.py @@ -35,7 +35,7 @@ def binary_includes(): 'harfbuzz', 'xkbcommon', 'xkbcommon-x11', 'ncursesw', 'readline', ))) + ( - get_dll_path('bz2', 2), get_dll_path('ssl', 3), get_dll_path('crypto', 3), + get_dll_path('bz2', 2), get_dll_path('ssl', 2), get_dll_path('crypto', 2), get_dll_path('python' + py_ver, 2), ) diff --git a/bypy/macos/__main__.py b/bypy/macos/__main__.py index 4eac88666..df3915ed6 100644 --- a/bypy/macos/__main__.py +++ b/bypy/macos/__main__.py @@ -263,8 +263,8 @@ class Freeze(object): 'harfbuzz.0', 'png16.16', 'lcms2.2', - 'crypto.1.0.0', - 'ssl.1.0.0', + 'crypto.1.1', + 'ssl.1.1', ): print('\nAdding', x) x = 'lib%s.dylib' % x