mirror of
https://github.com/python/cpython.git
synced 2024-12-01 03:01:36 +01:00
b072cf2579
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64267 | amaury.forgeotdarc | 2008-06-14 09:40:32 +0200 (Sa, 14 Jun 2008) | 2 lines Use the correct URL for sqlite3 sources, and try to fix windows buildbots. ........ r64269 | amaury.forgeotdarc | 2008-06-14 10:36:07 +0200 (Sa, 14 Jun 2008) | 3 lines on windows, r64214 broke compilation with some recent SDKs, because IPPROTO_IPV6 may be an enumeration member... ........ r64270 | amaury.forgeotdarc | 2008-06-14 11:44:41 +0200 (Sa, 14 Jun 2008) | 4 lines Since python2.6 must run on Windows 2000, explicitely disable the use of Windows XP themes when compiling tk. This is also consistent with the WINVER=0x0500 option. ........ r64271 | martin.v.loewis | 2008-06-14 13:50:59 +0200 (Sa, 14 Jun 2008) | 3 lines Avoid rebuilding tcl/tk. Merge x86 changes into AMD64. ........ r64272 | martin.v.loewis | 2008-06-14 13:51:54 +0200 (Sa, 14 Jun 2008) | 2 lines Set eol-style to CRLF for all batch files. ........
22 lines
533 B
Batchfile
22 lines
533 B
Batchfile
@rem Used by the buildbot "buildmsi" step.
|
|
|
|
cmd /c Tools\buildbot\external.bat
|
|
@rem build release versions of things
|
|
call "%VS90COMNTOOLS%vsvars32.bat"
|
|
|
|
@rem build Python
|
|
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
|
|
|
|
@rem build the documentation
|
|
bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'
|
|
"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp
|
|
|
|
@rem build the MSI file
|
|
cd PC
|
|
nmake /f icons.mak
|
|
cd ..\Tools\msi
|
|
del *.msi
|
|
nmake /f msisupport.mak
|
|
%HOST_PYTHON% msi.py
|
|
|