Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25685
Modified Files:
setup_win32all.py
Log Message:
Add instructions for getting the build files required for the axdebug
extension and change the expected lib name to "ad1", from the old "msdbg".
Index: setup_win32all.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup_win32all.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** setup_win32all.py 7 Sep 2004 10:15:54 -0000 1.30
--- setup_win32all.py 9 Sep 2004 17:18:33 -0000 1.31
***************
*** 19,22 ****
--- 19,28 ----
warnings; if you do use them, you must install the correct libraries.
+ The 'axdebug' extension requires Active Debugging dev files available here:
+ 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 win32all extensions, execute:
python setup_win32all.py -q install
***************
*** 852,856 ****
WinExt_win32com('axdebug',
dsp_file=r"com\Active Debugging.dsp",
! libraries="axscript msdbg", # ad1.lib should work, but fails in debug?
pch_header = "stdafx.h",
),
--- 858,862 ----
WinExt_win32com('axdebug',
dsp_file=r"com\Active Debugging.dsp",
! libraries="axscript ad1",
pch_header = "stdafx.h",
),
|