Fix lib names for OpenSSL 1.1

This commit is contained in:
Kovid Goyal 2020-08-19 12:33:54 +05:30
parent efa02e3f94
commit 70afb2dd4d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ def binary_includes():
'harfbuzz', 'xkbcommon', 'xkbcommon-x11', 'harfbuzz', 'xkbcommon', 'xkbcommon-x11',
'ncursesw', 'readline', '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), get_dll_path('python' + py_ver, 2),
) )

View File

@ -263,8 +263,8 @@ class Freeze(object):
'harfbuzz.0', 'harfbuzz.0',
'png16.16', 'png16.16',
'lcms2.2', 'lcms2.2',
'crypto.1.0.0', 'crypto.1.1',
'ssl.1.0.0', 'ssl.1.1',
): ):
print('\nAdding', x) print('\nAdding', x)
x = 'lib%s.dylib' % x x = 'lib%s.dylib' % x