mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
Another fix for:
[ 589427 ] standard include paths on command line _ssl still got /usr/include on the command line.
This commit is contained in:
parent
dc96ae6c79
commit
210f5585d2
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -397,7 +397,7 @@ class PyBuildExt(build_ext):
|
|||
exts.append( Extension('_socket', ['socketmodule.c'],
|
||||
depends = ['socketmodule.h']) )
|
||||
# Detect SSL support for the socket module (via _ssl)
|
||||
ssl_incs = find_file('openssl/ssl.h', inc_dirs,
|
||||
ssl_incs = find_file('openssl/ssl.h', self.compiler.include_dirs,
|
||||
['/usr/local/ssl/include',
|
||||
'/usr/contrib/ssl/include/'
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue