From: Michael W. Hudson Date: Sat, 3 Aug 2002 16:16:22 +0000 (+0000) Subject: Another fix for: X-Git-Tag: v2.3c1~4747 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=210f5585d272d6f26e1ba64dbd84b726c69f899d;p=thirdparty%2FPython%2Fcpython.git Another fix for: [ 589427 ] standard include paths on command line _ssl still got /usr/include on the command line. --- diff --git a/setup.py b/setup.py index c67f724a9b26..6997029267d5 100644 --- a/setup.py +++ b/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/' ]