Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666991f commit 5f87915Copy full SHA for 5f87915
1 file changed
setup.py
@@ -2466,7 +2466,8 @@ def split_var(name, sep):
2466
extra_linker_args.append(f"-Wl,--exclude-libs,lib{lib}.a")
2467
openssl_extension_kwargs["extra_link_args"] = extra_linker_args
2468
# don't link OpenSSL shared libraries.
2469
- openssl_extension_kwargs["libraries"] = []
+ # include libz for OpenSSL build flavors with compression support
2470
+ openssl_extension_kwargs["libraries"] = ["z"]
2471
2472
self.add(
2473
Extension(
0 commit comments