1 --- misc/build/Python-2.6.1/PCbuild/make_buildinfo.c.orig 2007-12-06 22:13:06.000000000 +0100
2 +++ misc/build/Python-2.6.1/PCbuild/make_buildinfo.c 2010-10-28 23:51:41.312500000 +0200
4 if ((do_unlink = make_buildinfo2()))
5 strcat_s(command, CMD_SIZE, "getbuildinfo2.c -DSUBWCREV ");
7 - strcat_s(command, CMD_SIZE, "..\\Modules\\getbuildinfo.c");
8 - strcat_s(command, CMD_SIZE, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
9 + strcat_s(command, CMD_SIZE, "..\\..\\Modules\\getbuildinfo.c");
10 + strcat_s(command, CMD_SIZE, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC");
11 puts(command); fflush(stdout);
12 result = system(command);
14 --- misc/build/Python-2.6.1/PC/msvcrtmodule.c.old 2010-09-24 22:03:40.593750000 +0200
15 +++ misc/build/Python-2.6.1/PC/msvcrtmodule.c 2010-09-24 22:04:39.625000000 +0200
17 #include <sys/locking.h>
25 --- /dev/null 2010-10-29 00:42:37.000000000 +0200
26 +++ misc/build/Python-2.6.1/PC/VS10.0/build_ssl.py 2010-10-29 00:41:17.250000000 +0200
28 +# Script for building the _ssl and _hashlib modules for Windows.
29 +# Uses Perl to setup the OpenSSL environment correctly
30 +# and build OpenSSL, then invokes a simple nmake session
31 +# for the actual _ssl.pyd and _hashlib.pyd DLLs.
33 +# THEORETICALLY, you can:
34 +# * Unpack the latest SSL release one level above your main Python source
35 +# directory. It is likely you will already find the zlib library and
36 +# any other external packages there.
37 +# * Install ActivePerl and ensure it is somewhere on your path.
38 +# * Run this script from the PCBuild directory.
40 +# it should configure and build SSL, then build the _ssl and _hashlib
41 +# Python extensions without intervention.
43 +# Modified by Christian Heimes
44 +# Now this script supports pre-generated makefiles and assembly files.
45 +# Developers don't need an installation of Perl anymore to build Python. A svn
46 +# checkout from our svn repository is enough.
48 +# In Order to create the files in the case of an update you still need Perl.
49 +# Run build_ssl in this order:
50 +# python.exe build_ssl.py Release x64
51 +# python.exe build_ssl.py Release Win32
53 +import os, sys, re, shutil
55 +# Find all "foo.exe" files on the PATH.
56 +def find_all_on_path(filename, extras = None):
57 + entries = os.environ["PATH"].split(os.pathsep)
60 + fname = os.path.abspath(os.path.join(p, filename))
61 + if os.path.isfile(fname) and fname not in ret:
65 + fname = os.path.abspath(os.path.join(p, filename))
66 + if os.path.isfile(fname) and fname not in ret:
70 +# Find a suitable Perl installation for OpenSSL.
71 +# cygwin perl does *not* work. ActivePerl does.
72 +# Being a Perl dummy, the simplest way I can check is if the "Win32" package
74 +def find_working_perl(perls):
76 + fh = os.popen(perl + ' -e "use Win32;"')
82 + print("Can not find a suitable PERL:")
84 + print(" the following perl interpreters were found:")
87 + print(" None of these versions appear suitable for building OpenSSL")
89 + print(" NO perl interpreters were found on this machine at all!")
90 + print(" Please install ActivePerl and ensure it appears on your path")
93 +# Locate the best SSL directory given a few roots to look into.
94 +def find_best_ssl_dir(sources):
98 + # note: do not abspath s; the build will fail if any
99 + # higher up directory name has spaces in it.
100 + fnames = os.listdir(s)
103 + for fname in fnames:
104 + fqn = os.path.join(s, fname)
105 + if os.path.isdir(fqn) and fname.startswith("openssl-"):
106 + candidates.append(fqn)
107 + # Now we have all the candidates, locate the best.
110 + for c in candidates:
111 + parts = re.split("[.-]", os.path.basename(c))[1:]
112 + # eg - openssl-0.9.7-beta1 - ignore all "beta" or any other qualifiers
113 + if len(parts) >= 4:
115 + if parts > best_parts:
118 + if best_name is not None:
119 + print("Found an SSL directory at '%s'" % (best_name,))
121 + print("Could not find an SSL directory in '%s'" % (sources,))
125 +def create_makefile64(makefile, m32):
126 + """Create and fix makefile for 64bit
128 + Replace 32 with 64bit directories
130 + if not os.path.isfile(m32):
132 + # 2.4 compatibility
134 + if 1: # with open(m32) as fin:
135 + fout = open(makefile, 'w')
136 + if 1: # with open(makefile, 'w') as fout:
138 + line = line.replace("=tmp32", "=tmp64")
139 + line = line.replace("=out32", "=out64")
140 + line = line.replace("=inc32", "=inc64")
141 + # force 64 bit machine
142 + line = line.replace("MKLIB=lib", "MKLIB=lib /MACHINE:X64")
143 + line = line.replace("LFLAGS=", "LFLAGS=/MACHINE:X64 ")
144 + # don't link against the lib on 64bit systems
145 + line = line.replace("bufferoverflowu.lib", "")
149 +def fix_makefile(makefile):
150 + """Fix some stuff in all makefiles
152 + if not os.path.isfile(makefile):
154 + # 2.4 compatibility
155 + fin = open(makefile)
156 + if 1: # with open(makefile) as fin:
157 + lines = fin.readlines()
159 + fout = open(makefile, 'w')
160 + if 1: # with open(makefile, 'w') as fout:
162 + if line.startswith("PERL="):
164 + if line.startswith("CP="):
166 + if line.startswith("MKDIR="):
167 + line = "MKDIR=mkdir\n"
168 + if line.startswith("CFLAG="):
169 + line = line.strip()
170 + for algo in ("RC5", "MDC2", "IDEA"):
171 + noalgo = " -DOPENSSL_NO_%s" % algo
172 + if noalgo not in line:
173 + line = line + noalgo
178 +def run_configure(configure, do_script):
179 + print("perl Configure "+configure)
180 + os.system("perl Configure "+configure)
182 + os.system(do_script)
185 + build_all = "-a" in sys.argv
186 + if sys.argv[1] == "Release":
188 + elif sys.argv[1] == "Debug":
191 + raise ValueError(str(sys.argv))
193 + if sys.argv[2] == "Win32":
195 + configure = "VC-WIN32"
196 + do_script = "ms\\do_nasm"
197 + makefile="ms\\nt.mak"
199 + elif sys.argv[2] == "x64":
201 + configure = "VC-WIN64A"
202 + do_script = "ms\\do_win64a"
203 + makefile = "ms\\nt64.mak"
204 + m32 = makefile.replace('64', '')
205 + #os.environ["VSEXTCOMP_USECL"] = "MS_OPTERON"
207 + raise ValueError(str(sys.argv))
212 + # perl should be on the path, but we also look in "\perl" and "c:\\perl"
213 + # as "well known" locations
214 + perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
215 + perl = find_working_perl(perls)
217 + print("No Perl installation was found. Existing Makefiles are used.")
219 + print("Found a working perl at '%s'" % (perl,))
221 + # Look for SSL 2 levels up from pcbuild - ie, same place zlib etc all live.
222 + ssl_dir = find_best_ssl_dir(("..\\..",))
223 + if ssl_dir is None:
226 + old_cd = os.getcwd()
229 + # rebuild makefile when we do the role over from 32 to 64 build
230 + if arch == "amd64" and os.path.isfile(m32) and not os.path.isfile(makefile):
233 + # If the ssl makefiles do not exist, we invoke Perl to generate them.
234 + # Due to a bug in this script, the makefile sometimes ended up empty
235 + # Force a regeneration if it is.
236 + if not os.path.isfile(makefile) or os.path.getsize(makefile)==0:
238 + print("Perl is required to build the makefiles!")
241 + print("Creating the makefiles...")
243 + # Put our working Perl at the front of our path
244 + os.environ["PATH"] = os.path.dirname(perl) + \
247 + run_configure(configure, do_script)
249 + print("OpenSSL debug builds aren't supported.")
250 + #if arch=="x86" and debug:
251 + # # the do_masm script in openssl doesn't generate a debug
252 + # # build makefile so we generate it here:
253 + # os.system("perl util\mk1mf.pl debug "+configure+" >"+makefile)
255 + if arch == "amd64":
256 + create_makefile64(makefile, m32)
257 + fix_makefile(makefile)
258 + shutil.copy(r"crypto\buildinf.h", r"crypto\buildinf_%s.h" % arch)
259 + shutil.copy(r"crypto\opensslconf.h", r"crypto\opensslconf_%s.h" % arch)
262 + if arch == "amd64":
263 + rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm")
265 + print("ml64 assembler has failed.")
268 + shutil.copy(r"crypto\buildinf_%s.h" % arch, r"crypto\buildinf.h")
269 + shutil.copy(r"crypto\opensslconf_%s.h" % arch, r"crypto\opensslconf.h")
271 + #makeCommand = "nmake /nologo PERL=\"%s\" -f \"%s\"" %(perl, makefile)
272 + makeCommand = "nmake /nologo -f \"%s\"" % makefile
273 + print("Executing ssl makefiles:", makeCommand)
275 + rc = os.system(makeCommand)
277 + print("Executing "+makefile+" failed")
284 +if __name__=='__main__':
286 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_ctypes.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_ctypes.vcxproj
287 --- misc/build/Python-2.6.1/PC/VS10.0.old//_ctypes.vcxproj 1970-01-01 01:00:00.000000000 +0100
288 +++ misc/build/Python-2.6.1/PC/VS10.0/_ctypes.vcxproj 2010-10-04 12:52:04.859375000 +0200
290 +<?xml version="1.0" encoding="utf-8"?>
291 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
292 + <ItemGroup Label="ProjectConfigurations">
293 + <ProjectConfiguration Include="Debug|Win32">
294 + <Configuration>Debug</Configuration>
295 + <Platform>Win32</Platform>
296 + </ProjectConfiguration>
297 + <ProjectConfiguration Include="Debug|x64">
298 + <Configuration>Debug</Configuration>
299 + <Platform>x64</Platform>
300 + </ProjectConfiguration>
301 + <ProjectConfiguration Include="PGInstrument|Win32">
302 + <Configuration>PGInstrument</Configuration>
303 + <Platform>Win32</Platform>
304 + </ProjectConfiguration>
305 + <ProjectConfiguration Include="PGInstrument|x64">
306 + <Configuration>PGInstrument</Configuration>
307 + <Platform>x64</Platform>
308 + </ProjectConfiguration>
309 + <ProjectConfiguration Include="PGUpdate|Win32">
310 + <Configuration>PGUpdate</Configuration>
311 + <Platform>Win32</Platform>
312 + </ProjectConfiguration>
313 + <ProjectConfiguration Include="PGUpdate|x64">
314 + <Configuration>PGUpdate</Configuration>
315 + <Platform>x64</Platform>
316 + </ProjectConfiguration>
317 + <ProjectConfiguration Include="Release|Win32">
318 + <Configuration>Release</Configuration>
319 + <Platform>Win32</Platform>
320 + </ProjectConfiguration>
321 + <ProjectConfiguration Include="Release|x64">
322 + <Configuration>Release</Configuration>
323 + <Platform>x64</Platform>
324 + </ProjectConfiguration>
326 + <PropertyGroup Label="Globals">
327 + <ProjectGuid>{0E9791DB-593A-465F-98BC-681011311618}</ProjectGuid>
328 + <RootNamespace>_ctypes</RootNamespace>
329 + <Keyword>Win32Proj</Keyword>
331 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
332 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
333 + <ConfigurationType>DynamicLibrary</ConfigurationType>
334 + <CharacterSet>NotSet</CharacterSet>
335 + <WholeProgramOptimization>true</WholeProgramOptimization>
337 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
338 + <ConfigurationType>DynamicLibrary</ConfigurationType>
339 + <CharacterSet>NotSet</CharacterSet>
340 + <WholeProgramOptimization>true</WholeProgramOptimization>
342 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
343 + <ConfigurationType>DynamicLibrary</ConfigurationType>
344 + <CharacterSet>NotSet</CharacterSet>
345 + <WholeProgramOptimization>true</WholeProgramOptimization>
347 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
348 + <ConfigurationType>DynamicLibrary</ConfigurationType>
349 + <CharacterSet>NotSet</CharacterSet>
351 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
352 + <ConfigurationType>DynamicLibrary</ConfigurationType>
353 + <CharacterSet>NotSet</CharacterSet>
354 + <WholeProgramOptimization>true</WholeProgramOptimization>
356 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
357 + <ConfigurationType>DynamicLibrary</ConfigurationType>
358 + <CharacterSet>NotSet</CharacterSet>
359 + <WholeProgramOptimization>true</WholeProgramOptimization>
361 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
362 + <ConfigurationType>DynamicLibrary</ConfigurationType>
363 + <CharacterSet>NotSet</CharacterSet>
364 + <WholeProgramOptimization>true</WholeProgramOptimization>
366 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
367 + <ConfigurationType>DynamicLibrary</ConfigurationType>
368 + <CharacterSet>NotSet</CharacterSet>
370 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
371 + <ImportGroup Label="ExtensionSettings">
373 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
374 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
375 + <Import Project="pyd.props" />
376 + <Import Project="pgupdate.props" />
378 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
379 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
380 + <Import Project="pyd.props" />
381 + <Import Project="pginstrument.props" />
383 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
384 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
385 + <Import Project="pyd.props" />
387 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
388 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
389 + <Import Project="pyd_d.props" />
391 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
392 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
393 + <Import Project="pyd.props" />
394 + <Import Project="x64.props" />
395 + <Import Project="pgupdate.props" />
397 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
398 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
399 + <Import Project="pyd.props" />
400 + <Import Project="x64.props" />
401 + <Import Project="pginstrument.props" />
403 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
404 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
405 + <Import Project="pyd.props" />
406 + <Import Project="x64.props" />
408 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
409 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
410 + <Import Project="pyd_d.props" />
411 + <Import Project="x64.props" />
413 + <PropertyGroup Label="UserMacros" />
415 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
416 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
417 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
418 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
419 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
420 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
421 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
422 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
423 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
424 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
425 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
426 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
427 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
428 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
429 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
430 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
431 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
432 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
433 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
434 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
435 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
436 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
437 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
438 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
439 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
441 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
443 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
446 + <BaseAddress>0x1D1A0000</BaseAddress>
448 + </ItemDefinitionGroup>
449 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
451 + <TargetEnvironment>X64</TargetEnvironment>
454 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
457 + <BaseAddress>0x1D1A0000</BaseAddress>
459 + </ItemDefinitionGroup>
460 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
462 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
465 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
466 + <SubSystem>NotSet</SubSystem>
467 + <BaseAddress>0x1D1A0000</BaseAddress>
469 + </ItemDefinitionGroup>
470 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
472 + <TargetEnvironment>X64</TargetEnvironment>
475 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
478 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
479 + <SubSystem>NotSet</SubSystem>
480 + <BaseAddress>0x1D1A0000</BaseAddress>
482 + </ItemDefinitionGroup>
483 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
485 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
488 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
489 + <SubSystem>NotSet</SubSystem>
490 + <BaseAddress>0x1D1A0000</BaseAddress>
492 + </ItemDefinitionGroup>
493 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
495 + <TargetEnvironment>X64</TargetEnvironment>
498 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
501 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
502 + <SubSystem>NotSet</SubSystem>
503 + <BaseAddress>0x1D1A0000</BaseAddress>
504 + <TargetMachine>MachineX64</TargetMachine>
506 + </ItemDefinitionGroup>
507 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
509 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
512 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
513 + <SubSystem>NotSet</SubSystem>
514 + <BaseAddress>0x1D1A0000</BaseAddress>
516 + </ItemDefinitionGroup>
517 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
519 + <TargetEnvironment>X64</TargetEnvironment>
522 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
525 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
526 + <SubSystem>NotSet</SubSystem>
527 + <BaseAddress>0x1D1A0000</BaseAddress>
528 + <TargetMachine>MachineX64</TargetMachine>
530 + </ItemDefinitionGroup>
532 + <ClInclude Include="..\..\Modules\_ctypes\ctypes.h" />
533 + <ClInclude Include="..\..\Modules\_ctypes\ctypes_dlfcn.h" />
534 + <ClInclude Include="..\..\Modules\_ctypes\libffi_msvc\ffi.h" />
535 + <ClInclude Include="..\..\Modules\_ctypes\libffi_msvc\ffi_common.h" />
536 + <ClInclude Include="..\..\Modules\_ctypes\libffi_msvc\fficonfig.h" />
537 + <ClInclude Include="..\..\Modules\_ctypes\libffi_msvc\ffitarget.h" />
540 + <ClCompile Include="..\..\Modules\_ctypes\_ctypes.c" />
541 + <ClCompile Include="..\..\Modules\_ctypes\callbacks.c" />
542 + <ClCompile Include="..\..\Modules\_ctypes\callproc.c" />
543 + <ClCompile Include="..\..\Modules\_ctypes\cfield.c" />
544 + <ClCompile Include="..\..\Modules\_ctypes\libffi_msvc\ffi.c" />
545 + <ClCompile Include="..\..\Modules\_ctypes\malloc_closure.c" />
546 + <ClCompile Include="..\..\Modules\_ctypes\libffi_msvc\prep_cif.c" />
547 + <ClCompile Include="..\..\Modules\_ctypes\stgdict.c" />
548 + <ClCompile Include="..\..\Modules\_ctypes\libffi_msvc\win32.c">
549 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
550 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">true</ExcludedFromBuild>
551 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">true</ExcludedFromBuild>
552 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
556 + <CustomBuild Include="..\..\Modules\_ctypes\libffi_msvc\win64.asm">
557 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
558 + <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ml64 /nologo /c /Zi /Fo "$(IntDir)win64.obj" "%(FullPath)"
560 + <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(IntDir)win64.obj;%(Outputs)</Outputs>
561 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">true</ExcludedFromBuild>
562 + <Command Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">ml64 /nologo /c /Fo "$(IntDir)win64.obj" "%(FullPath)"
564 + <Outputs Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">$(IntDir)win64.obj;%(Outputs)</Outputs>
565 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">true</ExcludedFromBuild>
566 + <Command Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">ml64 /nologo /c /Fo "$(IntDir)win64.obj" "%(FullPath)"
568 + <Outputs Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">$(IntDir)win64.obj;%(Outputs)</Outputs>
569 + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
570 + <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ml64 /nologo /c /Fo "$(IntDir)win64.obj" "%(FullPath)"
572 + <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(IntDir)win64.obj;%(Outputs)</Outputs>
575 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
576 + <ImportGroup Label="ExtensionTargets">
579 \ No newline at end of file
580 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_ctypes_test.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_ctypes_test.vcxproj
581 --- misc/build/Python-2.6.1/PC/VS10.0.old//_ctypes_test.vcxproj 1970-01-01 01:00:00.000000000 +0100
582 +++ misc/build/Python-2.6.1/PC/VS10.0/_ctypes_test.vcxproj 2010-10-04 12:52:04.875000000 +0200
584 +<?xml version="1.0" encoding="utf-8"?>
585 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
586 + <ItemGroup Label="ProjectConfigurations">
587 + <ProjectConfiguration Include="Debug|Win32">
588 + <Configuration>Debug</Configuration>
589 + <Platform>Win32</Platform>
590 + </ProjectConfiguration>
591 + <ProjectConfiguration Include="Debug|x64">
592 + <Configuration>Debug</Configuration>
593 + <Platform>x64</Platform>
594 + </ProjectConfiguration>
595 + <ProjectConfiguration Include="PGInstrument|Win32">
596 + <Configuration>PGInstrument</Configuration>
597 + <Platform>Win32</Platform>
598 + </ProjectConfiguration>
599 + <ProjectConfiguration Include="PGInstrument|x64">
600 + <Configuration>PGInstrument</Configuration>
601 + <Platform>x64</Platform>
602 + </ProjectConfiguration>
603 + <ProjectConfiguration Include="PGUpdate|Win32">
604 + <Configuration>PGUpdate</Configuration>
605 + <Platform>Win32</Platform>
606 + </ProjectConfiguration>
607 + <ProjectConfiguration Include="PGUpdate|x64">
608 + <Configuration>PGUpdate</Configuration>
609 + <Platform>x64</Platform>
610 + </ProjectConfiguration>
611 + <ProjectConfiguration Include="Release|Win32">
612 + <Configuration>Release</Configuration>
613 + <Platform>Win32</Platform>
614 + </ProjectConfiguration>
615 + <ProjectConfiguration Include="Release|x64">
616 + <Configuration>Release</Configuration>
617 + <Platform>x64</Platform>
618 + </ProjectConfiguration>
620 + <PropertyGroup Label="Globals">
621 + <ProjectGuid>{9EC7190A-249F-4180-A900-548FDCF3055F}</ProjectGuid>
622 + <RootNamespace>_ctypes_test</RootNamespace>
623 + <Keyword>Win32Proj</Keyword>
625 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
626 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
627 + <ConfigurationType>DynamicLibrary</ConfigurationType>
628 + <CharacterSet>NotSet</CharacterSet>
629 + <WholeProgramOptimization>true</WholeProgramOptimization>
631 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
632 + <ConfigurationType>DynamicLibrary</ConfigurationType>
633 + <CharacterSet>NotSet</CharacterSet>
634 + <WholeProgramOptimization>true</WholeProgramOptimization>
636 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
637 + <ConfigurationType>DynamicLibrary</ConfigurationType>
638 + <CharacterSet>NotSet</CharacterSet>
639 + <WholeProgramOptimization>true</WholeProgramOptimization>
641 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
642 + <ConfigurationType>DynamicLibrary</ConfigurationType>
643 + <CharacterSet>NotSet</CharacterSet>
645 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
646 + <ConfigurationType>DynamicLibrary</ConfigurationType>
647 + <CharacterSet>NotSet</CharacterSet>
648 + <WholeProgramOptimization>true</WholeProgramOptimization>
650 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
651 + <ConfigurationType>DynamicLibrary</ConfigurationType>
652 + <CharacterSet>NotSet</CharacterSet>
653 + <WholeProgramOptimization>true</WholeProgramOptimization>
655 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
656 + <ConfigurationType>DynamicLibrary</ConfigurationType>
657 + <CharacterSet>NotSet</CharacterSet>
658 + <WholeProgramOptimization>true</WholeProgramOptimization>
660 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
661 + <ConfigurationType>DynamicLibrary</ConfigurationType>
662 + <CharacterSet>NotSet</CharacterSet>
664 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
665 + <ImportGroup Label="ExtensionSettings">
667 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
668 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
669 + <Import Project="pyd.props" />
670 + <Import Project="pgupdate.props" />
672 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
673 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
674 + <Import Project="pyd.props" />
675 + <Import Project="pginstrument.props" />
677 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
678 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
679 + <Import Project="pyd.props" />
681 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
682 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
683 + <Import Project="pyd_d.props" />
685 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
686 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
687 + <Import Project="pyd.props" />
688 + <Import Project="x64.props" />
689 + <Import Project="pgupdate.props" />
691 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
692 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
693 + <Import Project="pyd.props" />
694 + <Import Project="x64.props" />
695 + <Import Project="pginstrument.props" />
697 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
698 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
699 + <Import Project="pyd.props" />
700 + <Import Project="x64.props" />
702 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
703 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
704 + <Import Project="pyd_d.props" />
705 + <Import Project="x64.props" />
707 + <PropertyGroup Label="UserMacros" />
709 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
710 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
711 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
712 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
713 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
714 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
715 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
716 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
717 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
718 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
719 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
720 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
721 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
722 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
723 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
724 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
725 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
726 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
727 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
728 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
729 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
730 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
731 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
732 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
733 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
735 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
737 + <TargetEnvironment>X64</TargetEnvironment>
739 + </ItemDefinitionGroup>
740 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
742 + <TargetEnvironment>X64</TargetEnvironment>
744 + </ItemDefinitionGroup>
745 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
747 + <TargetEnvironment>X64</TargetEnvironment>
750 + <TargetMachine>MachineX64</TargetMachine>
752 + </ItemDefinitionGroup>
753 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
755 + <TargetEnvironment>X64</TargetEnvironment>
758 + <TargetMachine>MachineX64</TargetMachine>
760 + </ItemDefinitionGroup>
762 + <ClInclude Include="..\..\Modules\_ctypes\_ctypes_test.h" />
765 + <ClCompile Include="..\..\Modules\_ctypes\_ctypes_test.c" />
767 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
768 + <ImportGroup Label="ExtensionTargets">
771 \ No newline at end of file
772 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_elementtree.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_elementtree.vcxproj
773 --- misc/build/Python-2.6.1/PC/VS10.0.old//_elementtree.vcxproj 1970-01-01 01:00:00.000000000 +0100
774 +++ misc/build/Python-2.6.1/PC/VS10.0/_elementtree.vcxproj 2010-10-04 12:52:04.875000000 +0200
776 +<?xml version="1.0" encoding="utf-8"?>
777 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
778 + <ItemGroup Label="ProjectConfigurations">
779 + <ProjectConfiguration Include="Debug|Win32">
780 + <Configuration>Debug</Configuration>
781 + <Platform>Win32</Platform>
782 + </ProjectConfiguration>
783 + <ProjectConfiguration Include="Debug|x64">
784 + <Configuration>Debug</Configuration>
785 + <Platform>x64</Platform>
786 + </ProjectConfiguration>
787 + <ProjectConfiguration Include="PGInstrument|Win32">
788 + <Configuration>PGInstrument</Configuration>
789 + <Platform>Win32</Platform>
790 + </ProjectConfiguration>
791 + <ProjectConfiguration Include="PGInstrument|x64">
792 + <Configuration>PGInstrument</Configuration>
793 + <Platform>x64</Platform>
794 + </ProjectConfiguration>
795 + <ProjectConfiguration Include="PGUpdate|Win32">
796 + <Configuration>PGUpdate</Configuration>
797 + <Platform>Win32</Platform>
798 + </ProjectConfiguration>
799 + <ProjectConfiguration Include="PGUpdate|x64">
800 + <Configuration>PGUpdate</Configuration>
801 + <Platform>x64</Platform>
802 + </ProjectConfiguration>
803 + <ProjectConfiguration Include="Release|Win32">
804 + <Configuration>Release</Configuration>
805 + <Platform>Win32</Platform>
806 + </ProjectConfiguration>
807 + <ProjectConfiguration Include="Release|x64">
808 + <Configuration>Release</Configuration>
809 + <Platform>x64</Platform>
810 + </ProjectConfiguration>
812 + <PropertyGroup Label="Globals">
813 + <ProjectGuid>{17E1E049-C309-4D79-843F-AE483C264AEA}</ProjectGuid>
814 + <RootNamespace>_elementtree</RootNamespace>
815 + <Keyword>Win32Proj</Keyword>
817 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
818 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
819 + <ConfigurationType>DynamicLibrary</ConfigurationType>
820 + <CharacterSet>NotSet</CharacterSet>
821 + <WholeProgramOptimization>true</WholeProgramOptimization>
823 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
824 + <ConfigurationType>DynamicLibrary</ConfigurationType>
825 + <CharacterSet>NotSet</CharacterSet>
826 + <WholeProgramOptimization>true</WholeProgramOptimization>
828 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
829 + <ConfigurationType>DynamicLibrary</ConfigurationType>
830 + <CharacterSet>NotSet</CharacterSet>
831 + <WholeProgramOptimization>true</WholeProgramOptimization>
833 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
834 + <ConfigurationType>DynamicLibrary</ConfigurationType>
835 + <CharacterSet>NotSet</CharacterSet>
837 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
838 + <ConfigurationType>DynamicLibrary</ConfigurationType>
839 + <CharacterSet>NotSet</CharacterSet>
840 + <WholeProgramOptimization>true</WholeProgramOptimization>
842 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
843 + <ConfigurationType>DynamicLibrary</ConfigurationType>
844 + <CharacterSet>NotSet</CharacterSet>
845 + <WholeProgramOptimization>true</WholeProgramOptimization>
847 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
848 + <ConfigurationType>DynamicLibrary</ConfigurationType>
849 + <CharacterSet>NotSet</CharacterSet>
850 + <WholeProgramOptimization>true</WholeProgramOptimization>
852 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
853 + <ConfigurationType>DynamicLibrary</ConfigurationType>
854 + <CharacterSet>NotSet</CharacterSet>
856 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
857 + <ImportGroup Label="ExtensionSettings">
859 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
860 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
861 + <Import Project="pyd.props" />
862 + <Import Project="pgupdate.props" />
864 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
865 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
866 + <Import Project="pyd.props" />
867 + <Import Project="pginstrument.props" />
869 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
870 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
871 + <Import Project="pyd.props" />
873 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
874 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
875 + <Import Project="pyd_d.props" />
877 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
878 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
879 + <Import Project="pyd.props" />
880 + <Import Project="x64.props" />
881 + <Import Project="pgupdate.props" />
883 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
884 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
885 + <Import Project="pyd.props" />
886 + <Import Project="x64.props" />
887 + <Import Project="pginstrument.props" />
889 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
890 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
891 + <Import Project="pyd.props" />
892 + <Import Project="x64.props" />
894 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
895 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
896 + <Import Project="pyd_d.props" />
897 + <Import Project="x64.props" />
899 + <PropertyGroup Label="UserMacros" />
901 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
902 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
903 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
904 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
905 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
906 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
907 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
908 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
909 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
910 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
911 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
912 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
913 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
914 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
915 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
916 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
917 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
918 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
919 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
920 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
921 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
922 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
923 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
924 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
925 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
927 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
929 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
930 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
933 + <BaseAddress>0x1D100000</BaseAddress>
935 + </ItemDefinitionGroup>
936 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
938 + <TargetEnvironment>X64</TargetEnvironment>
941 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
942 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
945 + <BaseAddress>0x1D100000</BaseAddress>
947 + </ItemDefinitionGroup>
948 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
950 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
951 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
954 + <BaseAddress>0x1D100000</BaseAddress>
956 + </ItemDefinitionGroup>
957 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
959 + <TargetEnvironment>X64</TargetEnvironment>
962 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
963 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
966 + <BaseAddress>0x1D100000</BaseAddress>
968 + </ItemDefinitionGroup>
969 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
971 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
972 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
975 + <BaseAddress>0x1D100000</BaseAddress>
977 + </ItemDefinitionGroup>
978 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
980 + <TargetEnvironment>X64</TargetEnvironment>
983 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
984 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
987 + <BaseAddress>0x1D100000</BaseAddress>
988 + <TargetMachine>MachineX64</TargetMachine>
990 + </ItemDefinitionGroup>
991 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
993 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
994 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
997 + <BaseAddress>0x1D100000</BaseAddress>
999 + </ItemDefinitionGroup>
1000 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1002 + <TargetEnvironment>X64</TargetEnvironment>
1005 + <AdditionalIncludeDirectories>..;..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1006 + <PreprocessorDefinitions>XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;USE_PYEXPAT_CAPI;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1009 + <BaseAddress>0x1D100000</BaseAddress>
1010 + <TargetMachine>MachineX64</TargetMachine>
1012 + </ItemDefinitionGroup>
1014 + <ClInclude Include="..\..\Modules\expat\ascii.h" />
1015 + <ClInclude Include="..\..\Modules\expat\asciitab.h" />
1016 + <ClInclude Include="..\..\Modules\expat\expat.h" />
1017 + <ClInclude Include="..\..\Modules\expat\expat_config.h" />
1018 + <ClInclude Include="..\..\Modules\expat\expat_external.h" />
1019 + <ClInclude Include="..\..\Modules\expat\iasciitab.h" />
1020 + <ClInclude Include="..\..\Modules\expat\internal.h" />
1021 + <ClInclude Include="..\..\Modules\expat\latin1tab.h" />
1022 + <ClInclude Include="..\..\Modules\expat\macconfig.h" />
1023 + <ClInclude Include="..\..\Modules\expat\nametab.h" />
1024 + <ClInclude Include="..\..\Modules\expat\pyexpatns.h" />
1025 + <ClInclude Include="..\..\Modules\expat\utf8tab.h" />
1026 + <ClInclude Include="..\..\Modules\expat\winconfig.h" />
1027 + <ClInclude Include="..\..\Modules\expat\xmlrole.h" />
1028 + <ClInclude Include="..\..\Modules\expat\xmltok.h" />
1031 + <ClCompile Include="..\..\Modules\_elementtree.c" />
1032 + <ClCompile Include="..\..\Modules\expat\xmlparse.c" />
1033 + <ClCompile Include="..\..\Modules\expat\xmlrole.c" />
1034 + <ClCompile Include="..\..\Modules\expat\xmltok.c" />
1036 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1037 + <ImportGroup Label="ExtensionTargets">
1040 \ No newline at end of file
1041 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_msi.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_msi.vcxproj
1042 --- misc/build/Python-2.6.1/PC/VS10.0.old//_msi.vcxproj 1970-01-01 01:00:00.000000000 +0100
1043 +++ misc/build/Python-2.6.1/PC/VS10.0/_msi.vcxproj 2010-10-04 12:52:04.890625000 +0200
1045 +<?xml version="1.0" encoding="utf-8"?>
1046 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1047 + <ItemGroup Label="ProjectConfigurations">
1048 + <ProjectConfiguration Include="Debug|Win32">
1049 + <Configuration>Debug</Configuration>
1050 + <Platform>Win32</Platform>
1051 + </ProjectConfiguration>
1052 + <ProjectConfiguration Include="Debug|x64">
1053 + <Configuration>Debug</Configuration>
1054 + <Platform>x64</Platform>
1055 + </ProjectConfiguration>
1056 + <ProjectConfiguration Include="PGInstrument|Win32">
1057 + <Configuration>PGInstrument</Configuration>
1058 + <Platform>Win32</Platform>
1059 + </ProjectConfiguration>
1060 + <ProjectConfiguration Include="PGInstrument|x64">
1061 + <Configuration>PGInstrument</Configuration>
1062 + <Platform>x64</Platform>
1063 + </ProjectConfiguration>
1064 + <ProjectConfiguration Include="PGUpdate|Win32">
1065 + <Configuration>PGUpdate</Configuration>
1066 + <Platform>Win32</Platform>
1067 + </ProjectConfiguration>
1068 + <ProjectConfiguration Include="PGUpdate|x64">
1069 + <Configuration>PGUpdate</Configuration>
1070 + <Platform>x64</Platform>
1071 + </ProjectConfiguration>
1072 + <ProjectConfiguration Include="Release|Win32">
1073 + <Configuration>Release</Configuration>
1074 + <Platform>Win32</Platform>
1075 + </ProjectConfiguration>
1076 + <ProjectConfiguration Include="Release|x64">
1077 + <Configuration>Release</Configuration>
1078 + <Platform>x64</Platform>
1079 + </ProjectConfiguration>
1081 + <PropertyGroup Label="Globals">
1082 + <ProjectGuid>{31FFC478-7B4A-43E8-9954-8D03E2187E9C}</ProjectGuid>
1083 + <RootNamespace>_msi</RootNamespace>
1084 + <Keyword>Win32Proj</Keyword>
1086 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
1087 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
1088 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1089 + <CharacterSet>NotSet</CharacterSet>
1090 + <WholeProgramOptimization>true</WholeProgramOptimization>
1092 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1093 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1094 + <CharacterSet>NotSet</CharacterSet>
1095 + <WholeProgramOptimization>true</WholeProgramOptimization>
1097 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1098 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1099 + <CharacterSet>NotSet</CharacterSet>
1100 + <WholeProgramOptimization>true</WholeProgramOptimization>
1102 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1103 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1104 + <CharacterSet>NotSet</CharacterSet>
1106 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1107 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1108 + <CharacterSet>NotSet</CharacterSet>
1109 + <WholeProgramOptimization>true</WholeProgramOptimization>
1111 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1112 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1113 + <CharacterSet>NotSet</CharacterSet>
1114 + <WholeProgramOptimization>true</WholeProgramOptimization>
1116 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1117 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1118 + <CharacterSet>NotSet</CharacterSet>
1119 + <WholeProgramOptimization>true</WholeProgramOptimization>
1121 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1122 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1123 + <CharacterSet>NotSet</CharacterSet>
1125 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1126 + <ImportGroup Label="ExtensionSettings">
1128 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
1129 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1130 + <Import Project="pyd.props" />
1131 + <Import Project="pgupdate.props" />
1133 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
1134 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1135 + <Import Project="pyd.props" />
1136 + <Import Project="pginstrument.props" />
1138 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
1139 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1140 + <Import Project="pyd.props" />
1142 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
1143 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1144 + <Import Project="pyd_d.props" />
1146 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
1147 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1148 + <Import Project="pyd.props" />
1149 + <Import Project="x64.props" />
1150 + <Import Project="pgupdate.props" />
1152 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
1153 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1154 + <Import Project="pyd.props" />
1155 + <Import Project="x64.props" />
1156 + <Import Project="pginstrument.props" />
1158 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
1159 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1160 + <Import Project="pyd.props" />
1161 + <Import Project="x64.props" />
1163 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
1164 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1165 + <Import Project="pyd_d.props" />
1166 + <Import Project="x64.props" />
1168 + <PropertyGroup Label="UserMacros" />
1170 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
1171 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1172 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1173 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1174 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1175 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1176 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1177 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1178 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1179 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1180 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1181 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1182 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1183 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1184 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1185 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1186 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1187 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1188 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1189 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1190 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1191 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1192 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1193 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1194 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1196 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1198 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1199 + <BaseAddress>0x1D160000</BaseAddress>
1201 + </ItemDefinitionGroup>
1202 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1204 + <TargetEnvironment>X64</TargetEnvironment>
1207 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1208 + <BaseAddress>0x1D160000</BaseAddress>
1210 + </ItemDefinitionGroup>
1211 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1213 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1214 + <BaseAddress>0x1D160000</BaseAddress>
1216 + </ItemDefinitionGroup>
1217 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1219 + <TargetEnvironment>X64</TargetEnvironment>
1222 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1223 + <BaseAddress>0x1D160000</BaseAddress>
1225 + </ItemDefinitionGroup>
1226 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1228 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1229 + <BaseAddress>0x1D160000</BaseAddress>
1231 + </ItemDefinitionGroup>
1232 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1234 + <TargetEnvironment>X64</TargetEnvironment>
1237 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1238 + <BaseAddress>0x1D160000</BaseAddress>
1239 + <TargetMachine>MachineX64</TargetMachine>
1241 + </ItemDefinitionGroup>
1242 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1244 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1245 + <BaseAddress>0x1D160000</BaseAddress>
1247 + </ItemDefinitionGroup>
1248 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1250 + <TargetEnvironment>X64</TargetEnvironment>
1253 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1254 + <BaseAddress>0x1D160000</BaseAddress>
1255 + <TargetMachine>MachineX64</TargetMachine>
1257 + </ItemDefinitionGroup>
1259 + <ClCompile Include="..\..\PC\_msi.c" />
1261 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1262 + <ImportGroup Label="ExtensionTargets">
1265 \ No newline at end of file
1266 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_multiprocessing.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_multiprocessing.vcxproj
1267 --- misc/build/Python-2.6.1/PC/VS10.0.old//_multiprocessing.vcxproj 1970-01-01 01:00:00.000000000 +0100
1268 +++ misc/build/Python-2.6.1/PC/VS10.0/_multiprocessing.vcxproj 2010-10-04 12:52:04.906250000 +0200
1270 +<?xml version="1.0" encoding="utf-8"?>
1271 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1272 + <ItemGroup Label="ProjectConfigurations">
1273 + <ProjectConfiguration Include="Debug|Win32">
1274 + <Configuration>Debug</Configuration>
1275 + <Platform>Win32</Platform>
1276 + </ProjectConfiguration>
1277 + <ProjectConfiguration Include="Debug|x64">
1278 + <Configuration>Debug</Configuration>
1279 + <Platform>x64</Platform>
1280 + </ProjectConfiguration>
1281 + <ProjectConfiguration Include="PGInstrument|Win32">
1282 + <Configuration>PGInstrument</Configuration>
1283 + <Platform>Win32</Platform>
1284 + </ProjectConfiguration>
1285 + <ProjectConfiguration Include="PGInstrument|x64">
1286 + <Configuration>PGInstrument</Configuration>
1287 + <Platform>x64</Platform>
1288 + </ProjectConfiguration>
1289 + <ProjectConfiguration Include="PGUpdate|Win32">
1290 + <Configuration>PGUpdate</Configuration>
1291 + <Platform>Win32</Platform>
1292 + </ProjectConfiguration>
1293 + <ProjectConfiguration Include="PGUpdate|x64">
1294 + <Configuration>PGUpdate</Configuration>
1295 + <Platform>x64</Platform>
1296 + </ProjectConfiguration>
1297 + <ProjectConfiguration Include="Release|Win32">
1298 + <Configuration>Release</Configuration>
1299 + <Platform>Win32</Platform>
1300 + </ProjectConfiguration>
1301 + <ProjectConfiguration Include="Release|x64">
1302 + <Configuration>Release</Configuration>
1303 + <Platform>x64</Platform>
1304 + </ProjectConfiguration>
1306 + <PropertyGroup Label="Globals">
1307 + <ProjectGuid>{9e48b300-37d1-11dd-8c41-005056c00008}</ProjectGuid>
1308 + <RootNamespace>_multiprocessing</RootNamespace>
1309 + <Keyword>Win32Proj</Keyword>
1311 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
1312 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
1313 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1314 + <CharacterSet>NotSet</CharacterSet>
1315 + <WholeProgramOptimization>true</WholeProgramOptimization>
1317 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1318 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1319 + <CharacterSet>NotSet</CharacterSet>
1320 + <WholeProgramOptimization>true</WholeProgramOptimization>
1322 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1323 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1324 + <CharacterSet>NotSet</CharacterSet>
1325 + <WholeProgramOptimization>true</WholeProgramOptimization>
1327 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1328 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1329 + <CharacterSet>NotSet</CharacterSet>
1331 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1332 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1333 + <CharacterSet>NotSet</CharacterSet>
1334 + <WholeProgramOptimization>true</WholeProgramOptimization>
1336 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1337 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1338 + <CharacterSet>NotSet</CharacterSet>
1339 + <WholeProgramOptimization>true</WholeProgramOptimization>
1341 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1342 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1343 + <CharacterSet>NotSet</CharacterSet>
1344 + <WholeProgramOptimization>true</WholeProgramOptimization>
1346 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1347 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1348 + <CharacterSet>NotSet</CharacterSet>
1350 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1351 + <ImportGroup Label="ExtensionSettings">
1353 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
1354 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1355 + <Import Project="pyd.props" />
1356 + <Import Project="pgupdate.props" />
1358 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
1359 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1360 + <Import Project="pyd.props" />
1361 + <Import Project="pginstrument.props" />
1363 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
1364 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1365 + <Import Project="pyd.props" />
1367 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
1368 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1369 + <Import Project="pyd_d.props" />
1371 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
1372 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1373 + <Import Project="pyd.props" />
1374 + <Import Project="x64.props" />
1375 + <Import Project="pgupdate.props" />
1377 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
1378 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1379 + <Import Project="pyd.props" />
1380 + <Import Project="x64.props" />
1381 + <Import Project="pginstrument.props" />
1383 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
1384 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1385 + <Import Project="pyd.props" />
1386 + <Import Project="x64.props" />
1388 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
1389 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1390 + <Import Project="pyd_d.props" />
1391 + <Import Project="x64.props" />
1393 + <PropertyGroup Label="UserMacros" />
1395 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
1396 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1397 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1398 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1399 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1400 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1401 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1402 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1403 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1404 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1405 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1406 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1407 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1408 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1409 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1410 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1411 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1412 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1413 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1414 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1415 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1416 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1417 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1418 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1419 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1421 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1423 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1424 + <BaseAddress>0x1e1D0000</BaseAddress>
1426 + </ItemDefinitionGroup>
1427 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1429 + <TargetEnvironment>X64</TargetEnvironment>
1432 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1433 + <BaseAddress>0x1e1D0000</BaseAddress>
1435 + </ItemDefinitionGroup>
1436 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1438 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1439 + <BaseAddress>0x1e1D0000</BaseAddress>
1441 + </ItemDefinitionGroup>
1442 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1444 + <TargetEnvironment>X64</TargetEnvironment>
1447 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1448 + <BaseAddress>0x1e1D0000</BaseAddress>
1450 + </ItemDefinitionGroup>
1451 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1453 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1454 + <BaseAddress>0x1e1D0000</BaseAddress>
1456 + </ItemDefinitionGroup>
1457 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1459 + <TargetEnvironment>X64</TargetEnvironment>
1462 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1463 + <BaseAddress>0x1e1D0000</BaseAddress>
1464 + <TargetMachine>MachineX64</TargetMachine>
1466 + </ItemDefinitionGroup>
1467 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1469 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1470 + <BaseAddress>0x1e1D0000</BaseAddress>
1472 + </ItemDefinitionGroup>
1473 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1475 + <TargetEnvironment>X64</TargetEnvironment>
1478 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1479 + <BaseAddress>0x1e1D0000</BaseAddress>
1480 + <TargetMachine>MachineX64</TargetMachine>
1482 + </ItemDefinitionGroup>
1484 + <ClInclude Include="..\..\Modules\_multiprocessing\multiprocessing.h" />
1485 + <ClInclude Include="..\..\Modules\_multiprocessing\connection.h" />
1488 + <ClCompile Include="..\..\Modules\_multiprocessing\multiprocessing.c" />
1489 + <ClCompile Include="..\..\Modules\_multiprocessing\pipe_connection.c" />
1490 + <ClCompile Include="..\..\Modules\_multiprocessing\semaphore.c" />
1491 + <ClCompile Include="..\..\Modules\_multiprocessing\socket_connection.c" />
1492 + <ClCompile Include="..\..\Modules\_multiprocessing\win32_functions.c" />
1494 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1495 + <ImportGroup Label="ExtensionTargets">
1498 \ No newline at end of file
1499 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_socket.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_socket.vcxproj
1500 --- misc/build/Python-2.6.1/PC/VS10.0.old//_socket.vcxproj 1970-01-01 01:00:00.000000000 +0100
1501 +++ misc/build/Python-2.6.1/PC/VS10.0/_socket.vcxproj 2010-10-04 12:52:04.906250000 +0200
1503 +<?xml version="1.0" encoding="utf-8"?>
1504 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1505 + <ItemGroup Label="ProjectConfigurations">
1506 + <ProjectConfiguration Include="Debug|Win32">
1507 + <Configuration>Debug</Configuration>
1508 + <Platform>Win32</Platform>
1509 + </ProjectConfiguration>
1510 + <ProjectConfiguration Include="Debug|x64">
1511 + <Configuration>Debug</Configuration>
1512 + <Platform>x64</Platform>
1513 + </ProjectConfiguration>
1514 + <ProjectConfiguration Include="PGInstrument|Win32">
1515 + <Configuration>PGInstrument</Configuration>
1516 + <Platform>Win32</Platform>
1517 + </ProjectConfiguration>
1518 + <ProjectConfiguration Include="PGInstrument|x64">
1519 + <Configuration>PGInstrument</Configuration>
1520 + <Platform>x64</Platform>
1521 + </ProjectConfiguration>
1522 + <ProjectConfiguration Include="PGUpdate|Win32">
1523 + <Configuration>PGUpdate</Configuration>
1524 + <Platform>Win32</Platform>
1525 + </ProjectConfiguration>
1526 + <ProjectConfiguration Include="PGUpdate|x64">
1527 + <Configuration>PGUpdate</Configuration>
1528 + <Platform>x64</Platform>
1529 + </ProjectConfiguration>
1530 + <ProjectConfiguration Include="Release|Win32">
1531 + <Configuration>Release</Configuration>
1532 + <Platform>Win32</Platform>
1533 + </ProjectConfiguration>
1534 + <ProjectConfiguration Include="Release|x64">
1535 + <Configuration>Release</Configuration>
1536 + <Platform>x64</Platform>
1537 + </ProjectConfiguration>
1539 + <PropertyGroup Label="Globals">
1540 + <ProjectGuid>{86937F53-C189-40EF-8CE8-8759D8E7D480}</ProjectGuid>
1541 + <RootNamespace>_socket</RootNamespace>
1542 + <Keyword>Win32Proj</Keyword>
1544 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
1545 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
1546 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1547 + <CharacterSet>NotSet</CharacterSet>
1548 + <WholeProgramOptimization>true</WholeProgramOptimization>
1550 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1551 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1552 + <CharacterSet>NotSet</CharacterSet>
1553 + <WholeProgramOptimization>true</WholeProgramOptimization>
1555 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1556 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1557 + <CharacterSet>NotSet</CharacterSet>
1558 + <WholeProgramOptimization>true</WholeProgramOptimization>
1560 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1561 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1562 + <CharacterSet>NotSet</CharacterSet>
1564 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1565 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1566 + <CharacterSet>NotSet</CharacterSet>
1567 + <WholeProgramOptimization>true</WholeProgramOptimization>
1569 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1570 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1571 + <CharacterSet>NotSet</CharacterSet>
1572 + <WholeProgramOptimization>true</WholeProgramOptimization>
1574 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1575 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1576 + <CharacterSet>NotSet</CharacterSet>
1577 + <WholeProgramOptimization>true</WholeProgramOptimization>
1579 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1580 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1581 + <CharacterSet>NotSet</CharacterSet>
1583 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1584 + <ImportGroup Label="ExtensionSettings">
1586 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
1587 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1588 + <Import Project="pyd.props" />
1589 + <Import Project="pgupdate.props" />
1591 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
1592 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1593 + <Import Project="pyd.props" />
1594 + <Import Project="pginstrument.props" />
1596 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
1597 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1598 + <Import Project="pyd.props" />
1600 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
1601 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1602 + <Import Project="pyd_d.props" />
1604 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
1605 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1606 + <Import Project="pyd.props" />
1607 + <Import Project="x64.props" />
1608 + <Import Project="pgupdate.props" />
1610 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
1611 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1612 + <Import Project="pyd.props" />
1613 + <Import Project="x64.props" />
1614 + <Import Project="pginstrument.props" />
1616 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
1617 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1618 + <Import Project="pyd.props" />
1619 + <Import Project="x64.props" />
1621 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
1622 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1623 + <Import Project="pyd_d.props" />
1624 + <Import Project="x64.props" />
1626 + <PropertyGroup Label="UserMacros" />
1628 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
1629 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1630 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1631 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1632 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1633 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1634 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1635 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1636 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1637 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1638 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1639 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1640 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1641 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1642 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1643 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1644 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1645 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1646 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1647 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1648 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1649 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1650 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1651 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1652 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1654 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1656 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1657 + <BaseAddress>0x1e1D0000</BaseAddress>
1659 + </ItemDefinitionGroup>
1660 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1662 + <TargetEnvironment>X64</TargetEnvironment>
1665 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1666 + <BaseAddress>0x1e1D0000</BaseAddress>
1668 + </ItemDefinitionGroup>
1669 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1671 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1672 + <BaseAddress>0x1e1D0000</BaseAddress>
1674 + </ItemDefinitionGroup>
1675 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1677 + <TargetEnvironment>X64</TargetEnvironment>
1680 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1681 + <BaseAddress>0x1e1D0000</BaseAddress>
1683 + </ItemDefinitionGroup>
1684 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1686 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1687 + <BaseAddress>0x1e1D0000</BaseAddress>
1689 + </ItemDefinitionGroup>
1690 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1692 + <TargetEnvironment>X64</TargetEnvironment>
1695 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1696 + <BaseAddress>0x1e1D0000</BaseAddress>
1697 + <TargetMachine>MachineX64</TargetMachine>
1699 + </ItemDefinitionGroup>
1700 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1702 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1703 + <BaseAddress>0x1e1D0000</BaseAddress>
1705 + </ItemDefinitionGroup>
1706 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1708 + <TargetEnvironment>X64</TargetEnvironment>
1711 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1712 + <BaseAddress>0x1e1D0000</BaseAddress>
1713 + <TargetMachine>MachineX64</TargetMachine>
1715 + </ItemDefinitionGroup>
1717 + <ClInclude Include="..\..\Modules\socketmodule.h" />
1720 + <ClCompile Include="..\..\Modules\socketmodule.c" />
1722 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1723 + <ImportGroup Label="ExtensionTargets">
1726 \ No newline at end of file
1727 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_ssl.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_ssl.vcxproj
1728 --- misc/build/Python-2.6.1/PC/VS10.0.old//_ssl.vcxproj 1970-01-01 01:00:00.000000000 +0100
1729 +++ misc/build/Python-2.6.1/PC/VS10.0/_ssl.vcxproj 2010-10-04 12:52:04.968750000 +0200
1731 +<?xml version="1.0" encoding="utf-8"?>
1732 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1733 + <ItemGroup Label="ProjectConfigurations">
1734 + <ProjectConfiguration Include="Debug|Win32">
1735 + <Configuration>Debug</Configuration>
1736 + <Platform>Win32</Platform>
1737 + </ProjectConfiguration>
1738 + <ProjectConfiguration Include="Debug|x64">
1739 + <Configuration>Debug</Configuration>
1740 + <Platform>x64</Platform>
1741 + </ProjectConfiguration>
1742 + <ProjectConfiguration Include="PGInstrument|Win32">
1743 + <Configuration>PGInstrument</Configuration>
1744 + <Platform>Win32</Platform>
1745 + </ProjectConfiguration>
1746 + <ProjectConfiguration Include="PGInstrument|x64">
1747 + <Configuration>PGInstrument</Configuration>
1748 + <Platform>x64</Platform>
1749 + </ProjectConfiguration>
1750 + <ProjectConfiguration Include="PGUpdate|Win32">
1751 + <Configuration>PGUpdate</Configuration>
1752 + <Platform>Win32</Platform>
1753 + </ProjectConfiguration>
1754 + <ProjectConfiguration Include="PGUpdate|x64">
1755 + <Configuration>PGUpdate</Configuration>
1756 + <Platform>x64</Platform>
1757 + </ProjectConfiguration>
1758 + <ProjectConfiguration Include="Release|Win32">
1759 + <Configuration>Release</Configuration>
1760 + <Platform>Win32</Platform>
1761 + </ProjectConfiguration>
1762 + <ProjectConfiguration Include="Release|x64">
1763 + <Configuration>Release</Configuration>
1764 + <Platform>x64</Platform>
1765 + </ProjectConfiguration>
1767 + <PropertyGroup Label="Globals">
1768 + <ProjectGuid>{C6E20F84-3247-4AD6-B051-B073268F73BA}</ProjectGuid>
1769 + <RootNamespace>_ssl</RootNamespace>
1770 + <Keyword>Win32Proj</Keyword>
1772 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
1773 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
1774 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1775 + <CharacterSet>NotSet</CharacterSet>
1776 + <WholeProgramOptimization>true</WholeProgramOptimization>
1778 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1779 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1780 + <CharacterSet>NotSet</CharacterSet>
1781 + <WholeProgramOptimization>true</WholeProgramOptimization>
1783 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1784 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1785 + <CharacterSet>NotSet</CharacterSet>
1786 + <WholeProgramOptimization>true</WholeProgramOptimization>
1788 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1789 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1790 + <CharacterSet>NotSet</CharacterSet>
1792 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1793 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1794 + <CharacterSet>NotSet</CharacterSet>
1795 + <WholeProgramOptimization>true</WholeProgramOptimization>
1797 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1798 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1799 + <CharacterSet>NotSet</CharacterSet>
1800 + <WholeProgramOptimization>true</WholeProgramOptimization>
1802 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1803 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1804 + <CharacterSet>NotSet</CharacterSet>
1805 + <WholeProgramOptimization>true</WholeProgramOptimization>
1807 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1808 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1809 + <CharacterSet>NotSet</CharacterSet>
1811 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1812 + <ImportGroup Label="ExtensionSettings">
1814 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
1815 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1816 + <Import Project="pyd.props" />
1817 + <Import Project="pgupdate.props" />
1819 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
1820 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1821 + <Import Project="pyd.props" />
1822 + <Import Project="pginstrument.props" />
1824 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
1825 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1826 + <Import Project="pyd.props" />
1828 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
1829 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1830 + <Import Project="pyd_d.props" />
1832 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
1833 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1834 + <Import Project="pyd.props" />
1835 + <Import Project="x64.props" />
1836 + <Import Project="pgupdate.props" />
1838 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
1839 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1840 + <Import Project="pyd.props" />
1841 + <Import Project="x64.props" />
1842 + <Import Project="pginstrument.props" />
1844 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
1845 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1846 + <Import Project="pyd.props" />
1847 + <Import Project="x64.props" />
1849 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
1850 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
1851 + <Import Project="pyd_d.props" />
1852 + <Import Project="x64.props" />
1854 + <PropertyGroup Label="UserMacros" />
1856 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
1857 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1858 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1859 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
1860 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1861 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1862 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
1863 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1864 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1865 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
1866 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1867 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1868 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
1869 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1870 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1871 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
1872 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1873 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1874 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
1875 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
1876 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1877 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
1878 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
1879 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1880 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
1882 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1884 + <Command>cd "$(SolutionDir)"
1885 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1889 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1896 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1898 + </ItemDefinitionGroup>
1899 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1901 + <Command>cd "$(SolutionDir)"
1902 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1906 + <TargetEnvironment>X64</TargetEnvironment>
1909 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1916 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1918 + </ItemDefinitionGroup>
1919 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1921 + <Command>cd "$(SolutionDir)"
1922 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1926 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1933 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1935 + </ItemDefinitionGroup>
1936 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1938 + <Command>cd "$(SolutionDir)"
1939 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1943 + <TargetEnvironment>X64</TargetEnvironment>
1946 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1953 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1955 + </ItemDefinitionGroup>
1956 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1958 + <Command>cd "$(SolutionDir)"
1959 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1963 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1970 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1972 + </ItemDefinitionGroup>
1973 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1975 + <Command>cd "$(SolutionDir)"
1976 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1980 + <TargetEnvironment>X64</TargetEnvironment>
1983 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1990 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1991 + <TargetMachine>MachineX64</TargetMachine>
1993 + </ItemDefinitionGroup>
1994 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1996 + <Command>cd "$(SolutionDir)"
1997 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
2001 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2008 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
2010 + </ItemDefinitionGroup>
2011 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
2013 + <Command>cd "$(SolutionDir)"
2014 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
2018 + <TargetEnvironment>X64</TargetEnvironment>
2021 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2028 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
2029 + <TargetMachine>MachineX64</TargetMachine>
2031 + </ItemDefinitionGroup>
2033 + <ClCompile Include="..\..\Modules\_ssl.c" />
2035 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2036 + <ImportGroup Label="ExtensionTargets">
2039 \ No newline at end of file
2040 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//_testcapi.vcxproj misc/build/Python-2.6.1/PC/VS10.0/_testcapi.vcxproj
2041 --- misc/build/Python-2.6.1/PC/VS10.0.old//_testcapi.vcxproj 1970-01-01 01:00:00.000000000 +0100
2042 +++ misc/build/Python-2.6.1/PC/VS10.0/_testcapi.vcxproj 2010-10-04 12:52:04.968750000 +0200
2044 +<?xml version="1.0" encoding="utf-8"?>
2045 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2046 + <ItemGroup Label="ProjectConfigurations">
2047 + <ProjectConfiguration Include="Debug|Win32">
2048 + <Configuration>Debug</Configuration>
2049 + <Platform>Win32</Platform>
2050 + </ProjectConfiguration>
2051 + <ProjectConfiguration Include="Debug|x64">
2052 + <Configuration>Debug</Configuration>
2053 + <Platform>x64</Platform>
2054 + </ProjectConfiguration>
2055 + <ProjectConfiguration Include="PGInstrument|Win32">
2056 + <Configuration>PGInstrument</Configuration>
2057 + <Platform>Win32</Platform>
2058 + </ProjectConfiguration>
2059 + <ProjectConfiguration Include="PGInstrument|x64">
2060 + <Configuration>PGInstrument</Configuration>
2061 + <Platform>x64</Platform>
2062 + </ProjectConfiguration>
2063 + <ProjectConfiguration Include="PGUpdate|Win32">
2064 + <Configuration>PGUpdate</Configuration>
2065 + <Platform>Win32</Platform>
2066 + </ProjectConfiguration>
2067 + <ProjectConfiguration Include="PGUpdate|x64">
2068 + <Configuration>PGUpdate</Configuration>
2069 + <Platform>x64</Platform>
2070 + </ProjectConfiguration>
2071 + <ProjectConfiguration Include="Release|Win32">
2072 + <Configuration>Release</Configuration>
2073 + <Platform>Win32</Platform>
2074 + </ProjectConfiguration>
2075 + <ProjectConfiguration Include="Release|x64">
2076 + <Configuration>Release</Configuration>
2077 + <Platform>x64</Platform>
2078 + </ProjectConfiguration>
2080 + <PropertyGroup Label="Globals">
2081 + <ProjectGuid>{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}</ProjectGuid>
2082 + <RootNamespace>_testcapi</RootNamespace>
2083 + <Keyword>Win32Proj</Keyword>
2085 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2086 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
2087 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2088 + <CharacterSet>NotSet</CharacterSet>
2089 + <WholeProgramOptimization>true</WholeProgramOptimization>
2091 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
2092 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2093 + <CharacterSet>NotSet</CharacterSet>
2094 + <WholeProgramOptimization>true</WholeProgramOptimization>
2096 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2097 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2098 + <CharacterSet>NotSet</CharacterSet>
2099 + <WholeProgramOptimization>true</WholeProgramOptimization>
2101 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2102 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2103 + <CharacterSet>NotSet</CharacterSet>
2105 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
2106 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2107 + <CharacterSet>NotSet</CharacterSet>
2108 + <WholeProgramOptimization>true</WholeProgramOptimization>
2110 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
2111 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2112 + <CharacterSet>NotSet</CharacterSet>
2113 + <WholeProgramOptimization>true</WholeProgramOptimization>
2115 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2116 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2117 + <CharacterSet>NotSet</CharacterSet>
2118 + <WholeProgramOptimization>true</WholeProgramOptimization>
2120 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2121 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2122 + <CharacterSet>NotSet</CharacterSet>
2124 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2125 + <ImportGroup Label="ExtensionSettings">
2127 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
2128 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2129 + <Import Project="pyd.props" />
2130 + <Import Project="pgupdate.props" />
2132 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
2133 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2134 + <Import Project="pyd.props" />
2135 + <Import Project="pginstrument.props" />
2137 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
2138 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2139 + <Import Project="pyd.props" />
2141 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
2142 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2143 + <Import Project="pyd_d.props" />
2145 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
2146 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2147 + <Import Project="pyd.props" />
2148 + <Import Project="x64.props" />
2149 + <Import Project="pgupdate.props" />
2151 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
2152 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2153 + <Import Project="pyd.props" />
2154 + <Import Project="x64.props" />
2155 + <Import Project="pginstrument.props" />
2157 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
2158 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2159 + <Import Project="pyd.props" />
2160 + <Import Project="x64.props" />
2162 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
2163 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2164 + <Import Project="pyd_d.props" />
2165 + <Import Project="x64.props" />
2167 + <PropertyGroup Label="UserMacros" />
2169 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2170 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2171 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
2172 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
2173 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2174 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
2175 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
2176 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2177 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
2178 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
2179 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2180 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
2181 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
2182 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2183 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
2184 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
2185 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2186 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
2187 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
2188 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2189 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2190 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2191 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2192 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2193 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2195 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
2197 + <BaseAddress>0x1e1F0000</BaseAddress>
2199 + </ItemDefinitionGroup>
2200 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2202 + <TargetEnvironment>X64</TargetEnvironment>
2205 + <BaseAddress>0x1e1F0000</BaseAddress>
2207 + </ItemDefinitionGroup>
2208 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2210 + <BaseAddress>0x1e1F0000</BaseAddress>
2212 + </ItemDefinitionGroup>
2213 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2215 + <TargetEnvironment>X64</TargetEnvironment>
2218 + <BaseAddress>0x1e1F0000</BaseAddress>
2220 + </ItemDefinitionGroup>
2221 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
2223 + <BaseAddress>0x1e1F0000</BaseAddress>
2225 + </ItemDefinitionGroup>
2226 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
2228 + <TargetEnvironment>X64</TargetEnvironment>
2231 + <BaseAddress>0x1e1F0000</BaseAddress>
2232 + <TargetMachine>MachineX64</TargetMachine>
2234 + </ItemDefinitionGroup>
2235 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
2237 + <BaseAddress>0x1e1F0000</BaseAddress>
2239 + </ItemDefinitionGroup>
2240 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
2242 + <TargetEnvironment>X64</TargetEnvironment>
2245 + <BaseAddress>0x1e1F0000</BaseAddress>
2246 + <TargetMachine>MachineX64</TargetMachine>
2248 + </ItemDefinitionGroup>
2250 + <ClCompile Include="..\..\Modules\_testcapimodule.c" />
2252 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2253 + <ImportGroup Label="ExtensionTargets">
2256 \ No newline at end of file
2257 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//bdist_wininst.vcxproj misc/build/Python-2.6.1/PC/VS10.0/bdist_wininst.vcxproj
2258 --- misc/build/Python-2.6.1/PC/VS10.0.old//bdist_wininst.vcxproj 1970-01-01 01:00:00.000000000 +0100
2259 +++ misc/build/Python-2.6.1/PC/VS10.0/bdist_wininst.vcxproj 2010-10-04 12:52:04.984375000 +0200
2261 +<?xml version="1.0" encoding="utf-8"?>
2262 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2263 + <ItemGroup Label="ProjectConfigurations">
2264 + <ProjectConfiguration Include="Release|Win32">
2265 + <Configuration>Release</Configuration>
2266 + <Platform>Win32</Platform>
2267 + </ProjectConfiguration>
2268 + <ProjectConfiguration Include="Release|x64">
2269 + <Configuration>Release</Configuration>
2270 + <Platform>x64</Platform>
2271 + </ProjectConfiguration>
2273 + <PropertyGroup Label="Globals">
2274 + <ProjectGuid>{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}</ProjectGuid>
2275 + <RootNamespace>wininst</RootNamespace>
2277 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2278 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2279 + <ConfigurationType>Application</ConfigurationType>
2280 + <UseOfMfc>false</UseOfMfc>
2281 + <CharacterSet>NotSet</CharacterSet>
2283 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2284 + <ConfigurationType>Application</ConfigurationType>
2285 + <UseOfMfc>false</UseOfMfc>
2286 + <CharacterSet>NotSet</CharacterSet>
2288 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2289 + <ImportGroup Label="ExtensionSettings">
2291 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
2292 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2293 + <Import Project="pyproject.props" />
2294 + <Import Project="release.props" />
2296 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
2297 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2298 + <Import Project="pyproject.props" />
2299 + <Import Project="release.props" />
2301 + <PropertyGroup Label="UserMacros" />
2303 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2304 + <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\lib\distutils\command\</OutDir>
2305 + <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
2306 + <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\</OutDir>
2307 + <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\</IntDir>
2308 + <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
2309 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2310 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2311 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2312 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2313 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2314 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2316 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2318 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2319 + <MkTypLibCompatible>true</MkTypLibCompatible>
2320 + <SuppressStartupBanner>true</SuppressStartupBanner>
2321 + <TargetEnvironment>Win32</TargetEnvironment>
2322 + <TypeLibraryName>.\..\lib\distutils\command\wininst.tlb</TypeLibraryName>
2327 + <Optimization>MinSpace</Optimization>
2328 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2329 + <AdditionalIncludeDirectories>..;..\..\PC\bdist_wininst;..\..\Include;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2330 + <PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2331 + <StringPooling>true</StringPooling>
2332 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2333 + <FunctionLevelLinking>true</FunctionLevelLinking>
2334 + <WarningLevel>Level3</WarningLevel>
2335 + <SuppressStartupBanner>true</SuppressStartupBanner>
2338 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2339 + <Culture>0x0000</Culture>
2340 + <AdditionalIncludeDirectories>..;..\..\PC;..\..\PC\bdist_wininst;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2341 + </ResourceCompile>
2343 + <AdditionalDependencies>comctl32.lib;imagehlp.lib;%(AdditionalDependencies)</AdditionalDependencies>
2344 + <OutputFile>..\lib\distutils\command\wininst-9.0.exe</OutputFile>
2345 + <SuppressStartupBanner>true</SuppressStartupBanner>
2346 + <IgnoreSpecificDefaultLibraries>LIBC;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
2347 + <ProgramDatabaseFile>..\lib\distutils\command\wininst-9.0.pdb</ProgramDatabaseFile>
2348 + <SubSystem>Windows</SubSystem>
2349 + <RandomizedBaseAddress>false</RandomizedBaseAddress>
2350 + <DataExecutionPrevention>
2351 + </DataExecutionPrevention>
2352 + <TargetMachine>MachineX86</TargetMachine>
2354 + </ItemDefinitionGroup>
2355 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2357 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2358 + <MkTypLibCompatible>true</MkTypLibCompatible>
2359 + <SuppressStartupBanner>true</SuppressStartupBanner>
2360 + <TargetEnvironment>X64</TargetEnvironment>
2361 + <TypeLibraryName>.\..\lib\distutils\command\wininst.tlb</TypeLibraryName>
2366 + <Optimization>MinSpace</Optimization>
2367 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2368 + <AdditionalIncludeDirectories>..;..\..\PC\bdist_wininst;..\..\Include;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2369 + <PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2370 + <StringPooling>true</StringPooling>
2371 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2372 + <FunctionLevelLinking>true</FunctionLevelLinking>
2373 + <WarningLevel>Level3</WarningLevel>
2374 + <SuppressStartupBanner>true</SuppressStartupBanner>
2377 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2378 + <Culture>0x0000</Culture>
2379 + <AdditionalIncludeDirectories>..;..\..\PC;..\..\PC\bdist_wininst;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2380 + </ResourceCompile>
2382 + <AdditionalDependencies>comctl32.lib;imagehlp.lib;%(AdditionalDependencies)</AdditionalDependencies>
2383 + <OutputFile>..\lib\distutils\command\wininst-9.0-amd64.exe</OutputFile>
2384 + <SuppressStartupBanner>true</SuppressStartupBanner>
2385 + <IgnoreSpecificDefaultLibraries>LIBC;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
2386 + <ProgramDatabaseFile>..\lib\distutils\command\wininst-9.0-amd64.pdb</ProgramDatabaseFile>
2387 + <SubSystem>Windows</SubSystem>
2388 + <RandomizedBaseAddress>false</RandomizedBaseAddress>
2389 + <DataExecutionPrevention>
2390 + </DataExecutionPrevention>
2391 + <TargetMachine>MachineX64</TargetMachine>
2393 + </ItemDefinitionGroup>
2395 + <ClCompile Include="..\..\PC\bdist_wininst\extract.c" />
2396 + <ClCompile Include="..\..\PC\bdist_wininst\install.c" />
2397 + <ClCompile Include="..\..\Modules\zlib\adler32.c" />
2398 + <ClCompile Include="..\..\Modules\zlib\crc32.c" />
2399 + <ClCompile Include="..\..\Modules\zlib\inffast.c" />
2400 + <ClCompile Include="..\..\Modules\zlib\inflate.c" />
2401 + <ClCompile Include="..\..\Modules\zlib\inftrees.c" />
2402 + <ClCompile Include="..\..\Modules\zlib\zutil.c" />
2405 + <ClInclude Include="..\..\PC\bdist_wininst\archive.h" />
2408 + <ResourceCompile Include="..\..\PC\bdist_wininst\install.rc" />
2411 + <None Include="..\..\PC\bdist_wininst\PythonPowered.bmp" />
2413 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2414 + <ImportGroup Label="ExtensionTargets">
2417 \ No newline at end of file
2418 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//debug.props misc/build/Python-2.6.1/PC/VS10.0/debug.props
2419 --- misc/build/Python-2.6.1/PC/VS10.0.old//debug.props 1970-01-01 01:00:00.000000000 +0100
2420 +++ misc/build/Python-2.6.1/PC/VS10.0/debug.props 2010-10-04 12:52:05.187500000 +0200
2422 +<?xml version="1.0" encoding="utf-8"?>
2423 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2424 + <PropertyGroup Label="UserMacros">
2425 + <KillPythonExe>$(OutDir)kill_python_d.exe</KillPythonExe>
2428 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2430 + <ItemDefinitionGroup>
2432 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2434 + </ItemDefinitionGroup>
2436 + <BuildMacro Include="KillPythonExe">
2437 + <Value>$(KillPythonExe)</Value>
2441 \ No newline at end of file
2442 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//kill_python.vcxproj misc/build/Python-2.6.1/PC/VS10.0/kill_python.vcxproj
2443 --- misc/build/Python-2.6.1/PC/VS10.0.old//kill_python.vcxproj 1970-01-01 01:00:00.000000000 +0100
2444 +++ misc/build/Python-2.6.1/PC/VS10.0/kill_python.vcxproj 2010-10-04 12:52:05.031250000 +0200
2446 +<?xml version="1.0" encoding="utf-8"?>
2447 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2448 + <ItemGroup Label="ProjectConfigurations">
2449 + <ProjectConfiguration Include="Debug|Win32">
2450 + <Configuration>Debug</Configuration>
2451 + <Platform>Win32</Platform>
2452 + </ProjectConfiguration>
2453 + <ProjectConfiguration Include="Debug|x64">
2454 + <Configuration>Debug</Configuration>
2455 + <Platform>x64</Platform>
2456 + </ProjectConfiguration>
2457 + <ProjectConfiguration Include="Release|Win32">
2458 + <Configuration>Release</Configuration>
2459 + <Platform>Win32</Platform>
2460 + </ProjectConfiguration>
2461 + <ProjectConfiguration Include="Release|x64">
2462 + <Configuration>Release</Configuration>
2463 + <Platform>x64</Platform>
2464 + </ProjectConfiguration>
2466 + <PropertyGroup Label="Globals">
2467 + <ProjectGuid>{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}</ProjectGuid>
2468 + <RootNamespace>kill_python</RootNamespace>
2469 + <Keyword>Win32Proj</Keyword>
2471 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2472 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2473 + <ConfigurationType>Application</ConfigurationType>
2474 + <CharacterSet>NotSet</CharacterSet>
2475 + <WholeProgramOptimization>true</WholeProgramOptimization>
2477 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2478 + <ConfigurationType>Application</ConfigurationType>
2479 + <CharacterSet>NotSet</CharacterSet>
2481 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2482 + <ConfigurationType>Application</ConfigurationType>
2483 + <CharacterSet>NotSet</CharacterSet>
2484 + <WholeProgramOptimization>true</WholeProgramOptimization>
2486 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2487 + <ConfigurationType>Application</ConfigurationType>
2488 + <CharacterSet>NotSet</CharacterSet>
2490 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2491 + <ImportGroup Label="ExtensionSettings">
2493 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
2494 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2495 + <Import Project="pyproject.props" />
2496 + <Import Project="release.props" />
2498 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
2499 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2500 + <Import Project="pyproject.props" />
2501 + <Import Project="debug.props" />
2503 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
2504 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2505 + <Import Project="pyproject.props" />
2506 + <Import Project="release.props" />
2507 + <Import Project="x64.props" />
2509 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
2510 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2511 + <Import Project="pyproject.props" />
2512 + <Import Project="debug.props" />
2513 + <Import Project="x64.props" />
2515 + <PropertyGroup Label="UserMacros" />
2517 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2518 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2519 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
2520 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
2521 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2522 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
2523 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
2524 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2525 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2526 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2527 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2528 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2529 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2531 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
2533 + <OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
2534 + <SubSystem>Console</SubSystem>
2536 + </ItemDefinitionGroup>
2537 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2539 + <TargetEnvironment>X64</TargetEnvironment>
2542 + <OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
2543 + <SubSystem>Console</SubSystem>
2545 + </ItemDefinitionGroup>
2546 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2548 + <SubSystem>Console</SubSystem>
2550 + </ItemDefinitionGroup>
2551 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2553 + <TargetEnvironment>X64</TargetEnvironment>
2556 + <SubSystem>Console</SubSystem>
2558 + </ItemDefinitionGroup>
2560 + <ClCompile Include="..\..\PCbuild\kill_python.c" />
2562 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2563 + <ImportGroup Label="ExtensionTargets">
2566 \ No newline at end of file
2567 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//make_buildinfo.vcxproj misc/build/Python-2.6.1/PC/VS10.0/make_buildinfo.vcxproj
2568 --- misc/build/Python-2.6.1/PC/VS10.0.old//make_buildinfo.vcxproj 1970-01-01 01:00:00.000000000 +0100
2569 +++ misc/build/Python-2.6.1/PC/VS10.0/make_buildinfo.vcxproj 2010-10-04 12:52:05.031250000 +0200
2571 +<?xml version="1.0" encoding="utf-8"?>
2572 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2573 + <ItemGroup Label="ProjectConfigurations">
2574 + <ProjectConfiguration Include="Release|Win32">
2575 + <Configuration>Release</Configuration>
2576 + <Platform>Win32</Platform>
2577 + </ProjectConfiguration>
2578 + <ProjectConfiguration Include="Release|x64">
2579 + <Configuration>Release</Configuration>
2580 + <Platform>x64</Platform>
2581 + </ProjectConfiguration>
2583 + <PropertyGroup Label="Globals">
2584 + <ProjectGuid>{C73F0EC1-358B-4177-940F-0846AC8B04CD}</ProjectGuid>
2585 + <RootNamespace>make_buildinfo</RootNamespace>
2586 + <Keyword>Win32Proj</Keyword>
2588 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2589 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2590 + <ConfigurationType>Application</ConfigurationType>
2591 + <CharacterSet>NotSet</CharacterSet>
2593 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2594 + <ConfigurationType>Application</ConfigurationType>
2596 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2597 + <ImportGroup Label="ExtensionSettings">
2599 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
2600 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2601 + <Import Project="pyproject.props" />
2602 + <Import Project="release.props" />
2604 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
2605 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2606 + <Import Project="pyproject.props" />
2607 + <Import Project="x64.props" />
2608 + <Import Project="release.props" />
2610 + <PropertyGroup Label="UserMacros" />
2612 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2613 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2614 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2615 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2616 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2617 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2618 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2620 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2622 + <Optimization>Disabled</Optimization>
2623 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2624 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2625 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
2628 + <OutputFile>$(OutDir)make_buildinfo.exe</OutputFile>
2629 + <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2630 + <SubSystem>Console</SubSystem>
2632 + </ItemDefinitionGroup>
2633 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2635 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2637 + </ItemDefinitionGroup>
2639 + <ClCompile Include="..\..\PCbuild\make_buildinfo.c" />
2641 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2642 + <ImportGroup Label="ExtensionTargets">
2645 \ No newline at end of file
2646 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//make_versioninfo.vcxproj misc/build/Python-2.6.1/PC/VS10.0/make_versioninfo.vcxproj
2647 --- misc/build/Python-2.6.1/PC/VS10.0.old//make_versioninfo.vcxproj 1970-01-01 01:00:00.000000000 +0100
2648 +++ misc/build/Python-2.6.1/PC/VS10.0/make_versioninfo.vcxproj 2010-10-04 12:52:05.046875000 +0200
2650 +<?xml version="1.0" encoding="utf-8"?>
2651 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2652 + <ItemGroup Label="ProjectConfigurations">
2653 + <ProjectConfiguration Include="Debug|Win32">
2654 + <Configuration>Debug</Configuration>
2655 + <Platform>Win32</Platform>
2656 + </ProjectConfiguration>
2657 + <ProjectConfiguration Include="Debug|x64">
2658 + <Configuration>Debug</Configuration>
2659 + <Platform>x64</Platform>
2660 + </ProjectConfiguration>
2661 + <ProjectConfiguration Include="Release|Win32">
2662 + <Configuration>Release</Configuration>
2663 + <Platform>Win32</Platform>
2664 + </ProjectConfiguration>
2665 + <ProjectConfiguration Include="Release|x64">
2666 + <Configuration>Release</Configuration>
2667 + <Platform>x64</Platform>
2668 + </ProjectConfiguration>
2670 + <PropertyGroup Label="Globals">
2671 + <ProjectGuid>{F0E0541E-F17D-430B-97C4-93ADF0DD284E}</ProjectGuid>
2672 + <RootNamespace>make_versioninfo</RootNamespace>
2674 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2675 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2676 + <ConfigurationType>Application</ConfigurationType>
2677 + <UseOfMfc>false</UseOfMfc>
2678 + <CharacterSet>NotSet</CharacterSet>
2680 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2681 + <ConfigurationType>Application</ConfigurationType>
2682 + <UseOfMfc>false</UseOfMfc>
2683 + <CharacterSet>MultiByte</CharacterSet>
2685 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2686 + <ConfigurationType>Application</ConfigurationType>
2688 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2689 + <ConfigurationType>Application</ConfigurationType>
2691 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2692 + <ImportGroup Label="ExtensionSettings">
2694 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
2695 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2696 + <Import Project="pyproject.props" />
2697 + <Import Project="debug.props" />
2699 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
2700 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2701 + <Import Project="pyproject.props" />
2702 + <Import Project="release.props" />
2704 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
2705 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2706 + <Import Project="pyproject.props" />
2707 + <Import Project="x64.props" />
2708 + <Import Project="debug.props" />
2710 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
2711 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
2712 + <Import Project="pyproject.props" />
2713 + <Import Project="x64.props" />
2714 + <Import Project="release.props" />
2716 + <PropertyGroup Label="UserMacros" />
2718 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2719 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2720 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
2721 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
2722 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2723 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
2724 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
2725 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
2726 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2727 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
2728 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
2729 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2730 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
2732 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2734 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2735 + <Command>cd $(SolutionDir)
2736 +make_versioninfo.exe > ..\..\PC\pythonnt_rc.h
2738 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc.h;%(Outputs)</Outputs>
2739 + </CustomBuildStep>
2741 + <Optimization>MaxSpeed</Optimization>
2742 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2743 + <IntrinsicFunctions>true</IntrinsicFunctions>
2744 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2745 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2746 + <StringPooling>true</StringPooling>
2747 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2748 + <FunctionLevelLinking>true</FunctionLevelLinking>
2749 + <CompileAs>Default</CompileAs>
2752 + <OutputFile>$(SolutionDir)make_versioninfo.exe</OutputFile>
2753 + <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2754 + <SubSystem>Console</SubSystem>
2755 + <BaseAddress>0x1d000000</BaseAddress>
2758 + <Command>cd $(SolutionDir)
2759 +make_versioninfo.exe > ..\..\PC\python_nt.h
2762 + </ItemDefinitionGroup>
2763 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2765 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2766 + <Command>cd $(SolutionDir)
2767 +make_versioninfo.exe > ..\..\PC\pythonnt_rc.h
2769 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc.h;%(Outputs)</Outputs>
2770 + </CustomBuildStep>
2772 + <Optimization>MaxSpeed</Optimization>
2773 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2774 + <IntrinsicFunctions>true</IntrinsicFunctions>
2775 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2778 + <OutputFile>$(SolutionDir)make_versioninfo.exe</OutputFile>
2781 + <Command>cd $(SolutionDir)
2782 +make_versioninfo.exe > ..\..\PC\python_nt.h
2785 + </ItemDefinitionGroup>
2786 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
2788 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2789 + <Command>cd $(SolutionDir)
2790 +make_versioninfo_d.exe > ..\..\PC\pythonnt_rc_d.h
2792 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc_d.h;%(Outputs)</Outputs>
2793 + </CustomBuildStep>
2795 + <Optimization>Disabled</Optimization>
2796 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2797 + <IntrinsicFunctions>false</IntrinsicFunctions>
2798 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2799 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2800 + <StringPooling>true</StringPooling>
2801 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
2802 + <FunctionLevelLinking>true</FunctionLevelLinking>
2803 + <CompileAs>Default</CompileAs>
2806 + <OutputFile>$(SolutionDir)make_versioninfo_d.exe</OutputFile>
2807 + <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2808 + <SubSystem>Console</SubSystem>
2809 + <BaseAddress>0x1d000000</BaseAddress>
2812 + <Command>cd $(SolutionDir)
2813 +make_versioninfo_d.exe > ..\..\PC\python_nt_d.h
2816 + </ItemDefinitionGroup>
2817 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2819 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2820 + <Command>cd $(SolutionDir)
2821 +make_versioninfo_d.exe > ..\..\PC\pythonnt_rc_d.h
2823 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc_d.h;%(Outputs)</Outputs>
2824 + </CustomBuildStep>
2826 + <TargetEnvironment>X64</TargetEnvironment>
2829 + <Optimization>Disabled</Optimization>
2830 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2831 + <IntrinsicFunctions>false</IntrinsicFunctions>
2832 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2835 + <OutputFile>$(SolutionDir)make_versioninfo_d.exe</OutputFile>
2836 + <TargetMachine>MachineX64</TargetMachine>
2839 + <Command>cd $(SolutionDir)
2840 +make_versioninfo_d.exe > ..\..\PC\python_nt_d.h
2843 + </ItemDefinitionGroup>
2845 + <ClCompile Include="..\..\PC\make_versioninfo.c" />
2847 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2848 + <ImportGroup Label="ExtensionTargets">
2851 \ No newline at end of file
2852 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pcbuild.sln misc/build/Python-2.6.1/PC/VS10.0/pcbuild.sln
2853 --- misc/build/Python-2.6.1/PC/VS10.0.old//pcbuild.sln 1970-01-01 01:00:00.000000000 +0100
2854 +++ misc/build/Python-2.6.1/PC/VS10.0/pcbuild.sln 2010-10-04 13:04:31.593750000 +0200
2857 +Microsoft Visual Studio Solution File, Format Version 11.00
2858 +# Visual Studio 2010
2859 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcxproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}"
2861 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcxproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}"
2863 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcxproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}"
2865 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcxproj", "{0E9791DB-593A-465F-98BC-681011311618}"
2867 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcxproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}"
2869 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcxproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}"
2871 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcxproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}"
2873 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcxproj", "{9E48B300-37D1-11DD-8C41-005056C00008}"
2875 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcxproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}"
2877 +#Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcxproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}"
2879 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcxproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}"
2881 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcxproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}"
2883 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcxproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}"
2885 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcxproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}"
2887 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcxproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}"
2889 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcxproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}"
2891 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcxproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}"
2893 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcxproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}"
2895 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcxproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}"
2897 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcxproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}"
2900 + GlobalSection(SolutionConfigurationPlatforms) = preSolution
2901 + Debug|Win32 = Debug|Win32
2902 + Debug|x64 = Debug|x64
2903 + PGInstrument|Win32 = PGInstrument|Win32
2904 + PGInstrument|x64 = PGInstrument|x64
2905 + PGUpdate|Win32 = PGUpdate|Win32
2906 + PGUpdate|x64 = PGUpdate|x64
2907 + Release|Win32 = Release|Win32
2908 + Release|x64 = Release|x64
2910 + GlobalSection(ProjectConfigurationPlatforms) = postSolution
2911 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32
2912 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32
2913 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64
2914 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64
2915 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
2916 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
2917 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
2918 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64
2919 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
2920 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
2921 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
2922 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64
2923 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32
2924 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32
2925 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64
2926 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64
2927 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32
2928 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32
2929 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64
2930 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64
2931 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
2932 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
2933 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
2934 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64
2935 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
2936 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
2937 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
2938 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64
2939 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32
2940 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32
2941 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64
2942 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64
2943 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32
2944 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32
2945 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64
2946 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64
2947 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
2948 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
2949 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
2950 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64
2951 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
2952 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
2953 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
2954 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64
2955 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32
2956 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32
2957 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64
2958 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64
2959 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32
2960 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32
2961 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64
2962 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64
2963 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
2964 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
2965 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
2966 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64
2967 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
2968 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
2969 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
2970 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64
2971 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32
2972 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32
2973 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64
2974 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64
2975 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32
2976 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32
2977 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64
2978 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64
2979 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
2980 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
2981 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
2982 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64
2983 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
2984 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
2985 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
2986 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64
2987 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32
2988 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32
2989 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64
2990 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64
2991 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32
2992 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32
2993 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64
2994 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64
2995 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
2996 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
2997 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
2998 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64
2999 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3000 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3001 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3002 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64
3003 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32
3004 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32
3005 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64
3006 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64
3007 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32
3008 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32
3009 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64
3010 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64
3011 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3012 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3013 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3014 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64
3015 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3016 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3017 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3018 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64
3019 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32
3020 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32
3021 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64
3022 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64
3023 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32
3024 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32
3025 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64
3026 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64
3027 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3028 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3029 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3030 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64
3031 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3032 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3033 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3034 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64
3035 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32
3036 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32
3037 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64
3038 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64
3039 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|x64
3040 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64
3041 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.Build.0 = Release|x64
3042 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|x64
3043 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64
3044 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.Build.0 = Release|x64
3045 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|x64
3046 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64
3047 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.Build.0 = Release|x64
3048 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32
3049 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32
3050 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64
3051 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.Build.0 = Release|x64
3052 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32
3053 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32
3054 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64
3055 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64
3056 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|x64
3057 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64
3058 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64
3059 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|x64
3060 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64
3061 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64
3062 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32
3063 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32
3064 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64
3065 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64
3066 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|x64
3067 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|x64
3068 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|x64
3069 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|x64
3070 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|x64
3071 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|x64
3072 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|x64
3073 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|x64
3074 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|x64
3075 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32
3076 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32
3077 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|x64
3078 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|x64
3079 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32
3080 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32
3081 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|x64
3082 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|x64
3083 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|x64
3084 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|x64
3085 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|x64
3086 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|x64
3087 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|x64
3088 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|x64
3089 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32
3090 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32
3091 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|x64
3092 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|x64
3093 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32
3094 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32
3095 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64
3096 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64
3097 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3098 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3099 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3100 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64
3101 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3102 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3103 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3104 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64
3105 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32
3106 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32
3107 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64
3108 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64
3109 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32
3110 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32
3111 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64
3112 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64
3113 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3114 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3115 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3116 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64
3117 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3118 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3119 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3120 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64
3121 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32
3122 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32
3123 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64
3124 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64
3125 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32
3126 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32
3127 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64
3128 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64
3129 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3130 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3131 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3132 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64
3133 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3134 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3135 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3136 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64
3137 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32
3138 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32
3139 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64
3140 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64
3141 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32
3142 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32
3143 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64
3144 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64
3145 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3146 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3147 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3148 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64
3149 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3150 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3151 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3152 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64
3153 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32
3154 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32
3155 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64
3156 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64
3157 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32
3158 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32
3159 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64
3160 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64
3161 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3162 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3163 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3164 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64
3165 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3166 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3167 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3168 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64
3169 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32
3170 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32
3171 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64
3172 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64
3173 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32
3174 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32
3175 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64
3176 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64
3177 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3178 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3179 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3180 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64
3181 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3182 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3183 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3184 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64
3185 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32
3186 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32
3187 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64
3188 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64
3189 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32
3190 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32
3191 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64
3192 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64
3193 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3194 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3195 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3196 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64
3197 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3198 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3199 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3200 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64
3201 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32
3202 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32
3203 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64
3204 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64
3205 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32
3206 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32
3207 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64
3208 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64
3209 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32
3210 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
3211 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
3212 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64
3213 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32
3214 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32
3215 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
3216 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64
3217 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32
3218 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32
3219 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64
3220 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64
3222 + GlobalSection(SolutionProperties) = preSolution
3223 + HideSolutionNode = FALSE
3226 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pginstrument.props misc/build/Python-2.6.1/PC/VS10.0/pginstrument.props
3227 --- misc/build/Python-2.6.1/PC/VS10.0.old//pginstrument.props 1970-01-01 01:00:00.000000000 +0100
3228 +++ misc/build/Python-2.6.1/PC/VS10.0/pginstrument.props 2010-10-04 12:52:05.203125000 +0200
3230 +<?xml version="1.0" encoding="utf-8"?>
3231 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3232 + <PropertyGroup Label="UserMacros">
3233 + <OutDirPGI>$(SolutionDir)$(Platform)-pgi\</OutDirPGI>
3236 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3237 + <OutDir>$(OutDirPGI)\</OutDir>
3238 + <IntDir>$(SolutionDir)$(PlatformName)-temp-pgi\$(ProjectName)\</IntDir>
3240 + <ItemDefinitionGroup>
3242 + <Optimization>MaxSpeed</Optimization>
3243 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
3244 + <IntrinsicFunctions>false</IntrinsicFunctions>
3245 + <FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
3246 + <OmitFramePointers>true</OmitFramePointers>
3247 + <EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
3248 + <WholeProgramOptimization>true</WholeProgramOptimization>
3249 + <StringPooling>true</StringPooling>
3250 + <ExceptionHandling>
3251 + </ExceptionHandling>
3252 + <BufferSecurityCheck>false</BufferSecurityCheck>
3255 + <OptimizeReferences>true</OptimizeReferences>
3256 + <EnableCOMDATFolding>true</EnableCOMDATFolding>
3257 + <LinkTimeCodeGeneration>PGInstrument</LinkTimeCodeGeneration>
3258 + <ProfileGuidedDatabase>$(SolutionDir)$(Platform)-pgi\$(TargetName).pgd</ProfileGuidedDatabase>
3259 + <ImportLibrary>$(OutDirPGI)\$(TargetName).lib</ImportLibrary>
3261 + </ItemDefinitionGroup>
3263 + <BuildMacro Include="OutDirPGI">
3264 + <Value>$(OutDirPGI)</Value>
3268 \ No newline at end of file
3269 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pgupdate.props misc/build/Python-2.6.1/PC/VS10.0/pgupdate.props
3270 --- misc/build/Python-2.6.1/PC/VS10.0.old//pgupdate.props 1970-01-01 01:00:00.000000000 +0100
3271 +++ misc/build/Python-2.6.1/PC/VS10.0/pgupdate.props 2010-10-04 12:52:05.250000000 +0200
3273 +<?xml version="1.0" encoding="utf-8"?>
3274 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3275 + <ImportGroup Label="PropertySheets">
3276 + <Import Project="$(SolutionDir)\pginstrument.props" />
3279 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3280 + <OutDir>$(SolutionDir)$(PlatformName)-pgo\</OutDir>
3282 + <ItemDefinitionGroup>
3284 + <AdditionalManifestDependencies>%(AdditionalManifestDependencies)</AdditionalManifestDependencies>
3285 + <LinkTimeCodeGeneration>PGUpdate</LinkTimeCodeGeneration>
3287 + </ItemDefinitionGroup>
3289 \ No newline at end of file
3290 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pyd.props misc/build/Python-2.6.1/PC/VS10.0/pyd.props
3291 --- misc/build/Python-2.6.1/PC/VS10.0.old//pyd.props 1970-01-01 01:00:00.000000000 +0100
3292 +++ misc/build/Python-2.6.1/PC/VS10.0/pyd.props 2010-10-04 12:52:05.250000000 +0200
3294 +<?xml version="1.0" encoding="utf-8"?>
3295 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3296 + <ImportGroup Label="PropertySheets">
3297 + <Import Project="pyproject.props" />
3298 + <Import Project="release.props" />
3301 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3302 + <GenerateManifest>false</GenerateManifest>
3303 + <EmbedManifest>false</EmbedManifest>
3305 + <ItemDefinitionGroup>
3307 + <PreprocessorDefinitions>Py_BUILD_CORE_MODULE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3308 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
3311 + <OutputFile>$(OutDir)$(ProjectName).pyd</OutputFile>
3312 + <ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
3313 + <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
3319 + </ItemDefinitionGroup>
3321 \ No newline at end of file
3322 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pyd_d.props misc/build/Python-2.6.1/PC/VS10.0/pyd_d.props
3323 --- misc/build/Python-2.6.1/PC/VS10.0.old//pyd_d.props 1970-01-01 01:00:00.000000000 +0100
3324 +++ misc/build/Python-2.6.1/PC/VS10.0/pyd_d.props 2010-10-04 12:52:05.265625000 +0200
3326 +<?xml version="1.0" encoding="utf-8"?>
3327 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3328 + <ImportGroup Label="PropertySheets">
3329 + <Import Project="pyproject.props" />
3330 + <Import Project="debug.props" />
3332 + <PropertyGroup Label="UserMacros">
3333 + <PythonExe>$(SolutionDir)python_d.exe</PythonExe>
3336 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3337 + <LinkIncremental>false</LinkIncremental>
3338 + <GenerateManifest>false</GenerateManifest>
3339 + <EmbedManifest>false</EmbedManifest>
3341 + <ItemDefinitionGroup>
3343 + <Optimization>Disabled</Optimization>
3344 + <InlineFunctionExpansion>Default</InlineFunctionExpansion>
3345 + <IntrinsicFunctions>false</IntrinsicFunctions>
3346 + <PreprocessorDefinitions>Py_BUILD_CORE_MODULE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3347 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
3350 + <OutputFile>$(OutDir)$(ProjectName)_d.pyd</OutputFile>
3351 + <ProgramDatabaseFile>$(OutDir)$(ProjectName)_d.pdb</ProgramDatabaseFile>
3352 + <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
3358 + </ItemDefinitionGroup>
3360 + <BuildMacro Include="PythonExe">
3361 + <Value>$(PythonExe)</Value>
3365 \ No newline at end of file
3366 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pyexpat.vcxproj misc/build/Python-2.6.1/PC/VS10.0/pyexpat.vcxproj
3367 --- misc/build/Python-2.6.1/PC/VS10.0.old//pyexpat.vcxproj 1970-01-01 01:00:00.000000000 +0100
3368 +++ misc/build/Python-2.6.1/PC/VS10.0/pyexpat.vcxproj 2010-10-04 12:52:05.046875000 +0200
3370 +<?xml version="1.0" encoding="utf-8"?>
3371 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3372 + <ItemGroup Label="ProjectConfigurations">
3373 + <ProjectConfiguration Include="Debug|Win32">
3374 + <Configuration>Debug</Configuration>
3375 + <Platform>Win32</Platform>
3376 + </ProjectConfiguration>
3377 + <ProjectConfiguration Include="Debug|x64">
3378 + <Configuration>Debug</Configuration>
3379 + <Platform>x64</Platform>
3380 + </ProjectConfiguration>
3381 + <ProjectConfiguration Include="PGInstrument|Win32">
3382 + <Configuration>PGInstrument</Configuration>
3383 + <Platform>Win32</Platform>
3384 + </ProjectConfiguration>
3385 + <ProjectConfiguration Include="PGInstrument|x64">
3386 + <Configuration>PGInstrument</Configuration>
3387 + <Platform>x64</Platform>
3388 + </ProjectConfiguration>
3389 + <ProjectConfiguration Include="PGUpdate|Win32">
3390 + <Configuration>PGUpdate</Configuration>
3391 + <Platform>Win32</Platform>
3392 + </ProjectConfiguration>
3393 + <ProjectConfiguration Include="PGUpdate|x64">
3394 + <Configuration>PGUpdate</Configuration>
3395 + <Platform>x64</Platform>
3396 + </ProjectConfiguration>
3397 + <ProjectConfiguration Include="Release|Win32">
3398 + <Configuration>Release</Configuration>
3399 + <Platform>Win32</Platform>
3400 + </ProjectConfiguration>
3401 + <ProjectConfiguration Include="Release|x64">
3402 + <Configuration>Release</Configuration>
3403 + <Platform>x64</Platform>
3404 + </ProjectConfiguration>
3406 + <PropertyGroup Label="Globals">
3407 + <ProjectGuid>{D06B6426-4762-44CC-8BAD-D79052507F2F}</ProjectGuid>
3408 + <RootNamespace>pyexpat</RootNamespace>
3409 + <Keyword>Win32Proj</Keyword>
3411 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3412 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
3413 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3414 + <CharacterSet>NotSet</CharacterSet>
3415 + <WholeProgramOptimization>true</WholeProgramOptimization>
3417 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
3418 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3419 + <CharacterSet>NotSet</CharacterSet>
3420 + <WholeProgramOptimization>true</WholeProgramOptimization>
3422 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3423 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3424 + <CharacterSet>NotSet</CharacterSet>
3425 + <WholeProgramOptimization>true</WholeProgramOptimization>
3427 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3428 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3429 + <CharacterSet>NotSet</CharacterSet>
3431 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
3432 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3433 + <CharacterSet>NotSet</CharacterSet>
3434 + <WholeProgramOptimization>true</WholeProgramOptimization>
3436 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
3437 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3438 + <CharacterSet>NotSet</CharacterSet>
3439 + <WholeProgramOptimization>true</WholeProgramOptimization>
3441 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3442 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3443 + <CharacterSet>NotSet</CharacterSet>
3444 + <WholeProgramOptimization>true</WholeProgramOptimization>
3446 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3447 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3448 + <CharacterSet>NotSet</CharacterSet>
3450 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3451 + <ImportGroup Label="ExtensionSettings">
3453 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
3454 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3455 + <Import Project="pyd.props" />
3456 + <Import Project="pgupdate.props" />
3458 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
3459 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3460 + <Import Project="pyd.props" />
3461 + <Import Project="pginstrument.props" />
3463 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
3464 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3465 + <Import Project="pyd.props" />
3467 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
3468 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3469 + <Import Project="pyd_d.props" />
3471 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
3472 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3473 + <Import Project="pyd.props" />
3474 + <Import Project="x64.props" />
3475 + <Import Project="pgupdate.props" />
3477 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
3478 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3479 + <Import Project="pyd.props" />
3480 + <Import Project="x64.props" />
3481 + <Import Project="pginstrument.props" />
3483 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
3484 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3485 + <Import Project="pyd.props" />
3486 + <Import Project="x64.props" />
3488 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
3489 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3490 + <Import Project="pyd_d.props" />
3491 + <Import Project="x64.props" />
3493 + <PropertyGroup Label="UserMacros" />
3495 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3496 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3497 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
3498 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
3499 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3500 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
3501 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
3502 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3503 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
3504 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
3505 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3506 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
3507 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
3508 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3509 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
3510 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
3511 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3512 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
3513 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
3514 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3515 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
3516 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
3517 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3518 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
3519 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
3521 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
3523 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3524 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3526 + </ItemDefinitionGroup>
3527 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3529 + <TargetEnvironment>X64</TargetEnvironment>
3532 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3533 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3535 + </ItemDefinitionGroup>
3536 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
3538 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3539 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3541 + </ItemDefinitionGroup>
3542 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3544 + <TargetEnvironment>X64</TargetEnvironment>
3547 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3548 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3550 + </ItemDefinitionGroup>
3551 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
3553 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3554 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3556 + </ItemDefinitionGroup>
3557 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
3559 + <TargetEnvironment>X64</TargetEnvironment>
3562 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3563 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3566 + <TargetMachine>MachineX64</TargetMachine>
3568 + </ItemDefinitionGroup>
3569 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
3571 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3572 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3574 + </ItemDefinitionGroup>
3575 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
3577 + <TargetEnvironment>X64</TargetEnvironment>
3580 + <AdditionalIncludeDirectories>..;.\..\..\Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3581 + <PreprocessorDefinitions>PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_NS;XML_DTD;BYTEORDER=1234;XML_CONTEXT_BYTES=1024;XML_STATIC;HAVE_MEMMOVE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3584 + <TargetMachine>MachineX64</TargetMachine>
3586 + </ItemDefinitionGroup>
3588 + <ClInclude Include="..\..\Modules\expat\xmlrole.h" />
3589 + <ClInclude Include="..\..\Modules\expat\xmltok.h" />
3592 + <ClCompile Include="..\..\Modules\pyexpat.c" />
3593 + <ClCompile Include="..\..\Modules\expat\xmlparse.c" />
3594 + <ClCompile Include="..\..\Modules\expat\xmlrole.c" />
3595 + <ClCompile Include="..\..\Modules\expat\xmltok.c" />
3597 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
3598 + <ImportGroup Label="ExtensionTargets">
3601 \ No newline at end of file
3602 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pyproject.props misc/build/Python-2.6.1/PC/VS10.0/pyproject.props
3603 --- misc/build/Python-2.6.1/PC/VS10.0.old//pyproject.props 1970-01-01 01:00:00.000000000 +0100
3604 +++ misc/build/Python-2.6.1/PC/VS10.0/pyproject.props 2010-10-04 12:52:05.281250000 +0200
3606 +<?xml version="1.0" encoding="utf-8"?>
3607 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3608 + <PropertyGroup Label="UserMacros">
3609 + <PyDllName>python26</PyDllName>
3610 + <PythonExe>$(SolutionDir)\python.exe</PythonExe>
3611 + <externalsDir>..\..</externalsDir>
3612 + <bsddbDir>$(bsddb47Dir)</bsddbDir>
3613 + <bsddbDepLibs>$(bsddb47DepLibs)</bsddbDepLibs>
3614 + <bsddb44Dir>$(externalsDir)\db-4.4.20\build_win32</bsddb44Dir>
3615 + <bsddb44DepLibs />
3616 + <bsddb47Dir>$(externalsDir)\db-4.7.25.0\build_windows</bsddb47Dir>
3617 + <bsddb47DepLibs>ws2_32.lib</bsddb47DepLibs>
3618 + <sqlite3Dir>$(externalsDir)\sqlite-3.5.9</sqlite3Dir>
3619 + <bz2Dir>$(externalsDir)\bzip2-1.0.5</bz2Dir>
3620 + <opensslDir>$(externalsDir)\openssl-0.9.8g</opensslDir>
3621 + <tcltkDir>$(externalsDir)\tcltk</tcltkDir>
3622 + <tcltk64Dir>$(externalsDir)\tcltk64</tcltk64Dir>
3623 + <tcltkLib>$(tcltkDir)\lib\tcl85.lib $(tcltkDir)\lib\tk85.lib</tcltkLib>
3624 + <tcltkLibDebug>$(tcltkDir)\lib\tcl85g.lib $(tcltkDir)\lib\tk85g.lib</tcltkLibDebug>
3625 + <tcltk64Lib>$(tcltk64Dir)\lib\tcl85.lib $(tcltk64Dir)\lib\tk85.lib</tcltk64Lib>
3626 + <tcltk64LibDebug>$(tcltk64Dir)\lib\tcl85g.lib $(tcltk64Dir)\lib\tk85g.lib</tcltk64LibDebug>
3629 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3630 + <OutDir>$(SolutionDir)\</OutDir>
3631 + <IntDir>$(SolutionDir)$(PlatformName)-temp-$(Configuration)\$(ProjectName)\</IntDir>
3632 + <LinkIncremental>false</LinkIncremental>
3634 + <ItemDefinitionGroup>
3636 + <Optimization>MaxSpeed</Optimization>
3637 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
3638 + <IntrinsicFunctions>true</IntrinsicFunctions>
3639 + <AdditionalIncludeDirectories>..;..\..\Include; ..\..\PC;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3640 + <PreprocessorDefinitions>_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3641 + <StringPooling>true</StringPooling>
3642 + <ExceptionHandling>
3643 + </ExceptionHandling>
3644 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
3645 + <FunctionLevelLinking>true</FunctionLevelLinking>
3646 + <WarningLevel>Level3</WarningLevel>
3647 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
3648 + <CompileAs>Default</CompileAs>
3651 + <AdditionalLibraryDirectories>$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
3652 + <GenerateDebugInformation>true</GenerateDebugInformation>
3653 + <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
3654 + <SubSystem>Windows</SubSystem>
3655 + <RandomizedBaseAddress>false</RandomizedBaseAddress>
3656 + <DataExecutionPrevention>
3657 + </DataExecutionPrevention>
3658 + <TargetMachine>MachineX86</TargetMachine>
3661 + <AdditionalIncludeDirectories>..;..\..\PC;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3662 + </ResourceCompile>
3663 + </ItemDefinitionGroup>
3665 + <BuildMacro Include="PyDllName">
3666 + <Value>$(PyDllName)</Value>
3668 + <BuildMacro Include="PythonExe">
3669 + <Value>$(PythonExe)</Value>
3671 + <BuildMacro Include="externalsDir">
3672 + <Value>$(externalsDir)</Value>
3674 + <BuildMacro Include="bsddbDir">
3675 + <Value>$(bsddbDir)</Value>
3677 + <BuildMacro Include="bsddbDepLibs">
3678 + <Value>$(bsddbDepLibs)</Value>
3680 + <BuildMacro Include="bsddb44Dir">
3681 + <Value>$(bsddb44Dir)</Value>
3683 + <BuildMacro Include="bsddb44DepLibs">
3684 + <Value>$(bsddb44DepLibs)</Value>
3686 + <BuildMacro Include="bsddb47Dir">
3687 + <Value>$(bsddb47Dir)</Value>
3689 + <BuildMacro Include="bsddb47DepLibs">
3690 + <Value>$(bsddb47DepLibs)</Value>
3692 + <BuildMacro Include="sqlite3Dir">
3693 + <Value>$(sqlite3Dir)</Value>
3695 + <BuildMacro Include="bz2Dir">
3696 + <Value>$(bz2Dir)</Value>
3698 + <BuildMacro Include="opensslDir">
3699 + <Value>$(opensslDir)</Value>
3701 + <BuildMacro Include="tcltkDir">
3702 + <Value>$(tcltkDir)</Value>
3704 + <BuildMacro Include="tcltk64Dir">
3705 + <Value>$(tcltk64Dir)</Value>
3707 + <BuildMacro Include="tcltkLib">
3708 + <Value>$(tcltkLib)</Value>
3710 + <BuildMacro Include="tcltkLibDebug">
3711 + <Value>$(tcltkLibDebug)</Value>
3713 + <BuildMacro Include="tcltk64Lib">
3714 + <Value>$(tcltk64Lib)</Value>
3716 + <BuildMacro Include="tcltk64LibDebug">
3717 + <Value>$(tcltk64LibDebug)</Value>
3721 \ No newline at end of file
3722 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//python.vcxproj misc/build/Python-2.6.1/PC/VS10.0/python.vcxproj
3723 --- misc/build/Python-2.6.1/PC/VS10.0.old//python.vcxproj 1970-01-01 01:00:00.000000000 +0100
3724 +++ misc/build/Python-2.6.1/PC/VS10.0/python.vcxproj 2010-10-04 12:52:05.062500000 +0200
3726 +<?xml version="1.0" encoding="utf-8"?>
3727 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3728 + <ItemGroup Label="ProjectConfigurations">
3729 + <ProjectConfiguration Include="Debug|Win32">
3730 + <Configuration>Debug</Configuration>
3731 + <Platform>Win32</Platform>
3732 + </ProjectConfiguration>
3733 + <ProjectConfiguration Include="Debug|x64">
3734 + <Configuration>Debug</Configuration>
3735 + <Platform>x64</Platform>
3736 + </ProjectConfiguration>
3737 + <ProjectConfiguration Include="PGInstrument|Win32">
3738 + <Configuration>PGInstrument</Configuration>
3739 + <Platform>Win32</Platform>
3740 + </ProjectConfiguration>
3741 + <ProjectConfiguration Include="PGInstrument|x64">
3742 + <Configuration>PGInstrument</Configuration>
3743 + <Platform>x64</Platform>
3744 + </ProjectConfiguration>
3745 + <ProjectConfiguration Include="PGUpdate|Win32">
3746 + <Configuration>PGUpdate</Configuration>
3747 + <Platform>Win32</Platform>
3748 + </ProjectConfiguration>
3749 + <ProjectConfiguration Include="PGUpdate|x64">
3750 + <Configuration>PGUpdate</Configuration>
3751 + <Platform>x64</Platform>
3752 + </ProjectConfiguration>
3753 + <ProjectConfiguration Include="Release|Win32">
3754 + <Configuration>Release</Configuration>
3755 + <Platform>Win32</Platform>
3756 + </ProjectConfiguration>
3757 + <ProjectConfiguration Include="Release|x64">
3758 + <Configuration>Release</Configuration>
3759 + <Platform>x64</Platform>
3760 + </ProjectConfiguration>
3762 + <PropertyGroup Label="Globals">
3763 + <ProjectGuid>{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}</ProjectGuid>
3765 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3766 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
3767 + <ConfigurationType>Application</ConfigurationType>
3768 + <UseOfMfc>false</UseOfMfc>
3769 + <CharacterSet>MultiByte</CharacterSet>
3771 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
3772 + <ConfigurationType>Application</ConfigurationType>
3773 + <UseOfMfc>false</UseOfMfc>
3774 + <CharacterSet>MultiByte</CharacterSet>
3776 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3777 + <ConfigurationType>Application</ConfigurationType>
3778 + <UseOfMfc>false</UseOfMfc>
3779 + <CharacterSet>NotSet</CharacterSet>
3781 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3782 + <ConfigurationType>Application</ConfigurationType>
3783 + <UseOfMfc>false</UseOfMfc>
3784 + <CharacterSet>MultiByte</CharacterSet>
3786 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
3787 + <ConfigurationType>Application</ConfigurationType>
3788 + <UseOfMfc>false</UseOfMfc>
3789 + <CharacterSet>MultiByte</CharacterSet>
3791 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
3792 + <ConfigurationType>Application</ConfigurationType>
3793 + <UseOfMfc>false</UseOfMfc>
3794 + <CharacterSet>MultiByte</CharacterSet>
3796 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3797 + <ConfigurationType>Application</ConfigurationType>
3798 + <UseOfMfc>false</UseOfMfc>
3799 + <CharacterSet>MultiByte</CharacterSet>
3801 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3802 + <ConfigurationType>Application</ConfigurationType>
3803 + <UseOfMfc>false</UseOfMfc>
3804 + <CharacterSet>MultiByte</CharacterSet>
3806 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3807 + <ImportGroup Label="ExtensionSettings">
3809 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
3810 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3811 + <Import Project="pyproject.props" />
3812 + <Import Project="release.props" />
3813 + <Import Project="pgupdate.props" />
3815 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
3816 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3817 + <Import Project="pyproject.props" />
3818 + <Import Project="release.props" />
3819 + <Import Project="pginstrument.props" />
3821 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
3822 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3823 + <Import Project="pyproject.props" />
3824 + <Import Project="debug.props" />
3826 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
3827 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3828 + <Import Project="pyproject.props" />
3829 + <Import Project="release.props" />
3831 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
3832 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3833 + <Import Project="pyproject.props" />
3834 + <Import Project="x64.props" />
3835 + <Import Project="release.props" />
3836 + <Import Project="pgupdate.props" />
3838 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
3839 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3840 + <Import Project="pyproject.props" />
3841 + <Import Project="x64.props" />
3842 + <Import Project="release.props" />
3843 + <Import Project="pginstrument.props" />
3845 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
3846 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3847 + <Import Project="pyproject.props" />
3848 + <Import Project="x64.props" />
3849 + <Import Project="debug.props" />
3851 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
3852 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3853 + <Import Project="pyproject.props" />
3854 + <Import Project="x64.props" />
3855 + <Import Project="release.props" />
3857 + <PropertyGroup Label="UserMacros" />
3859 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3860 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3861 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
3862 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
3863 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3864 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
3865 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
3866 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3867 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
3868 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
3869 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3870 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
3871 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
3872 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3873 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
3874 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
3875 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3876 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
3877 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
3878 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
3879 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
3880 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
3881 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
3882 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
3883 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
3885 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
3887 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3888 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3889 + <StringPooling>true</StringPooling>
3890 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
3891 + <FunctionLevelLinking>true</FunctionLevelLinking>
3892 + <CompileAs>Default</CompileAs>
3895 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3896 + <Culture>0x0409</Culture>
3897 + </ResourceCompile>
3899 + <OutputFile>$(OutDir)python.exe</OutputFile>
3900 + <SubSystem>Console</SubSystem>
3901 + <StackReserveSize>2000000</StackReserveSize>
3902 + <BaseAddress>0x1d000000</BaseAddress>
3904 + </ItemDefinitionGroup>
3905 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3907 + <TargetEnvironment>X64</TargetEnvironment>
3910 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3911 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3912 + <StringPooling>true</StringPooling>
3913 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
3914 + <FunctionLevelLinking>true</FunctionLevelLinking>
3915 + <CompileAs>Default</CompileAs>
3918 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3919 + <Culture>0x0409</Culture>
3920 + </ResourceCompile>
3922 + <OutputFile>$(OutDir)python.exe</OutputFile>
3923 + <SubSystem>Console</SubSystem>
3924 + <StackReserveSize>2000000</StackReserveSize>
3925 + <BaseAddress>0x1d000000</BaseAddress>
3927 + </ItemDefinitionGroup>
3928 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
3930 + <Optimization>Disabled</Optimization>
3931 + <IntrinsicFunctions>false</IntrinsicFunctions>
3932 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3933 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3934 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
3935 + <BrowseInformation>true</BrowseInformation>
3936 + <CompileAs>Default</CompileAs>
3939 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3940 + <Culture>0x0409</Culture>
3941 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3942 + </ResourceCompile>
3944 + <OutputFile>$(OutDir)python_d.exe</OutputFile>
3945 + <SubSystem>Console</SubSystem>
3946 + <StackReserveSize>2000000</StackReserveSize>
3947 + <BaseAddress>0x1d000000</BaseAddress>
3949 + </ItemDefinitionGroup>
3950 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3952 + <TargetEnvironment>X64</TargetEnvironment>
3955 + <Optimization>Disabled</Optimization>
3956 + <IntrinsicFunctions>false</IntrinsicFunctions>
3957 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3958 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3959 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
3960 + <BrowseInformation>true</BrowseInformation>
3961 + <CompileAs>Default</CompileAs>
3964 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3965 + <Culture>0x0409</Culture>
3966 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3967 + </ResourceCompile>
3969 + <OutputFile>$(OutDir)python_d.exe</OutputFile>
3970 + <SubSystem>Console</SubSystem>
3971 + <StackReserveSize>2100000</StackReserveSize>
3972 + <BaseAddress>0x1d000000</BaseAddress>
3974 + </ItemDefinitionGroup>
3975 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
3977 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3978 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3979 + <StringPooling>true</StringPooling>
3980 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
3981 + <FunctionLevelLinking>true</FunctionLevelLinking>
3982 + <CompileAs>Default</CompileAs>
3985 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3986 + <Culture>0x0409</Culture>
3987 + </ResourceCompile>
3989 + <OutputFile>$(OutDir)python.exe</OutputFile>
3990 + <SubSystem>Console</SubSystem>
3991 + <StackReserveSize>2000000</StackReserveSize>
3992 + <BaseAddress>0x1d000000</BaseAddress>
3996 + </ItemDefinitionGroup>
3997 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
3999 + <TargetEnvironment>X64</TargetEnvironment>
4002 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4003 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4004 + <StringPooling>true</StringPooling>
4005 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4006 + <FunctionLevelLinking>true</FunctionLevelLinking>
4007 + <CompileAs>Default</CompileAs>
4010 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4011 + <Culture>0x0409</Culture>
4012 + </ResourceCompile>
4014 + <OutputFile>$(OutDir)python.exe</OutputFile>
4015 + <SubSystem>Console</SubSystem>
4016 + <StackReserveSize>2000000</StackReserveSize>
4017 + <BaseAddress>0x1d000000</BaseAddress>
4020 + <TargetMachine>MachineX64</TargetMachine>
4022 + </ItemDefinitionGroup>
4023 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
4025 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4026 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4027 + <StringPooling>true</StringPooling>
4028 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4029 + <FunctionLevelLinking>true</FunctionLevelLinking>
4030 + <CompileAs>Default</CompileAs>
4033 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4034 + <Culture>0x0409</Culture>
4035 + </ResourceCompile>
4037 + <OutputFile>$(OutDir)python.exe</OutputFile>
4038 + <SubSystem>Console</SubSystem>
4039 + <StackReserveSize>2000000</StackReserveSize>
4040 + <BaseAddress>0x1d000000</BaseAddress>
4044 + </ItemDefinitionGroup>
4045 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
4047 + <TargetEnvironment>X64</TargetEnvironment>
4050 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4051 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4052 + <StringPooling>true</StringPooling>
4053 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4054 + <FunctionLevelLinking>true</FunctionLevelLinking>
4055 + <CompileAs>Default</CompileAs>
4058 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4059 + <Culture>0x0409</Culture>
4060 + </ResourceCompile>
4062 + <OutputFile>$(OutDir)python.exe</OutputFile>
4063 + <SubSystem>Console</SubSystem>
4064 + <StackReserveSize>2000000</StackReserveSize>
4065 + <BaseAddress>0x1d000000</BaseAddress>
4068 + <TargetMachine>MachineX64</TargetMachine>
4070 + </ItemDefinitionGroup>
4072 + <None Include="..\..\PC\pycon.ico" />
4075 + <ResourceCompile Include="..\..\PC\python_exe.rc" />
4078 + <ClCompile Include="..\..\Modules\python.c" />
4080 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
4081 + <ImportGroup Label="ExtensionTargets">
4084 \ No newline at end of file
4085 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pythoncore.vcxproj misc/build/Python-2.6.1/PC/VS10.0/pythoncore.vcxproj
4086 --- misc/build/Python-2.6.1/PC/VS10.0.old//pythoncore.vcxproj 1970-01-01 01:00:00.000000000 +0100
4087 +++ misc/build/Python-2.6.1/PC/VS10.0/pythoncore.vcxproj 2010-10-04 12:52:05.078125000 +0200
4089 +<?xml version="1.0" encoding="utf-8"?>
4090 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4091 + <ItemGroup Label="ProjectConfigurations">
4092 + <ProjectConfiguration Include="Debug|Win32">
4093 + <Configuration>Debug</Configuration>
4094 + <Platform>Win32</Platform>
4095 + </ProjectConfiguration>
4096 + <ProjectConfiguration Include="Debug|x64">
4097 + <Configuration>Debug</Configuration>
4098 + <Platform>x64</Platform>
4099 + </ProjectConfiguration>
4100 + <ProjectConfiguration Include="PGInstrument|Win32">
4101 + <Configuration>PGInstrument</Configuration>
4102 + <Platform>Win32</Platform>
4103 + </ProjectConfiguration>
4104 + <ProjectConfiguration Include="PGInstrument|x64">
4105 + <Configuration>PGInstrument</Configuration>
4106 + <Platform>x64</Platform>
4107 + </ProjectConfiguration>
4108 + <ProjectConfiguration Include="PGUpdate|Win32">
4109 + <Configuration>PGUpdate</Configuration>
4110 + <Platform>Win32</Platform>
4111 + </ProjectConfiguration>
4112 + <ProjectConfiguration Include="PGUpdate|x64">
4113 + <Configuration>PGUpdate</Configuration>
4114 + <Platform>x64</Platform>
4115 + </ProjectConfiguration>
4116 + <ProjectConfiguration Include="Release|Win32">
4117 + <Configuration>Release</Configuration>
4118 + <Platform>Win32</Platform>
4119 + </ProjectConfiguration>
4120 + <ProjectConfiguration Include="Release|x64">
4121 + <Configuration>Release</Configuration>
4122 + <Platform>x64</Platform>
4123 + </ProjectConfiguration>
4125 + <PropertyGroup Label="Globals">
4126 + <ProjectGuid>{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}</ProjectGuid>
4127 + <RootNamespace>pythoncore</RootNamespace>
4129 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
4130 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
4131 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4132 + <UseOfMfc>false</UseOfMfc>
4134 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
4135 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4136 + <UseOfMfc>false</UseOfMfc>
4138 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
4139 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4140 + <UseOfMfc>false</UseOfMfc>
4141 + <CharacterSet>NotSet</CharacterSet>
4143 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
4144 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4145 + <UseOfMfc>false</UseOfMfc>
4147 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
4148 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4149 + <UseOfMfc>false</UseOfMfc>
4151 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
4152 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4153 + <UseOfMfc>false</UseOfMfc>
4155 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4156 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4157 + <UseOfMfc>false</UseOfMfc>
4159 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4160 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4161 + <UseOfMfc>false</UseOfMfc>
4163 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4164 + <ImportGroup Label="ExtensionSettings">
4166 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
4167 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4168 + <Import Project="pyproject.props" />
4169 + <Import Project="release.props" />
4170 + <Import Project="pgupdate.props" />
4172 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
4173 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4174 + <Import Project="pyproject.props" />
4175 + <Import Project="release.props" />
4176 + <Import Project="pginstrument.props" />
4178 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
4179 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4180 + <Import Project="pyproject.props" />
4181 + <Import Project="debug.props" />
4183 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
4184 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4185 + <Import Project="pyproject.props" />
4186 + <Import Project="release.props" />
4188 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
4189 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4190 + <Import Project="pyproject.props" />
4191 + <Import Project="x64.props" />
4192 + <Import Project="release.props" />
4193 + <Import Project="pgupdate.props" />
4195 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
4196 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4197 + <Import Project="pyproject.props" />
4198 + <Import Project="x64.props" />
4199 + <Import Project="release.props" />
4200 + <Import Project="pginstrument.props" />
4202 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
4203 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4204 + <Import Project="pyproject.props" />
4205 + <Import Project="x64.props" />
4206 + <Import Project="debug.props" />
4208 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
4209 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4210 + <Import Project="pyproject.props" />
4211 + <Import Project="x64.props" />
4212 + <Import Project="release.props" />
4214 + <PropertyGroup Label="UserMacros" />
4216 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
4217 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4218 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
4219 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
4220 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4221 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
4222 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
4223 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4224 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
4225 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
4226 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4227 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
4228 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
4229 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4230 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
4231 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
4232 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4233 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
4234 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
4235 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4236 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
4237 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
4238 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4239 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
4240 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
4242 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
4244 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4245 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4246 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4247 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4250 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4251 + <Culture>0x0409</Culture>
4252 + <AdditionalIncludeDirectories>..;..\..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4253 + </ResourceCompile>
4255 + <Message>Generate build information...</Message>
4256 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4259 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4260 + <OutputFile>$(OutDir)$(PyDllName).dll</OutputFile>
4261 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4262 + <ProgramDatabaseFile>$(OutDir)$(PyDllName).pdb</ProgramDatabaseFile>
4263 + <BaseAddress>0x1e000000</BaseAddress>
4264 + <ImportLibrary>$(OutDir)$(PyDllName).lib</ImportLibrary>
4266 + </ItemDefinitionGroup>
4267 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
4269 + <TargetEnvironment>X64</TargetEnvironment>
4272 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4273 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4274 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4275 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4278 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4279 + <Culture>0x0409</Culture>
4280 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4281 + </ResourceCompile>
4283 + <Message>Generate build information...</Message>
4284 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4287 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4288 + <OutputFile>$(OutDir)$(PyDllName).dll</OutputFile>
4289 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4290 + <ProgramDatabaseFile>$(OutDir)$(PyDllName).pdb</ProgramDatabaseFile>
4291 + <BaseAddress>0x1e000000</BaseAddress>
4292 + <ImportLibrary>$(OutDir)$(PyDllName).lib</ImportLibrary>
4294 + </ItemDefinitionGroup>
4295 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4297 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4298 + <Optimization>Disabled</Optimization>
4299 + <InlineFunctionExpansion>Default</InlineFunctionExpansion>
4300 + <IntrinsicFunctions>false</IntrinsicFunctions>
4301 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4302 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4303 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
4306 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4307 + <Culture>0x0409</Culture>
4308 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4309 + </ResourceCompile>
4311 + <Message>Generate build information...</Message>
4312 + <Command>"$(SolutionDir)make_buildinfo.exe" Debug</Command>
4315 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4316 + <OutputFile>$(OutDir)$(PyDllName)_d.dll</OutputFile>
4317 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4318 + <ProgramDatabaseFile>$(OutDir)$(PyDllName)_d.pdb</ProgramDatabaseFile>
4319 + <BaseAddress>0x1e000000</BaseAddress>
4320 + <ImportLibrary>$(OutDir)$(PyDllName)_d.lib</ImportLibrary>
4322 + </ItemDefinitionGroup>
4323 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
4325 + <TargetEnvironment>X64</TargetEnvironment>
4328 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4329 + <Optimization>Disabled</Optimization>
4330 + <InlineFunctionExpansion>Default</InlineFunctionExpansion>
4331 + <IntrinsicFunctions>false</IntrinsicFunctions>
4332 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4333 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4334 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
4337 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4338 + <Culture>0x0409</Culture>
4339 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4340 + </ResourceCompile>
4342 + <Message>Generate build information...</Message>
4343 + <Command>"$(SolutionDir)make_buildinfo.exe" Debug</Command>
4346 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4347 + <OutputFile>$(OutDir)$(PyDllName)_d.dll</OutputFile>
4348 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4349 + <ProgramDatabaseFile>$(OutDir)$(PyDllName)_d.pdb</ProgramDatabaseFile>
4350 + <BaseAddress>0x1e000000</BaseAddress>
4351 + <ImportLibrary>$(OutDir)$(PyDllName)_d.lib</ImportLibrary>
4353 + </ItemDefinitionGroup>
4354 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
4356 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4357 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4358 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4359 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4362 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4363 + <Culture>0x0409</Culture>
4364 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4365 + </ResourceCompile>
4367 + <Message>Generate build information...</Message>
4368 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4371 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4372 + <OutputFile>$(OutDir)$(PyDllName).dll</OutputFile>
4373 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4374 + <ProgramDatabaseFile>$(OutDir)$(PyDllName).pdb</ProgramDatabaseFile>
4375 + <BaseAddress>0x1e000000</BaseAddress>
4376 + <ImportLibrary>$(OutDirPGI)$(PyDllName).lib</ImportLibrary>
4378 + </ItemDefinitionGroup>
4379 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
4381 + <TargetEnvironment>X64</TargetEnvironment>
4384 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4385 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4386 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4387 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4390 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4391 + <Culture>0x0409</Culture>
4392 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4393 + </ResourceCompile>
4395 + <Message>Generate build information...</Message>
4396 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4399 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4400 + <OutputFile>$(OutDir)$(PyDllName).dll</OutputFile>
4401 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4402 + <ProgramDatabaseFile>$(OutDir)$(PyDllName).pdb</ProgramDatabaseFile>
4403 + <BaseAddress>0x1e000000</BaseAddress>
4404 + <ImportLibrary>$(OutDirPGI)$(PyDllName).lib</ImportLibrary>
4405 + <TargetMachine>MachineX64</TargetMachine>
4407 + </ItemDefinitionGroup>
4408 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
4410 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4411 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4412 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4413 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4416 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4417 + <Culture>0x0409</Culture>
4418 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4419 + </ResourceCompile>
4421 + <Message>Generate build information...</Message>
4422 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4425 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4426 + <OutputFile>$(OutDir)$(PyDllName).dll</OutputFile>
4427 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4428 + <ProgramDatabaseFile>$(OutDir)$(PyDllName).pdb</ProgramDatabaseFile>
4429 + <BaseAddress>0x1e000000</BaseAddress>
4430 + <ImportLibrary>$(OutDirPGI)$(PyDllName).lib</ImportLibrary>
4432 + </ItemDefinitionGroup>
4433 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
4435 + <TargetEnvironment>X64</TargetEnvironment>
4438 + <AdditionalOptions>/Zm200 %(AdditionalOptions)</AdditionalOptions>
4439 + <AdditionalIncludeDirectories>..;..\..\Python;..\..\Modules\zlib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4440 + <PreprocessorDefinitions>_USRDLL;Py_BUILD_CORE;Py_ENABLE_SHARED;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4441 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4444 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4445 + <Culture>0x0409</Culture>
4446 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4447 + </ResourceCompile>
4449 + <Message>Generate build information...</Message>
4450 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4453 + <AdditionalDependencies>getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies>
4454 + <OutputFile>$(OutDir)$(PyDllName).dll</OutputFile>
4455 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
4456 + <ProgramDatabaseFile>$(OutDir)$(PyDllName).pdb</ProgramDatabaseFile>
4457 + <BaseAddress>0x1e000000</BaseAddress>
4458 + <ImportLibrary>$(OutDirPGI)$(PyDllName).lib</ImportLibrary>
4459 + <TargetMachine>MachineX64</TargetMachine>
4461 + </ItemDefinitionGroup>
4463 + <ClInclude Include="..\..\Include\abstract.h" />
4464 + <ClInclude Include="..\..\Include\asdl.h" />
4465 + <ClInclude Include="..\..\Include\ast.h" />
4466 + <ClInclude Include="..\..\Include\bitset.h" />
4467 + <ClInclude Include="..\..\Include\boolobject.h" />
4468 + <ClInclude Include="..\..\Include\bufferobject.h" />
4469 + <ClInclude Include="..\..\Include\bytes_methods.h" />
4470 + <ClInclude Include="..\..\Include\bytearrayobject.h" />
4471 + <ClInclude Include="..\..\Include\bytesobject.h" />
4472 + <ClInclude Include="..\..\Include\cellobject.h" />
4473 + <ClInclude Include="..\..\Include\ceval.h" />
4474 + <ClInclude Include="..\..\Include\classobject.h" />
4475 + <ClInclude Include="..\..\Include\cobject.h" />
4476 + <ClInclude Include="..\..\Include\code.h" />
4477 + <ClInclude Include="..\..\Include\codecs.h" />
4478 + <ClInclude Include="..\..\Include\compile.h" />
4479 + <ClInclude Include="..\..\Include\complexobject.h" />
4480 + <ClInclude Include="..\..\Include\cStringIO.h" />
4481 + <ClInclude Include="..\..\Include\datetime.h" />
4482 + <ClInclude Include="..\..\Include\descrobject.h" />
4483 + <ClInclude Include="..\..\Include\dictobject.h" />
4484 + <ClInclude Include="..\..\Include\enumobject.h" />
4485 + <ClInclude Include="..\..\Include\errcode.h" />
4486 + <ClInclude Include="..\..\Include\eval.h" />
4487 + <ClInclude Include="..\..\Include\fileobject.h" />
4488 + <ClInclude Include="..\..\Include\floatobject.h" />
4489 + <ClInclude Include="..\..\Include\frameobject.h" />
4490 + <ClInclude Include="..\..\Include\funcobject.h" />
4491 + <ClInclude Include="..\..\Include\genobject.h" />
4492 + <ClInclude Include="..\..\Include\graminit.h" />
4493 + <ClInclude Include="..\..\Include\grammar.h" />
4494 + <ClInclude Include="..\..\Include\import.h" />
4495 + <ClInclude Include="..\..\Include\intobject.h" />
4496 + <ClInclude Include="..\..\Include\intrcheck.h" />
4497 + <ClInclude Include="..\..\Include\iterobject.h" />
4498 + <ClInclude Include="..\..\Include\listobject.h" />
4499 + <ClInclude Include="..\..\Include\longintrepr.h" />
4500 + <ClInclude Include="..\..\Include\longobject.h" />
4501 + <ClInclude Include="..\..\Include\marshal.h" />
4502 + <ClInclude Include="..\..\Include\memoryobject.h" />
4503 + <ClInclude Include="..\..\Include\metagrammar.h" />
4504 + <ClInclude Include="..\..\Include\methodobject.h" />
4505 + <ClInclude Include="..\..\Include\modsupport.h" />
4506 + <ClInclude Include="..\..\Include\moduleobject.h" />
4507 + <ClInclude Include="..\..\Include\node.h" />
4508 + <ClInclude Include="..\..\Include\object.h" />
4509 + <ClInclude Include="..\..\Include\objimpl.h" />
4510 + <ClInclude Include="..\..\Include\opcode.h" />
4511 + <ClInclude Include="..\..\Include\osdefs.h" />
4512 + <ClInclude Include="..\..\Include\parsetok.h" />
4513 + <ClInclude Include="..\..\Include\patchlevel.h" />
4514 + <ClInclude Include="..\..\Include\pgen.h" />
4515 + <ClInclude Include="..\..\Include\pgenheaders.h" />
4516 + <ClInclude Include="..\..\Include\py_curses.h" />
4517 + <ClInclude Include="..\..\Include\pyarena.h" />
4518 + <ClInclude Include="..\..\Include\pydebug.h" />
4519 + <ClInclude Include="..\..\Include\pyerrors.h" />
4520 + <ClInclude Include="..\..\Include\pyexpat.h" />
4521 + <ClInclude Include="..\..\Include\pyfpe.h" />
4522 + <ClInclude Include="..\..\Include\pygetopt.h" />
4523 + <ClInclude Include="..\..\Include\pymactoolbox.h" />
4524 + <ClInclude Include="..\..\Include\pymath.h" />
4525 + <ClInclude Include="..\..\Include\pymem.h" />
4526 + <ClInclude Include="..\..\Include\pyport.h" />
4527 + <ClInclude Include="..\..\Include\pystate.h" />
4528 + <ClInclude Include="..\..\Include\pystrcmp.h" />
4529 + <ClInclude Include="..\..\Include\pystrtod.h" />
4530 + <ClInclude Include="..\..\Include\Python-ast.h" />
4531 + <ClInclude Include="..\..\Include\Python.h" />
4532 + <ClInclude Include="..\..\Include\pythonrun.h" />
4533 + <ClInclude Include="..\..\Include\pythread.h" />
4534 + <ClInclude Include="..\..\Include\rangeobject.h" />
4535 + <ClInclude Include="..\..\Include\setobject.h" />
4536 + <ClInclude Include="..\..\Include\sliceobject.h" />
4537 + <ClInclude Include="..\..\Include\stringobject.h" />
4538 + <ClInclude Include="..\..\Include\structmember.h" />
4539 + <ClInclude Include="..\..\Include\structseq.h" />
4540 + <ClInclude Include="..\..\Include\symtable.h" />
4541 + <ClInclude Include="..\..\Include\sysmodule.h" />
4542 + <ClInclude Include="..\..\Include\timefuncs.h" />
4543 + <ClInclude Include="..\..\Include\token.h" />
4544 + <ClInclude Include="..\..\Include\traceback.h" />
4545 + <ClInclude Include="..\..\Include\tupleobject.h" />
4546 + <ClInclude Include="..\..\Include\ucnhash.h" />
4547 + <ClInclude Include="..\..\Include\unicodeobject.h" />
4548 + <ClInclude Include="..\..\Include\weakrefobject.h" />
4549 + <ClInclude Include="..\..\Modules\md5.h" />
4550 + <ClInclude Include="..\..\Modules\rotatingtree.h" />
4551 + <ClInclude Include="..\..\Modules\yuv.h" />
4552 + <ClInclude Include="..\..\Modules\zlib\crc32.h" />
4553 + <ClInclude Include="..\..\Modules\zlib\deflate.h" />
4554 + <ClInclude Include="..\..\Modules\zlib\inffast.h" />
4555 + <ClInclude Include="..\..\Modules\zlib\inffixed.h" />
4556 + <ClInclude Include="..\..\Modules\zlib\inflate.h" />
4557 + <ClInclude Include="..\..\Modules\zlib\inftrees.h" />
4558 + <ClInclude Include="..\..\Modules\zlib\trees.h" />
4559 + <ClInclude Include="..\..\Modules\zlib\zconf.h" />
4560 + <ClInclude Include="..\..\Modules\zlib\zconf.in.h" />
4561 + <ClInclude Include="..\..\Modules\zlib\zlib.h" />
4562 + <ClInclude Include="..\..\Modules\zlib\zutil.h" />
4563 + <ClInclude Include="..\..\Modules\cjkcodecs\alg_jisx0201.h" />
4564 + <ClInclude Include="..\..\Modules\cjkcodecs\cjkcodecs.h" />
4565 + <ClInclude Include="..\..\Modules\cjkcodecs\emu_jisx0213_2000.h" />
4566 + <ClInclude Include="..\..\Modules\cjkcodecs\mappings_cn.h" />
4567 + <ClInclude Include="..\..\Modules\cjkcodecs\mappings_hk.h" />
4568 + <ClInclude Include="..\..\Modules\cjkcodecs\mappings_jisx0213_pair.h" />
4569 + <ClInclude Include="..\..\Modules\cjkcodecs\mappings_jp.h" />
4570 + <ClInclude Include="..\..\Modules\cjkcodecs\mappings_kr.h" />
4571 + <ClInclude Include="..\..\Modules\cjkcodecs\mappings_tw.h" />
4572 + <ClInclude Include="..\..\Modules\cjkcodecs\multibytecodec.h" />
4573 + <ClInclude Include="..\..\Objects\stringlib\count.h" />
4574 + <ClInclude Include="..\..\Objects\stringlib\fastsearch.h" />
4575 + <ClInclude Include="..\..\Objects\stringlib\find.h" />
4576 + <ClInclude Include="..\..\Objects\stringlib\partition.h" />
4577 + <ClInclude Include="..\..\Objects\unicodetype_db.h" />
4578 + <ClInclude Include="..\..\Parser\parser.h" />
4579 + <ClInclude Include="..\..\Parser\tokenizer.h" />
4580 + <ClInclude Include="..\..\PC\errmap.h" />
4581 + <ClInclude Include="..\..\PC\pyconfig.h" />
4582 + <ClInclude Include="..\..\Python\importdl.h" />
4583 + <ClInclude Include="..\..\Python\thread_nt.h" />
4586 + <ClCompile Include="..\..\Modules\_bisectmodule.c" />
4587 + <ClCompile Include="..\..\Modules\_codecsmodule.c" />
4588 + <ClCompile Include="..\..\Modules\_collectionsmodule.c" />
4589 + <ClCompile Include="..\..\Modules\_csv.c" />
4590 + <ClCompile Include="..\..\Modules\_fileio.c" />
4591 + <ClCompile Include="..\..\Modules\_bytesio.c" />
4592 + <ClCompile Include="..\..\Modules\_functoolsmodule.c" />
4593 + <ClCompile Include="..\..\Modules\_heapqmodule.c" />
4594 + <ClCompile Include="..\..\Modules\_hotshot.c" />
4595 + <ClCompile Include="..\..\Modules\_json.c" />
4596 + <ClCompile Include="..\..\Modules\_localemodule.c" />
4597 + <ClCompile Include="..\..\Modules\_lsprof.c" />
4598 + <ClCompile Include="..\..\Modules\_randommodule.c" />
4599 + <ClCompile Include="..\..\Modules\_sre.c" />
4600 + <ClCompile Include="..\..\Modules\_struct.c" />
4601 + <ClCompile Include="..\..\Modules\_weakref.c" />
4602 + <ClCompile Include="..\..\Modules\arraymodule.c" />
4603 + <ClCompile Include="..\..\Modules\audioop.c" />
4604 + <ClCompile Include="..\..\Modules\binascii.c" />
4605 + <ClCompile Include="..\..\Modules\cmathmodule.c" />
4606 + <ClCompile Include="..\..\Modules\cPickle.c" />
4607 + <ClCompile Include="..\..\Modules\cStringIO.c" />
4608 + <ClCompile Include="..\..\Modules\datetimemodule.c" />
4609 + <ClCompile Include="..\..\Modules\errnomodule.c" />
4610 + <ClCompile Include="..\..\Modules\future_builtins.c" />
4611 + <ClCompile Include="..\..\Modules\gcmodule.c" />
4612 + <ClCompile Include="..\..\Modules\imageop.c" />
4613 + <ClCompile Include="..\..\Modules\itertoolsmodule.c" />
4614 + <ClCompile Include="..\..\Modules\main.c" />
4615 + <ClCompile Include="..\..\Modules\mathmodule.c" />
4616 + <ClCompile Include="..\..\Modules\md5.c" />
4617 + <ClCompile Include="..\..\Modules\md5module.c" />
4618 + <ClCompile Include="..\..\Modules\mmapmodule.c" />
4619 + <ClCompile Include="..\..\Modules\operator.c" />
4620 + <ClCompile Include="..\..\Modules\parsermodule.c" />
4621 + <ClCompile Include="..\..\Modules\posixmodule.c" />
4622 + <ClCompile Include="..\..\Modules\rotatingtree.c" />
4623 + <ClCompile Include="..\..\Modules\sha256module.c" />
4624 + <ClCompile Include="..\..\Modules\sha512module.c" />
4625 + <ClCompile Include="..\..\Modules\shamodule.c" />
4626 + <ClCompile Include="..\..\Modules\signalmodule.c" />
4627 + <ClCompile Include="..\..\Modules\stropmodule.c" />
4628 + <ClCompile Include="..\..\Modules\symtablemodule.c" />
4629 + <ClCompile Include="..\..\Modules\threadmodule.c" />
4630 + <ClCompile Include="..\..\Modules\timemodule.c" />
4631 + <ClCompile Include="..\..\Modules\xxsubtype.c" />
4632 + <ClCompile Include="..\..\Modules\yuvconvert.c" />
4633 + <ClCompile Include="..\..\Modules\zipimport.c" />
4634 + <ClCompile Include="..\..\Modules\zlibmodule.c" />
4635 + <ClCompile Include="..\..\Modules\zlib\adler32.c" />
4636 + <ClCompile Include="..\..\Modules\zlib\compress.c" />
4637 + <ClCompile Include="..\..\Modules\zlib\crc32.c" />
4638 + <ClCompile Include="..\..\Modules\zlib\deflate.c" />
4639 + <ClCompile Include="..\..\Modules\zlib\gzio.c" />
4640 + <ClCompile Include="..\..\Modules\zlib\infback.c" />
4641 + <ClCompile Include="..\..\Modules\zlib\inffast.c" />
4642 + <ClCompile Include="..\..\Modules\zlib\inflate.c" />
4643 + <ClCompile Include="..\..\Modules\zlib\inftrees.c" />
4644 + <ClCompile Include="..\..\Modules\zlib\trees.c" />
4645 + <ClCompile Include="..\..\Modules\zlib\uncompr.c" />
4646 + <ClCompile Include="..\..\Modules\zlib\zutil.c" />
4647 + <ClCompile Include="..\..\Modules\cjkcodecs\_codecs_cn.c" />
4648 + <ClCompile Include="..\..\Modules\cjkcodecs\_codecs_hk.c" />
4649 + <ClCompile Include="..\..\Modules\cjkcodecs\_codecs_iso2022.c" />
4650 + <ClCompile Include="..\..\Modules\cjkcodecs\_codecs_jp.c" />
4651 + <ClCompile Include="..\..\Modules\cjkcodecs\_codecs_kr.c" />
4652 + <ClCompile Include="..\..\Modules\cjkcodecs\_codecs_tw.c" />
4653 + <ClCompile Include="..\..\Modules\cjkcodecs\multibytecodec.c" />
4654 + <ClCompile Include="..\..\Objects\abstract.c" />
4655 + <ClCompile Include="..\..\Objects\boolobject.c" />
4656 + <ClCompile Include="..\..\Objects\bufferobject.c" />
4657 + <ClCompile Include="..\..\Objects\bytes_methods.c" />
4658 + <ClCompile Include="..\..\Objects\bytearrayobject.c" />
4659 + <ClCompile Include="..\..\Objects\stringobject.c" />
4660 + <ClCompile Include="..\..\Objects\cellobject.c" />
4661 + <ClCompile Include="..\..\Objects\classobject.c" />
4662 + <ClCompile Include="..\..\Objects\cobject.c" />
4663 + <ClCompile Include="..\..\Objects\codeobject.c" />
4664 + <ClCompile Include="..\..\Objects\complexobject.c" />
4665 + <ClCompile Include="..\..\Objects\descrobject.c" />
4666 + <ClCompile Include="..\..\Objects\dictobject.c" />
4667 + <ClCompile Include="..\..\Objects\enumobject.c" />
4668 + <ClCompile Include="..\..\Objects\exceptions.c" />
4669 + <ClCompile Include="..\..\Objects\fileobject.c" />
4670 + <ClCompile Include="..\..\Objects\floatobject.c" />
4671 + <ClCompile Include="..\..\Objects\frameobject.c" />
4672 + <ClCompile Include="..\..\Objects\funcobject.c" />
4673 + <ClCompile Include="..\..\Objects\genobject.c" />
4674 + <ClCompile Include="..\..\Objects\intobject.c" />
4675 + <ClCompile Include="..\..\Objects\iterobject.c" />
4676 + <ClCompile Include="..\..\Objects\listobject.c" />
4677 + <ClCompile Include="..\..\Objects\longobject.c" />
4678 + <ClCompile Include="..\..\Objects\methodobject.c" />
4679 + <ClCompile Include="..\..\Objects\moduleobject.c" />
4680 + <ClCompile Include="..\..\Objects\object.c" />
4681 + <ClCompile Include="..\..\Objects\obmalloc.c" />
4682 + <ClCompile Include="..\..\Objects\rangeobject.c" />
4683 + <ClCompile Include="..\..\Objects\setobject.c" />
4684 + <ClCompile Include="..\..\Objects\sliceobject.c" />
4685 + <ClCompile Include="..\..\Objects\structseq.c" />
4686 + <ClCompile Include="..\..\Objects\tupleobject.c" />
4687 + <ClCompile Include="..\..\Objects\typeobject.c" />
4688 + <ClCompile Include="..\..\Objects\unicodectype.c" />
4689 + <ClCompile Include="..\..\Objects\unicodeobject.c" />
4690 + <ClCompile Include="..\..\Objects\weakrefobject.c" />
4691 + <ClCompile Include="..\..\Parser\acceler.c" />
4692 + <ClCompile Include="..\..\Parser\bitset.c" />
4693 + <ClCompile Include="..\..\Parser\firstsets.c" />
4694 + <ClCompile Include="..\..\Parser\grammar.c" />
4695 + <ClCompile Include="..\..\Parser\grammar1.c" />
4696 + <ClCompile Include="..\..\Parser\listnode.c" />
4697 + <ClCompile Include="..\..\Parser\metagrammar.c" />
4698 + <ClCompile Include="..\..\Parser\myreadline.c" />
4699 + <ClCompile Include="..\..\Parser\node.c" />
4700 + <ClCompile Include="..\..\Parser\parser.c" />
4701 + <ClCompile Include="..\..\Parser\parsetok.c" />
4702 + <ClCompile Include="..\..\Parser\tokenizer.c" />
4703 + <ClCompile Include="..\..\PC\_subprocess.c" />
4704 + <ClCompile Include="..\..\PC\_winreg.c" />
4705 + <ClCompile Include="..\..\PC\config.c" />
4706 + <ClCompile Include="..\..\PC\dl_nt.c" />
4707 + <ClCompile Include="..\..\PC\getpathp.c" />
4708 + <ClCompile Include="..\..\PC\import_nt.c" />
4709 + <ClCompile Include="..\..\PC\msvcrtmodule.c" />
4710 + <ClCompile Include="..\..\Python\_warnings.c" />
4711 + <ClCompile Include="..\..\Python\asdl.c" />
4712 + <ClCompile Include="..\..\Python\ast.c" />
4713 + <ClCompile Include="..\..\Python\bltinmodule.c" />
4714 + <ClCompile Include="..\..\Python\ceval.c" />
4715 + <ClCompile Include="..\..\Python\codecs.c" />
4716 + <ClCompile Include="..\..\Python\compile.c" />
4717 + <ClCompile Include="..\..\Python\dynload_win.c" />
4718 + <ClCompile Include="..\..\Python\errors.c" />
4719 + <ClCompile Include="..\..\Python\formatter_string.c" />
4720 + <ClCompile Include="..\..\Python\formatter_unicode.c" />
4721 + <ClCompile Include="..\..\Python\frozen.c" />
4722 + <ClCompile Include="..\..\Python\future.c" />
4723 + <ClCompile Include="..\..\Python\getargs.c" />
4724 + <ClCompile Include="..\..\Python\getcompiler.c" />
4725 + <ClCompile Include="..\..\Python\getcopyright.c" />
4726 + <ClCompile Include="..\..\Python\getmtime.c" />
4727 + <ClCompile Include="..\..\Python\getopt.c" />
4728 + <ClCompile Include="..\..\Python\getplatform.c" />
4729 + <ClCompile Include="..\..\Python\getversion.c" />
4730 + <ClCompile Include="..\..\Python\graminit.c" />
4731 + <ClCompile Include="..\..\Python\import.c" />
4732 + <ClCompile Include="..\..\Python\importdl.c" />
4733 + <ClCompile Include="..\..\Python\marshal.c" />
4734 + <ClCompile Include="..\..\Python\modsupport.c" />
4735 + <ClCompile Include="..\..\Python\mysnprintf.c" />
4736 + <ClCompile Include="..\..\Python\mystrtoul.c" />
4737 + <ClCompile Include="..\..\Python\peephole.c" />
4738 + <ClCompile Include="..\..\Python\pyarena.c" />
4739 + <ClCompile Include="..\..\Python\pyfpe.c" />
4740 + <ClCompile Include="..\..\Python\pymath.c" />
4741 + <ClCompile Include="..\..\Python\pystate.c" />
4742 + <ClCompile Include="..\..\Python\pystrcmp.c" />
4743 + <ClCompile Include="..\..\Python\pystrtod.c" />
4744 + <ClCompile Include="..\..\Python\Python-ast.c" />
4745 + <ClCompile Include="..\..\Python\pythonrun.c" />
4746 + <ClCompile Include="..\..\Python\structmember.c" />
4747 + <ClCompile Include="..\..\Python\symtable.c" />
4748 + <ClCompile Include="..\..\Python\sysmodule.c" />
4749 + <ClCompile Include="..\..\Python\thread.c" />
4750 + <ClCompile Include="..\..\Python\traceback.c" />
4753 + <ResourceCompile Include="..\..\PC\python_nt.rc" />
4755 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
4756 + <ImportGroup Label="ExtensionTargets">
4759 \ No newline at end of file
4760 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//pythonw.vcxproj misc/build/Python-2.6.1/PC/VS10.0/pythonw.vcxproj
4761 --- misc/build/Python-2.6.1/PC/VS10.0.old//pythonw.vcxproj 1970-01-01 01:00:00.000000000 +0100
4762 +++ misc/build/Python-2.6.1/PC/VS10.0/pythonw.vcxproj 2010-10-04 12:52:05.078125000 +0200
4764 +<?xml version="1.0" encoding="utf-8"?>
4765 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4766 + <ItemGroup Label="ProjectConfigurations">
4767 + <ProjectConfiguration Include="Debug|Win32">
4768 + <Configuration>Debug</Configuration>
4769 + <Platform>Win32</Platform>
4770 + </ProjectConfiguration>
4771 + <ProjectConfiguration Include="Debug|x64">
4772 + <Configuration>Debug</Configuration>
4773 + <Platform>x64</Platform>
4774 + </ProjectConfiguration>
4775 + <ProjectConfiguration Include="PGInstrument|Win32">
4776 + <Configuration>PGInstrument</Configuration>
4777 + <Platform>Win32</Platform>
4778 + </ProjectConfiguration>
4779 + <ProjectConfiguration Include="PGInstrument|x64">
4780 + <Configuration>PGInstrument</Configuration>
4781 + <Platform>x64</Platform>
4782 + </ProjectConfiguration>
4783 + <ProjectConfiguration Include="PGUpdate|Win32">
4784 + <Configuration>PGUpdate</Configuration>
4785 + <Platform>Win32</Platform>
4786 + </ProjectConfiguration>
4787 + <ProjectConfiguration Include="PGUpdate|x64">
4788 + <Configuration>PGUpdate</Configuration>
4789 + <Platform>x64</Platform>
4790 + </ProjectConfiguration>
4791 + <ProjectConfiguration Include="Release|Win32">
4792 + <Configuration>Release</Configuration>
4793 + <Platform>Win32</Platform>
4794 + </ProjectConfiguration>
4795 + <ProjectConfiguration Include="Release|x64">
4796 + <Configuration>Release</Configuration>
4797 + <Platform>x64</Platform>
4798 + </ProjectConfiguration>
4800 + <PropertyGroup Label="Globals">
4801 + <ProjectGuid>{F4229CC3-873C-49AE-9729-DD308ED4CD4A}</ProjectGuid>
4803 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
4804 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
4805 + <ConfigurationType>Application</ConfigurationType>
4806 + <UseOfMfc>false</UseOfMfc>
4808 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
4809 + <ConfigurationType>Application</ConfigurationType>
4810 + <UseOfMfc>false</UseOfMfc>
4812 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
4813 + <ConfigurationType>Application</ConfigurationType>
4814 + <UseOfMfc>false</UseOfMfc>
4816 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
4817 + <ConfigurationType>Application</ConfigurationType>
4818 + <UseOfMfc>false</UseOfMfc>
4819 + <CharacterSet>NotSet</CharacterSet>
4821 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
4822 + <ConfigurationType>Application</ConfigurationType>
4823 + <UseOfMfc>false</UseOfMfc>
4825 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
4826 + <ConfigurationType>Application</ConfigurationType>
4827 + <UseOfMfc>false</UseOfMfc>
4829 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4830 + <ConfigurationType>Application</ConfigurationType>
4831 + <UseOfMfc>false</UseOfMfc>
4833 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4834 + <ConfigurationType>Application</ConfigurationType>
4835 + <UseOfMfc>false</UseOfMfc>
4837 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4838 + <ImportGroup Label="ExtensionSettings">
4840 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
4841 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4842 + <Import Project="pyproject.props" />
4843 + <Import Project="release.props" />
4844 + <Import Project="pgupdate.props" />
4846 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
4847 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4848 + <Import Project="pyproject.props" />
4849 + <Import Project="release.props" />
4850 + <Import Project="pginstrument.props" />
4852 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
4853 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4854 + <Import Project="pyproject.props" />
4855 + <Import Project="release.props" />
4857 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
4858 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4859 + <Import Project="pyproject.props" />
4860 + <Import Project="debug.props" />
4862 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
4863 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4864 + <Import Project="pyproject.props" />
4865 + <Import Project="x64.props" />
4866 + <Import Project="release.props" />
4867 + <Import Project="pgupdate.props" />
4869 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
4870 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4871 + <Import Project="pyproject.props" />
4872 + <Import Project="x64.props" />
4873 + <Import Project="release.props" />
4874 + <Import Project="pginstrument.props" />
4876 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
4877 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4878 + <Import Project="pyproject.props" />
4879 + <Import Project="x64.props" />
4880 + <Import Project="release.props" />
4882 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
4883 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
4884 + <Import Project="pyproject.props" />
4885 + <Import Project="x64.props" />
4886 + <Import Project="debug.props" />
4888 + <PropertyGroup Label="UserMacros" />
4890 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
4891 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4892 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
4893 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
4894 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4895 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
4896 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
4897 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4898 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
4899 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
4900 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4901 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
4902 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
4903 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4904 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
4905 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
4906 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4907 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
4908 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
4909 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
4910 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
4911 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
4912 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
4913 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
4914 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
4916 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4918 + <Optimization>Disabled</Optimization>
4919 + <IntrinsicFunctions>false</IntrinsicFunctions>
4920 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4921 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4922 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
4923 + <CompileAs>Default</CompileAs>
4926 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4927 + <Culture>0x0409</Culture>
4928 + </ResourceCompile>
4930 + <OutputFile>$(OutDir)pythonw_d.exe</OutputFile>
4931 + <StackReserveSize>2000000</StackReserveSize>
4932 + <BaseAddress>0x1d000000</BaseAddress>
4933 + <TargetMachine>MachineX86</TargetMachine>
4935 + </ItemDefinitionGroup>
4936 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
4938 + <TargetEnvironment>X64</TargetEnvironment>
4941 + <Optimization>Disabled</Optimization>
4942 + <IntrinsicFunctions>false</IntrinsicFunctions>
4943 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4944 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4945 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
4946 + <CompileAs>Default</CompileAs>
4949 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4950 + <Culture>0x0409</Culture>
4951 + </ResourceCompile>
4953 + <OutputFile>$(OutDir)pythonw_d.exe</OutputFile>
4954 + <StackReserveSize>2000000</StackReserveSize>
4955 + <BaseAddress>0x1d000000</BaseAddress>
4957 + </ItemDefinitionGroup>
4958 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
4960 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4961 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4962 + <StringPooling>true</StringPooling>
4963 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4964 + <FunctionLevelLinking>true</FunctionLevelLinking>
4965 + <CompileAs>Default</CompileAs>
4968 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4969 + <Culture>0x0409</Culture>
4970 + </ResourceCompile>
4972 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
4973 + <StackReserveSize>2000000</StackReserveSize>
4974 + <BaseAddress>0x1d000000</BaseAddress>
4975 + <TargetMachine>MachineX86</TargetMachine>
4977 + </ItemDefinitionGroup>
4978 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
4980 + <TargetEnvironment>X64</TargetEnvironment>
4983 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4984 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4985 + <StringPooling>true</StringPooling>
4986 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
4987 + <FunctionLevelLinking>true</FunctionLevelLinking>
4988 + <CompileAs>Default</CompileAs>
4991 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4992 + <Culture>0x0409</Culture>
4993 + </ResourceCompile>
4995 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
4996 + <StackReserveSize>2000000</StackReserveSize>
4997 + <BaseAddress>0x1d000000</BaseAddress>
4999 + </ItemDefinitionGroup>
5000 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5002 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5003 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5004 + <StringPooling>true</StringPooling>
5005 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
5006 + <FunctionLevelLinking>true</FunctionLevelLinking>
5007 + <CompileAs>Default</CompileAs>
5010 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5011 + <Culture>0x0409</Culture>
5012 + </ResourceCompile>
5014 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5015 + <StackReserveSize>2000000</StackReserveSize>
5016 + <BaseAddress>0x1d000000</BaseAddress>
5019 + <TargetMachine>MachineX86</TargetMachine>
5021 + </ItemDefinitionGroup>
5022 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5024 + <TargetEnvironment>X64</TargetEnvironment>
5027 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5028 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5029 + <StringPooling>true</StringPooling>
5030 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
5031 + <FunctionLevelLinking>true</FunctionLevelLinking>
5032 + <CompileAs>Default</CompileAs>
5035 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5036 + <Culture>0x0409</Culture>
5037 + </ResourceCompile>
5039 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5040 + <StackReserveSize>2000000</StackReserveSize>
5041 + <BaseAddress>0x1d000000</BaseAddress>
5044 + <TargetMachine>MachineX64</TargetMachine>
5046 + </ItemDefinitionGroup>
5047 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5049 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5050 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5051 + <StringPooling>true</StringPooling>
5052 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
5053 + <FunctionLevelLinking>true</FunctionLevelLinking>
5054 + <CompileAs>Default</CompileAs>
5057 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5058 + <Culture>0x0409</Culture>
5059 + </ResourceCompile>
5061 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5062 + <StackReserveSize>2000000</StackReserveSize>
5063 + <BaseAddress>0x1d000000</BaseAddress>
5066 + <TargetMachine>MachineX86</TargetMachine>
5068 + </ItemDefinitionGroup>
5069 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5071 + <TargetEnvironment>X64</TargetEnvironment>
5074 + <AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5075 + <PreprocessorDefinitions>_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5076 + <StringPooling>true</StringPooling>
5077 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
5078 + <FunctionLevelLinking>true</FunctionLevelLinking>
5079 + <CompileAs>Default</CompileAs>
5082 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5083 + <Culture>0x0409</Culture>
5084 + </ResourceCompile>
5086 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5087 + <StackReserveSize>2000000</StackReserveSize>
5088 + <BaseAddress>0x1d000000</BaseAddress>
5091 + <TargetMachine>MachineX64</TargetMachine>
5093 + </ItemDefinitionGroup>
5095 + <ResourceCompile Include="..\..\PC\python_exe.rc" />
5098 + <ClCompile Include="..\..\PC\WinMain.c" />
5100 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5101 + <ImportGroup Label="ExtensionTargets">
5104 \ No newline at end of file
5105 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//release.props misc/build/Python-2.6.1/PC/VS10.0/release.props
5106 --- misc/build/Python-2.6.1/PC/VS10.0.old//release.props 1970-01-01 01:00:00.000000000 +0100
5107 +++ misc/build/Python-2.6.1/PC/VS10.0/release.props 2010-10-04 12:52:05.281250000 +0200
5109 +<?xml version="1.0" encoding="utf-8"?>
5110 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5111 + <PropertyGroup Label="UserMacros">
5112 + <KillPythonExe>$(OutDir)kill_python.exe</KillPythonExe>
5115 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
5117 + <ItemDefinitionGroup>
5119 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5121 + </ItemDefinitionGroup>
5123 + <BuildMacro Include="KillPythonExe">
5124 + <Value>$(KillPythonExe)</Value>
5128 \ No newline at end of file
5129 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//select.vcxproj misc/build/Python-2.6.1/PC/VS10.0/select.vcxproj
5130 --- misc/build/Python-2.6.1/PC/VS10.0.old//select.vcxproj 1970-01-01 01:00:00.000000000 +0100
5131 +++ misc/build/Python-2.6.1/PC/VS10.0/select.vcxproj 2010-10-04 12:52:05.093750000 +0200
5133 +<?xml version="1.0" encoding="utf-8"?>
5134 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5135 + <ItemGroup Label="ProjectConfigurations">
5136 + <ProjectConfiguration Include="Debug|Win32">
5137 + <Configuration>Debug</Configuration>
5138 + <Platform>Win32</Platform>
5139 + </ProjectConfiguration>
5140 + <ProjectConfiguration Include="Debug|x64">
5141 + <Configuration>Debug</Configuration>
5142 + <Platform>x64</Platform>
5143 + </ProjectConfiguration>
5144 + <ProjectConfiguration Include="PGInstrument|Win32">
5145 + <Configuration>PGInstrument</Configuration>
5146 + <Platform>Win32</Platform>
5147 + </ProjectConfiguration>
5148 + <ProjectConfiguration Include="PGInstrument|x64">
5149 + <Configuration>PGInstrument</Configuration>
5150 + <Platform>x64</Platform>
5151 + </ProjectConfiguration>
5152 + <ProjectConfiguration Include="PGUpdate|Win32">
5153 + <Configuration>PGUpdate</Configuration>
5154 + <Platform>Win32</Platform>
5155 + </ProjectConfiguration>
5156 + <ProjectConfiguration Include="PGUpdate|x64">
5157 + <Configuration>PGUpdate</Configuration>
5158 + <Platform>x64</Platform>
5159 + </ProjectConfiguration>
5160 + <ProjectConfiguration Include="Release|Win32">
5161 + <Configuration>Release</Configuration>
5162 + <Platform>Win32</Platform>
5163 + </ProjectConfiguration>
5164 + <ProjectConfiguration Include="Release|x64">
5165 + <Configuration>Release</Configuration>
5166 + <Platform>x64</Platform>
5167 + </ProjectConfiguration>
5169 + <PropertyGroup Label="Globals">
5170 + <ProjectGuid>{18CAE28C-B454-46C1-87A0-493D91D97F03}</ProjectGuid>
5171 + <RootNamespace>select</RootNamespace>
5172 + <Keyword>Win32Proj</Keyword>
5174 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
5175 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
5176 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5177 + <CharacterSet>NotSet</CharacterSet>
5178 + <WholeProgramOptimization>true</WholeProgramOptimization>
5180 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5181 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5182 + <CharacterSet>NotSet</CharacterSet>
5183 + <WholeProgramOptimization>true</WholeProgramOptimization>
5185 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5186 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5187 + <CharacterSet>NotSet</CharacterSet>
5188 + <WholeProgramOptimization>true</WholeProgramOptimization>
5190 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5191 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5192 + <CharacterSet>NotSet</CharacterSet>
5194 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5195 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5196 + <CharacterSet>NotSet</CharacterSet>
5197 + <WholeProgramOptimization>true</WholeProgramOptimization>
5199 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5200 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5201 + <CharacterSet>NotSet</CharacterSet>
5202 + <WholeProgramOptimization>true</WholeProgramOptimization>
5204 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5205 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5206 + <CharacterSet>NotSet</CharacterSet>
5207 + <WholeProgramOptimization>true</WholeProgramOptimization>
5209 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5210 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5211 + <CharacterSet>NotSet</CharacterSet>
5213 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5214 + <ImportGroup Label="ExtensionSettings">
5216 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
5217 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5218 + <Import Project="pyd.props" />
5219 + <Import Project="pgupdate.props" />
5221 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
5222 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5223 + <Import Project="pyd.props" />
5224 + <Import Project="pginstrument.props" />
5226 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
5227 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5228 + <Import Project="pyd.props" />
5230 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
5231 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5232 + <Import Project="pyd_d.props" />
5234 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
5235 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5236 + <Import Project="pyd.props" />
5237 + <Import Project="x64.props" />
5238 + <Import Project="pgupdate.props" />
5240 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
5241 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5242 + <Import Project="pyd.props" />
5243 + <Import Project="x64.props" />
5244 + <Import Project="pginstrument.props" />
5246 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
5247 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5248 + <Import Project="pyd.props" />
5249 + <Import Project="x64.props" />
5251 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
5252 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5253 + <Import Project="pyd_d.props" />
5254 + <Import Project="x64.props" />
5256 + <PropertyGroup Label="UserMacros" />
5258 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
5259 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5260 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5261 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5262 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5263 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5264 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5265 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5266 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5267 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5268 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5269 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5270 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5271 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5272 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5273 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5274 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5275 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5276 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5277 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5278 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5279 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5280 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5281 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5282 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5284 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5286 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5287 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5288 + <BaseAddress>0x1D110000</BaseAddress>
5290 + </ItemDefinitionGroup>
5291 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5293 + <TargetEnvironment>X64</TargetEnvironment>
5296 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5297 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5298 + <BaseAddress>0x1D110000</BaseAddress>
5300 + </ItemDefinitionGroup>
5301 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5303 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5304 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5305 + <BaseAddress>0x1D110000</BaseAddress>
5307 + </ItemDefinitionGroup>
5308 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
5310 + <TargetEnvironment>X64</TargetEnvironment>
5313 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5314 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5315 + <BaseAddress>0x1D110000</BaseAddress>
5317 + </ItemDefinitionGroup>
5318 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5320 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5321 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5322 + <BaseAddress>0x1D110000</BaseAddress>
5324 + </ItemDefinitionGroup>
5325 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5327 + <TargetEnvironment>X64</TargetEnvironment>
5330 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5331 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5332 + <BaseAddress>0x1D110000</BaseAddress>
5333 + <TargetMachine>MachineX64</TargetMachine>
5335 + </ItemDefinitionGroup>
5336 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5338 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5339 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5340 + <BaseAddress>0x1D110000</BaseAddress>
5342 + </ItemDefinitionGroup>
5343 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5345 + <TargetEnvironment>X64</TargetEnvironment>
5348 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5349 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5350 + <BaseAddress>0x1D110000</BaseAddress>
5351 + <TargetMachine>MachineX64</TargetMachine>
5353 + </ItemDefinitionGroup>
5355 + <ClCompile Include="..\..\Modules\selectmodule.c" />
5357 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5358 + <ImportGroup Label="ExtensionTargets">
5361 \ No newline at end of file
5362 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//sqlite3.vcxproj misc/build/Python-2.6.1/PC/VS10.0/sqlite3.vcxproj
5363 --- misc/build/Python-2.6.1/PC/VS10.0.old//sqlite3.vcxproj 1970-01-01 01:00:00.000000000 +0100
5364 +++ misc/build/Python-2.6.1/PC/VS10.0/sqlite3.vcxproj 2010-10-04 12:52:05.093750000 +0200
5366 +<?xml version="1.0" encoding="utf-8"?>
5367 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5368 + <ItemGroup Label="ProjectConfigurations">
5369 + <ProjectConfiguration Include="Debug|Win32">
5370 + <Configuration>Debug</Configuration>
5371 + <Platform>Win32</Platform>
5372 + </ProjectConfiguration>
5373 + <ProjectConfiguration Include="Debug|x64">
5374 + <Configuration>Debug</Configuration>
5375 + <Platform>x64</Platform>
5376 + </ProjectConfiguration>
5377 + <ProjectConfiguration Include="PGInstrument|Win32">
5378 + <Configuration>PGInstrument</Configuration>
5379 + <Platform>Win32</Platform>
5380 + </ProjectConfiguration>
5381 + <ProjectConfiguration Include="PGInstrument|x64">
5382 + <Configuration>PGInstrument</Configuration>
5383 + <Platform>x64</Platform>
5384 + </ProjectConfiguration>
5385 + <ProjectConfiguration Include="PGUpdate|Win32">
5386 + <Configuration>PGUpdate</Configuration>
5387 + <Platform>Win32</Platform>
5388 + </ProjectConfiguration>
5389 + <ProjectConfiguration Include="PGUpdate|x64">
5390 + <Configuration>PGUpdate</Configuration>
5391 + <Platform>x64</Platform>
5392 + </ProjectConfiguration>
5393 + <ProjectConfiguration Include="Release|Win32">
5394 + <Configuration>Release</Configuration>
5395 + <Platform>Win32</Platform>
5396 + </ProjectConfiguration>
5397 + <ProjectConfiguration Include="Release|x64">
5398 + <Configuration>Release</Configuration>
5399 + <Platform>x64</Platform>
5400 + </ProjectConfiguration>
5402 + <PropertyGroup Label="Globals">
5403 + <ProjectGuid>{A1A295E5-463C-437F-81CA-1F32367685DA}</ProjectGuid>
5404 + <RootNamespace>sqlite3</RootNamespace>
5405 + <Keyword>Win32Proj</Keyword>
5407 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
5408 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
5409 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5410 + <CharacterSet>NotSet</CharacterSet>
5411 + <WholeProgramOptimization>true</WholeProgramOptimization>
5413 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5414 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5415 + <CharacterSet>NotSet</CharacterSet>
5416 + <WholeProgramOptimization>true</WholeProgramOptimization>
5418 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5419 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5420 + <CharacterSet>NotSet</CharacterSet>
5421 + <WholeProgramOptimization>true</WholeProgramOptimization>
5423 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5424 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5425 + <CharacterSet>NotSet</CharacterSet>
5427 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5428 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5429 + <CharacterSet>NotSet</CharacterSet>
5430 + <WholeProgramOptimization>true</WholeProgramOptimization>
5432 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5433 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5434 + <CharacterSet>NotSet</CharacterSet>
5435 + <WholeProgramOptimization>true</WholeProgramOptimization>
5437 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5438 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5439 + <CharacterSet>NotSet</CharacterSet>
5440 + <WholeProgramOptimization>true</WholeProgramOptimization>
5442 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5443 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5444 + <CharacterSet>NotSet</CharacterSet>
5446 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5447 + <ImportGroup Label="ExtensionSettings">
5449 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
5450 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5451 + <Import Project="pyd.props" />
5452 + <Import Project="pgupdate.props" />
5454 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
5455 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5456 + <Import Project="pyd.props" />
5457 + <Import Project="pginstrument.props" />
5459 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
5460 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5461 + <Import Project="pyd.props" />
5463 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
5464 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5465 + <Import Project="pyd_d.props" />
5467 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
5468 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5469 + <Import Project="pyd.props" />
5470 + <Import Project="x64.props" />
5471 + <Import Project="pgupdate.props" />
5473 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
5474 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5475 + <Import Project="pyd.props" />
5476 + <Import Project="x64.props" />
5477 + <Import Project="pginstrument.props" />
5479 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
5480 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5481 + <Import Project="pyd.props" />
5482 + <Import Project="x64.props" />
5484 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
5485 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5486 + <Import Project="pyd_d.props" />
5487 + <Import Project="x64.props" />
5489 + <PropertyGroup Label="UserMacros" />
5491 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
5492 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5493 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5494 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5495 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5496 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5497 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5498 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5499 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5500 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5501 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5502 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5503 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5504 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5505 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5506 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5507 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5508 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5509 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5510 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5511 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5512 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5513 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5514 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5515 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5517 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5519 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5520 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5523 + <OutputFile>$(OutDir)$(ProjectName)_d.dll</OutputFile>
5525 + </ItemDefinitionGroup>
5526 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5528 + <TargetEnvironment>X64</TargetEnvironment>
5531 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5532 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5535 + <OutputFile>$(OutDir)$(ProjectName)_d.dll</OutputFile>
5537 + </ItemDefinitionGroup>
5538 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5540 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5541 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5544 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5546 + </ItemDefinitionGroup>
5547 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
5549 + <TargetEnvironment>X64</TargetEnvironment>
5552 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5553 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5556 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5558 + </ItemDefinitionGroup>
5559 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5561 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5562 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5565 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5567 + </ItemDefinitionGroup>
5568 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5570 + <TargetEnvironment>X64</TargetEnvironment>
5573 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5574 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5576 + </ItemDefinitionGroup>
5577 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5579 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5580 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5583 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5585 + </ItemDefinitionGroup>
5586 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5588 + <TargetEnvironment>X64</TargetEnvironment>
5591 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5592 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5594 + </ItemDefinitionGroup>
5596 + <ClInclude Include="$(sqlite3Dir)\sqlite3.h" />
5597 + <ClInclude Include="$(sqlite3Dir)\sqlite3ext.h" />
5600 + <ClCompile Include="$(sqlite3Dir)\sqlite3.c" />
5602 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5603 + <ImportGroup Label="ExtensionTargets">
5606 \ No newline at end of file
5607 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//unicodedata.vcxproj misc/build/Python-2.6.1/PC/VS10.0/unicodedata.vcxproj
5608 --- misc/build/Python-2.6.1/PC/VS10.0.old//unicodedata.vcxproj 1970-01-01 01:00:00.000000000 +0100
5609 +++ misc/build/Python-2.6.1/PC/VS10.0/unicodedata.vcxproj 2010-10-04 12:52:05.109375000 +0200
5611 +<?xml version="1.0" encoding="utf-8"?>
5612 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5613 + <ItemGroup Label="ProjectConfigurations">
5614 + <ProjectConfiguration Include="Debug|Win32">
5615 + <Configuration>Debug</Configuration>
5616 + <Platform>Win32</Platform>
5617 + </ProjectConfiguration>
5618 + <ProjectConfiguration Include="Debug|x64">
5619 + <Configuration>Debug</Configuration>
5620 + <Platform>x64</Platform>
5621 + </ProjectConfiguration>
5622 + <ProjectConfiguration Include="PGInstrument|Win32">
5623 + <Configuration>PGInstrument</Configuration>
5624 + <Platform>Win32</Platform>
5625 + </ProjectConfiguration>
5626 + <ProjectConfiguration Include="PGInstrument|x64">
5627 + <Configuration>PGInstrument</Configuration>
5628 + <Platform>x64</Platform>
5629 + </ProjectConfiguration>
5630 + <ProjectConfiguration Include="PGUpdate|Win32">
5631 + <Configuration>PGUpdate</Configuration>
5632 + <Platform>Win32</Platform>
5633 + </ProjectConfiguration>
5634 + <ProjectConfiguration Include="PGUpdate|x64">
5635 + <Configuration>PGUpdate</Configuration>
5636 + <Platform>x64</Platform>
5637 + </ProjectConfiguration>
5638 + <ProjectConfiguration Include="Release|Win32">
5639 + <Configuration>Release</Configuration>
5640 + <Platform>Win32</Platform>
5641 + </ProjectConfiguration>
5642 + <ProjectConfiguration Include="Release|x64">
5643 + <Configuration>Release</Configuration>
5644 + <Platform>x64</Platform>
5645 + </ProjectConfiguration>
5647 + <PropertyGroup Label="Globals">
5648 + <ProjectGuid>{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}</ProjectGuid>
5649 + <RootNamespace>unicodedata</RootNamespace>
5650 + <Keyword>Win32Proj</Keyword>
5652 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
5653 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
5654 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5655 + <CharacterSet>NotSet</CharacterSet>
5656 + <WholeProgramOptimization>true</WholeProgramOptimization>
5658 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5659 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5660 + <CharacterSet>NotSet</CharacterSet>
5661 + <WholeProgramOptimization>true</WholeProgramOptimization>
5663 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5664 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5665 + <CharacterSet>NotSet</CharacterSet>
5666 + <WholeProgramOptimization>true</WholeProgramOptimization>
5668 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5669 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5670 + <CharacterSet>NotSet</CharacterSet>
5672 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5673 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5674 + <CharacterSet>NotSet</CharacterSet>
5675 + <WholeProgramOptimization>true</WholeProgramOptimization>
5677 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5678 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5679 + <CharacterSet>NotSet</CharacterSet>
5680 + <WholeProgramOptimization>true</WholeProgramOptimization>
5682 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5683 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5684 + <CharacterSet>NotSet</CharacterSet>
5685 + <WholeProgramOptimization>true</WholeProgramOptimization>
5687 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5688 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5689 + <CharacterSet>NotSet</CharacterSet>
5691 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5692 + <ImportGroup Label="ExtensionSettings">
5694 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
5695 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5696 + <Import Project="pyd.props" />
5697 + <Import Project="pgupdate.props" />
5699 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
5700 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5701 + <Import Project="pyd.props" />
5702 + <Import Project="pginstrument.props" />
5704 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
5705 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5706 + <Import Project="pyd.props" />
5708 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
5709 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5710 + <Import Project="pyd_d.props" />
5712 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
5713 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5714 + <Import Project="pyd.props" />
5715 + <Import Project="x64.props" />
5716 + <Import Project="pgupdate.props" />
5718 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
5719 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5720 + <Import Project="pyd.props" />
5721 + <Import Project="x64.props" />
5722 + <Import Project="pginstrument.props" />
5724 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
5725 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5726 + <Import Project="pyd.props" />
5727 + <Import Project="x64.props" />
5729 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
5730 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5731 + <Import Project="pyd_d.props" />
5732 + <Import Project="x64.props" />
5734 + <PropertyGroup Label="UserMacros" />
5736 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
5737 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5738 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5739 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5740 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5741 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5742 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5743 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5744 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5745 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5746 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5747 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5748 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5749 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5750 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5751 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5752 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5753 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5754 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5755 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5756 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5757 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5758 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5759 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5760 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5762 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5764 + <BaseAddress>0x1D120000</BaseAddress>
5766 + </ItemDefinitionGroup>
5767 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5769 + <TargetEnvironment>X64</TargetEnvironment>
5772 + <BaseAddress>0x1D120000</BaseAddress>
5774 + </ItemDefinitionGroup>
5775 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5777 + <BaseAddress>0x1D120000</BaseAddress>
5779 + </ItemDefinitionGroup>
5780 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
5782 + <TargetEnvironment>X64</TargetEnvironment>
5785 + <BaseAddress>0x1D120000</BaseAddress>
5787 + </ItemDefinitionGroup>
5788 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5790 + <BaseAddress>0x1D120000</BaseAddress>
5792 + </ItemDefinitionGroup>
5793 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5795 + <TargetEnvironment>X64</TargetEnvironment>
5798 + <BaseAddress>0x1D120000</BaseAddress>
5799 + <TargetMachine>MachineX64</TargetMachine>
5801 + </ItemDefinitionGroup>
5802 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5804 + <BaseAddress>0x1D120000</BaseAddress>
5806 + </ItemDefinitionGroup>
5807 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5809 + <TargetEnvironment>X64</TargetEnvironment>
5812 + <BaseAddress>0x1D120000</BaseAddress>
5813 + <TargetMachine>MachineX64</TargetMachine>
5815 + </ItemDefinitionGroup>
5817 + <ClInclude Include="..\..\Modules\unicodedata_db.h" />
5818 + <ClInclude Include="..\..\Modules\unicodename_db.h" />
5821 + <ClCompile Include="..\..\Modules\unicodedata.c" />
5823 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5824 + <ImportGroup Label="ExtensionTargets">
5827 \ No newline at end of file
5828 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//w9xpopen.vcxproj misc/build/Python-2.6.1/PC/VS10.0/w9xpopen.vcxproj
5829 --- misc/build/Python-2.6.1/PC/VS10.0.old//w9xpopen.vcxproj 1970-01-01 01:00:00.000000000 +0100
5830 +++ misc/build/Python-2.6.1/PC/VS10.0/w9xpopen.vcxproj 2010-10-04 12:52:05.109375000 +0200
5832 +<?xml version="1.0" encoding="utf-8"?>
5833 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5834 + <ItemGroup Label="ProjectConfigurations">
5835 + <ProjectConfiguration Include="Debug|Win32">
5836 + <Configuration>Debug</Configuration>
5837 + <Platform>Win32</Platform>
5838 + </ProjectConfiguration>
5839 + <ProjectConfiguration Include="Debug|x64">
5840 + <Configuration>Debug</Configuration>
5841 + <Platform>x64</Platform>
5842 + </ProjectConfiguration>
5843 + <ProjectConfiguration Include="PGInstrument|Win32">
5844 + <Configuration>PGInstrument</Configuration>
5845 + <Platform>Win32</Platform>
5846 + </ProjectConfiguration>
5847 + <ProjectConfiguration Include="PGInstrument|x64">
5848 + <Configuration>PGInstrument</Configuration>
5849 + <Platform>x64</Platform>
5850 + </ProjectConfiguration>
5851 + <ProjectConfiguration Include="PGUpdate|Win32">
5852 + <Configuration>PGUpdate</Configuration>
5853 + <Platform>Win32</Platform>
5854 + </ProjectConfiguration>
5855 + <ProjectConfiguration Include="PGUpdate|x64">
5856 + <Configuration>PGUpdate</Configuration>
5857 + <Platform>x64</Platform>
5858 + </ProjectConfiguration>
5859 + <ProjectConfiguration Include="Release|Win32">
5860 + <Configuration>Release</Configuration>
5861 + <Platform>Win32</Platform>
5862 + </ProjectConfiguration>
5863 + <ProjectConfiguration Include="Release|x64">
5864 + <Configuration>Release</Configuration>
5865 + <Platform>x64</Platform>
5866 + </ProjectConfiguration>
5868 + <PropertyGroup Label="Globals">
5869 + <ProjectGuid>{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}</ProjectGuid>
5870 + <RootNamespace>w9xpopen</RootNamespace>
5872 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
5873 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
5874 + <ConfigurationType>Application</ConfigurationType>
5875 + <UseOfMfc>false</UseOfMfc>
5876 + <CharacterSet>MultiByte</CharacterSet>
5878 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5879 + <ConfigurationType>Application</ConfigurationType>
5880 + <UseOfMfc>false</UseOfMfc>
5881 + <CharacterSet>MultiByte</CharacterSet>
5883 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5884 + <ConfigurationType>Application</ConfigurationType>
5885 + <UseOfMfc>false</UseOfMfc>
5886 + <CharacterSet>MultiByte</CharacterSet>
5888 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5889 + <ConfigurationType>Application</ConfigurationType>
5890 + <UseOfMfc>false</UseOfMfc>
5891 + <CharacterSet>NotSet</CharacterSet>
5893 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5894 + <ConfigurationType>Application</ConfigurationType>
5895 + <UseOfMfc>false</UseOfMfc>
5896 + <CharacterSet>MultiByte</CharacterSet>
5898 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5899 + <ConfigurationType>Application</ConfigurationType>
5900 + <UseOfMfc>false</UseOfMfc>
5901 + <CharacterSet>MultiByte</CharacterSet>
5903 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5904 + <ConfigurationType>Application</ConfigurationType>
5905 + <UseOfMfc>false</UseOfMfc>
5906 + <CharacterSet>MultiByte</CharacterSet>
5908 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5909 + <ConfigurationType>Application</ConfigurationType>
5910 + <UseOfMfc>false</UseOfMfc>
5911 + <CharacterSet>MultiByte</CharacterSet>
5913 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5914 + <ImportGroup Label="ExtensionSettings">
5916 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
5917 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5918 + <Import Project="pyproject.props" />
5919 + <Import Project="release.props" />
5920 + <Import Project="pgupdate.props" />
5922 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
5923 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5924 + <Import Project="pyproject.props" />
5925 + <Import Project="release.props" />
5926 + <Import Project="pginstrument.props" />
5928 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
5929 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5930 + <Import Project="pyproject.props" />
5931 + <Import Project="release.props" />
5933 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
5934 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5935 + <Import Project="pyproject.props" />
5936 + <Import Project="debug.props" />
5938 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
5939 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5940 + <Import Project="pyproject.props" />
5941 + <Import Project="x64.props" />
5942 + <Import Project="release.props" />
5943 + <Import Project="pgupdate.props" />
5945 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
5946 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5947 + <Import Project="pyproject.props" />
5948 + <Import Project="x64.props" />
5949 + <Import Project="release.props" />
5950 + <Import Project="pginstrument.props" />
5952 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
5953 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5954 + <Import Project="pyproject.props" />
5955 + <Import Project="x64.props" />
5956 + <Import Project="release.props" />
5958 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
5959 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
5960 + <Import Project="pyproject.props" />
5961 + <Import Project="x64.props" />
5962 + <Import Project="debug.props" />
5964 + <PropertyGroup Label="UserMacros" />
5966 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
5967 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5968 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5969 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
5970 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5971 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5972 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
5973 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5974 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5975 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
5976 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5977 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5978 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
5979 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5980 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5981 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
5982 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5983 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5984 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
5985 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
5986 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5987 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
5988 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
5989 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5990 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
5992 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5994 + <Optimization>Disabled</Optimization>
5995 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
5996 + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
5999 + <SubSystem>Console</SubSystem>
6001 + </ItemDefinitionGroup>
6002 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6004 + <TargetEnvironment>X64</TargetEnvironment>
6007 + <Optimization>Disabled</Optimization>
6008 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
6009 + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
6012 + <SubSystem>Console</SubSystem>
6014 + </ItemDefinitionGroup>
6015 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6017 + <Optimization>MaxSpeed</Optimization>
6018 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6019 + <StringPooling>true</StringPooling>
6020 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6021 + <FunctionLevelLinking>true</FunctionLevelLinking>
6024 + <GenerateDebugInformation>false</GenerateDebugInformation>
6025 + <SubSystem>Console</SubSystem>
6027 + </ItemDefinitionGroup>
6028 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
6030 + <TargetEnvironment>X64</TargetEnvironment>
6033 + <Optimization>MaxSpeed</Optimization>
6034 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6035 + <StringPooling>true</StringPooling>
6036 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6037 + <FunctionLevelLinking>true</FunctionLevelLinking>
6040 + <GenerateDebugInformation>false</GenerateDebugInformation>
6041 + <SubSystem>Console</SubSystem>
6043 + </ItemDefinitionGroup>
6044 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
6046 + <Optimization>MaxSpeed</Optimization>
6047 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6048 + <StringPooling>true</StringPooling>
6049 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6050 + <FunctionLevelLinking>true</FunctionLevelLinking>
6053 + <GenerateDebugInformation>false</GenerateDebugInformation>
6054 + <SubSystem>Console</SubSystem>
6058 + </ItemDefinitionGroup>
6059 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
6061 + <TargetEnvironment>X64</TargetEnvironment>
6064 + <Optimization>MaxSpeed</Optimization>
6065 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6066 + <StringPooling>true</StringPooling>
6067 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6068 + <FunctionLevelLinking>true</FunctionLevelLinking>
6071 + <GenerateDebugInformation>false</GenerateDebugInformation>
6072 + <SubSystem>Console</SubSystem>
6075 + <TargetMachine>MachineX64</TargetMachine>
6077 + </ItemDefinitionGroup>
6078 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
6080 + <Optimization>MaxSpeed</Optimization>
6081 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6082 + <StringPooling>true</StringPooling>
6083 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6084 + <FunctionLevelLinking>true</FunctionLevelLinking>
6087 + <GenerateDebugInformation>false</GenerateDebugInformation>
6088 + <SubSystem>Console</SubSystem>
6092 + </ItemDefinitionGroup>
6093 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
6095 + <TargetEnvironment>X64</TargetEnvironment>
6098 + <Optimization>MaxSpeed</Optimization>
6099 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6100 + <StringPooling>true</StringPooling>
6101 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6102 + <FunctionLevelLinking>true</FunctionLevelLinking>
6105 + <GenerateDebugInformation>false</GenerateDebugInformation>
6106 + <SubSystem>Console</SubSystem>
6109 + <TargetMachine>MachineX64</TargetMachine>
6111 + </ItemDefinitionGroup>
6113 + <ClCompile Include="..\..\PC\w9xpopen.c" />
6115 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
6116 + <ImportGroup Label="ExtensionTargets">
6119 \ No newline at end of file
6120 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//winsound.vcxproj misc/build/Python-2.6.1/PC/VS10.0/winsound.vcxproj
6121 --- misc/build/Python-2.6.1/PC/VS10.0.old//winsound.vcxproj 1970-01-01 01:00:00.000000000 +0100
6122 +++ misc/build/Python-2.6.1/PC/VS10.0/winsound.vcxproj 2010-10-04 12:52:05.140625000 +0200
6124 +<?xml version="1.0" encoding="utf-8"?>
6125 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6126 + <ItemGroup Label="ProjectConfigurations">
6127 + <ProjectConfiguration Include="Debug|Win32">
6128 + <Configuration>Debug</Configuration>
6129 + <Platform>Win32</Platform>
6130 + </ProjectConfiguration>
6131 + <ProjectConfiguration Include="Debug|x64">
6132 + <Configuration>Debug</Configuration>
6133 + <Platform>x64</Platform>
6134 + </ProjectConfiguration>
6135 + <ProjectConfiguration Include="PGInstrument|Win32">
6136 + <Configuration>PGInstrument</Configuration>
6137 + <Platform>Win32</Platform>
6138 + </ProjectConfiguration>
6139 + <ProjectConfiguration Include="PGInstrument|x64">
6140 + <Configuration>PGInstrument</Configuration>
6141 + <Platform>x64</Platform>
6142 + </ProjectConfiguration>
6143 + <ProjectConfiguration Include="PGUpdate|Win32">
6144 + <Configuration>PGUpdate</Configuration>
6145 + <Platform>Win32</Platform>
6146 + </ProjectConfiguration>
6147 + <ProjectConfiguration Include="PGUpdate|x64">
6148 + <Configuration>PGUpdate</Configuration>
6149 + <Platform>x64</Platform>
6150 + </ProjectConfiguration>
6151 + <ProjectConfiguration Include="Release|Win32">
6152 + <Configuration>Release</Configuration>
6153 + <Platform>Win32</Platform>
6154 + </ProjectConfiguration>
6155 + <ProjectConfiguration Include="Release|x64">
6156 + <Configuration>Release</Configuration>
6157 + <Platform>x64</Platform>
6158 + </ProjectConfiguration>
6160 + <PropertyGroup Label="Globals">
6161 + <ProjectGuid>{28B5D777-DDF2-4B6B-B34F-31D938813856}</ProjectGuid>
6162 + <RootNamespace>winsound</RootNamespace>
6163 + <Keyword>Win32Proj</Keyword>
6165 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6166 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="Configuration">
6167 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6168 + <CharacterSet>NotSet</CharacterSet>
6169 + <WholeProgramOptimization>true</WholeProgramOptimization>
6171 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
6172 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6173 + <CharacterSet>NotSet</CharacterSet>
6174 + <WholeProgramOptimization>true</WholeProgramOptimization>
6176 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
6177 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6178 + <CharacterSet>NotSet</CharacterSet>
6179 + <WholeProgramOptimization>true</WholeProgramOptimization>
6181 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
6182 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6183 + <CharacterSet>NotSet</CharacterSet>
6185 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
6186 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6187 + <CharacterSet>NotSet</CharacterSet>
6188 + <WholeProgramOptimization>true</WholeProgramOptimization>
6190 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
6191 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6192 + <CharacterSet>NotSet</CharacterSet>
6193 + <WholeProgramOptimization>true</WholeProgramOptimization>
6195 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
6196 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6197 + <CharacterSet>NotSet</CharacterSet>
6198 + <WholeProgramOptimization>true</WholeProgramOptimization>
6200 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
6201 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6202 + <CharacterSet>NotSet</CharacterSet>
6204 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
6205 + <ImportGroup Label="ExtensionSettings">
6207 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" Label="PropertySheets">
6208 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6209 + <Import Project="pyd.props" />
6210 + <Import Project="pgupdate.props" />
6212 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="PropertySheets">
6213 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6214 + <Import Project="pyd.props" />
6215 + <Import Project="pginstrument.props" />
6217 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
6218 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6219 + <Import Project="pyd.props" />
6221 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
6222 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6223 + <Import Project="pyd_d.props" />
6225 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="PropertySheets">
6226 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6227 + <Import Project="pyd.props" />
6228 + <Import Project="x64.props" />
6229 + <Import Project="pgupdate.props" />
6231 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="PropertySheets">
6232 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6233 + <Import Project="pyd.props" />
6234 + <Import Project="x64.props" />
6235 + <Import Project="pginstrument.props" />
6237 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
6238 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6239 + <Import Project="pyd.props" />
6240 + <Import Project="x64.props" />
6242 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
6243 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6244 + <Import Project="pyd_d.props" />
6245 + <Import Project="x64.props" />
6247 + <PropertyGroup Label="UserMacros" />
6249 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
6250 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
6251 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
6252 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
6253 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
6254 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
6255 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
6256 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
6257 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
6258 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" />
6259 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
6260 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
6261 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" />
6262 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
6263 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
6264 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'" />
6265 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
6266 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
6267 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" />
6268 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
6269 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
6270 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
6271 + <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
6272 + <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
6273 + <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
6275 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
6277 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6279 + </ItemDefinitionGroup>
6280 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6282 + <TargetEnvironment>X64</TargetEnvironment>
6285 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6287 + </ItemDefinitionGroup>
6288 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6290 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6292 + </ItemDefinitionGroup>
6293 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
6295 + <TargetEnvironment>X64</TargetEnvironment>
6298 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6300 + </ItemDefinitionGroup>
6301 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
6303 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6305 + </ItemDefinitionGroup>
6306 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
6308 + <TargetEnvironment>X64</TargetEnvironment>
6311 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6312 + <TargetMachine>MachineX64</TargetMachine>
6314 + </ItemDefinitionGroup>
6315 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
6317 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6319 + </ItemDefinitionGroup>
6320 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
6322 + <TargetEnvironment>X64</TargetEnvironment>
6325 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6326 + <TargetMachine>MachineX64</TargetMachine>
6328 + </ItemDefinitionGroup>
6330 + <ClCompile Include="..\..\PC\winsound.c" />
6332 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
6333 + <ImportGroup Label="ExtensionTargets">
6336 \ No newline at end of file
6337 diff -uN misc/build/Python-2.6.1/PC/VS10.0.old//x64.props misc/build/Python-2.6.1/PC/VS10.0/x64.props
6338 --- misc/build/Python-2.6.1/PC/VS10.0.old//x64.props 1970-01-01 01:00:00.000000000 +0100
6339 +++ misc/build/Python-2.6.1/PC/VS10.0/x64.props 2010-10-04 12:52:05.296875000 +0200
6341 +<?xml version="1.0" encoding="utf-8"?>
6342 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6343 + <PropertyGroup Label="UserMacros">
6344 + <PythonExe>$(HOST_PYTHON)</PythonExe>
6347 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
6348 + <_PropertySheetDisplayName>amd64</_PropertySheetDisplayName>
6349 + <OutDir>$(SolutionDir)\amd64\</OutDir>
6350 + <IntDir>$(SolutionDir)$(PlatformName)-temp-$(Configuration)\$(ProjectName)\</IntDir>
6352 + <ItemDefinitionGroup>
6354 + <AdditionalOptions>/USECL:MS_OPTERON /GS- %(AdditionalOptions)</AdditionalOptions>
6355 + <PreprocessorDefinitions>_WIN64;_M_X64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
6358 + <TargetMachine>MachineX64</TargetMachine>
6360 + </ItemDefinitionGroup>
6362 + <BuildMacro Include="PythonExe">
6363 + <Value>$(PythonExe)</Value>
6367 \ No newline at end of file