[pywin32-checkins] pywin32 setup.py,1.31,1.32
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Trent M. <tm...@us...> - 2006-01-12 18:14:03
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14534 Modified Files: setup.py Log Message: Allow build to work without INCLUDE or LIB envvars defined. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** setup.py 11 Jan 2006 01:31:41 -0000 1.31 --- setup.py 12 Jan 2006 18:13:53 -0000 1.32 *************** *** 403,407 **** if self.windows_h_version is None: include_dirs = self.compiler.include_dirs + \ ! os.environ.get("INCLUDE").split(os.pathsep) for d in include_dirs: look = os.path.join(d, "WINDOWS.H") --- 403,407 ---- if self.windows_h_version is None: include_dirs = self.compiler.include_dirs + \ ! os.environ.get("INCLUDE", "").split(os.pathsep) for d in include_dirs: look = os.path.join(d, "WINDOWS.H") *************** *** 441,445 **** common_dirs = self.compiler.library_dirs[:] ! common_dirs += os.environ.get("LIB").split(os.pathsep) patched_libs = [] for lib in ext.libraries: --- 441,445 ---- common_dirs = self.compiler.library_dirs[:] ! common_dirs += os.environ.get("LIB", "").split(os.pathsep) patched_libs = [] for lib in ext.libraries: |