mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
bpo-31904: Don't build the _crypt extension on VxWorks (GH-12833)
This commit is contained in:
parent
2430d532e2
commit
236d0b75c4
3 changed files with 10 additions and 6 deletions
13
setup.py
13
setup.py
|
@ -973,17 +973,18 @@ class PyBuildExt(build_ext):
|
|||
|
||||
def detect_crypt(self):
|
||||
# crypt module.
|
||||
if VXWORKS:
|
||||
# bpo-31904: crypt() function is not provided by VxWorks.
|
||||
# DES_crypt() OpenSSL provides is too weak to implement
|
||||
# the encryption.
|
||||
return
|
||||
|
||||
if self.compiler.find_library_file(self.lib_dirs, 'crypt'):
|
||||
libs = ['crypt']
|
||||
else:
|
||||
libs = []
|
||||
|
||||
if not VXWORKS:
|
||||
self.add(Extension('_crypt', ['_cryptmodule.c'],
|
||||
libraries=libs))
|
||||
elif self.compiler.find_library_file(self.lib_dirs, 'OPENSSL'):
|
||||
libs = ['OPENSSL']
|
||||
self.add(Extension('_crypt', ['_cryptmodule.c'],
|
||||
self.add(Extension('_crypt', ['_cryptmodule.c'],
|
||||
libraries=libs))
|
||||
|
||||
def detect_socket(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue