[pywin32-checkins] pywin32 setup.py,1.19,1.20
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-10-20 22:24:13
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9175 Modified Files: setup.py Log Message: axdebug seems to build again with a recent platform SDK. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** setup.py 19 Sep 2005 12:25:27 -0000 1.19 --- setup.py 20 Oct 2005 22:24:00 -0000 1.20 *************** *** 1,3 **** ! build_id="204.2" # Putting buildno at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) --- 1,3 ---- ! build_id="204.3" # Putting buildno at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) *************** *** 24,32 **** Just install it - this setup script will automatically locate it. ! The 'axdebug' extension requires Active Debugging dev files available from: ! http://support.microsoft.com/default.aspx?kbid=223389 ! Download Scriptng.exe, unpack the files to a temporary directory and manually ! copy the .h and .lib files to your Platform SDK installation's include ! and lib directories, respectively -- overwriting some files of the same name. To install the pywin32 extensions, execute: --- 24,30 ---- Just install it - this setup script will automatically locate it. ! Note: 'axdebug' appears to work with recent Platform SDKs, with no ! additional software needed. It is probably necessary to select an appropriate ! "sub" SDK, but its not clear exactly which one yet (I just grabbed them all!) To install the pywin32 extensions, execute: *************** *** 61,65 **** pywin32_version='.'.join(sys.version.split('.')[:2])+'.'+build_id ! print pywin32_version # Python 2.2 has no True/False --- 59,63 ---- pywin32_version='.'.join(sys.version.split('.')[:2])+'.'+build_id ! print "Building pywin32", pywin32_version # Python 2.2 has no True/False *************** *** 372,376 **** v.ensure_value('dll',None) v.ensure_value('debug',None) ! v.ensure_value('verbose','1') for dirname, subdirs, fnames in os.walk(self.build_base): for fname in fnames: --- 370,374 ---- v.ensure_value('dll',None) v.ensure_value('debug',None) ! v.ensure_value('verbose','-v' in sys.argv) for dirname, subdirs, fnames in os.walk(self.build_base): for fname in fnames: *************** *** 1058,1062 **** WinExt_win32com('axdebug', dsp_file=r"com\Active Debugging.dsp", ! libraries="axscript ad1", pch_header = "stdafx.h", optional_headers = ["activdbg.h"], --- 1056,1060 ---- WinExt_win32com('axdebug', dsp_file=r"com\Active Debugging.dsp", ! libraries="axscript", pch_header = "stdafx.h", optional_headers = ["activdbg.h"], |