From 86d7f938db719152f2e97483899db03a929737cb Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Sun, 8 Feb 2009 16:59:26 -0500 Subject: Delete some more stuff that I do not think is necessary --- setup.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b4e858a..78c281f 100755 --- a/setup.py +++ b/setup.py @@ -59,21 +59,6 @@ if sys.platform == 'darwin': IncludeDirs = ['/sw/include'] LibraryDirs = ['/sw/lib'] -# Use the SSL_LIB and SSL_INC environment variables to extend -# the library and header directories we pass to the extensions. -ssl_lib = os.environ.get('SSL_LIB', []) -if ssl_lib: - if LibraryDirs: - LibraryDirs += [ssl_lib] - else: - LibraryDirs = [ssl_lib] -ssl_inc = os.environ.get('SSL_INC', []) -if ssl_inc: - if IncludeDirs: - IncludeDirs += [ssl_inc] - else: - IncludeDirs = [ssl_inc] - # On Windows, make sure the necessary .dll's get added to the egg. data_files = [] if sys.platform == 'win32': -- cgit v1.2.1