From 210f5585d272d6f26e1ba64dbd84b726c69f899d Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Sat, 3 Aug 2002 16:16:22 +0000 Subject: [PATCH] Another fix for: [ 589427 ] standard include paths on command line _ssl still got /usr/include on the command line. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c67f724a9b2..6997029267d 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/' ]