Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1136
Modified Files:
setup.py
Log Message:
New comment and pass DIR_PYTHON macro to scintilla build process.
Index: setup.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup.py,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** setup.py 10 Feb 2008 10:02:09 -0000 1.66
--- setup.py 10 Feb 2008 23:56:33 -0000 1.67
***************
*** 692,695 ****
--- 692,697 ----
break
else:
+ # XXX - the below can probably go now - the problem was the
+ # sdkddkver.h issue already solved above.
if is_64bit:
# *sob*
***************
*** 759,762 ****
--- 761,765 ----
makeargs.append("SUB_DIR_O=%s" % build_temp)
makeargs.append("SUB_DIR_BIN=%s" % build_temp)
+ makeargs.append("DIR_PYTHON=%s" % sys.prefix)
if is_64bit and get_build_version() < 8.0:
makeargs.append("LINK=bufferoverflowU.lib")
|