From: Amaury Forgeot d'Arc Date: Sat, 14 Jun 2008 09:44:41 +0000 (+0000) Subject: Since python2.6 must run on Windows 2000, X-Git-Tag: v2.6b1~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c3bc862fa8e129538e4d519b3aa6c827b50faab;p=python 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. --- diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat index 592c5853a7..a849526ff4 100644 --- a/Tools/buildbot/external.bat +++ b/Tools/buildbot/external.bat @@ -14,8 +14,8 @@ if not exist tcltk\bin\tcl85.dll ( if not exist tcltk\bin\tk85.dll ( cd tk-8.5.2.0\win - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install cd ..\.. )