Page Breaks: avoid flickering of the tab by drawing it over the line
[LibreOffice.git] / python / Python-2.6.1-vc10.patch
blob0f4a0d021c6c81cb7a7a2a2cb8d50d95ad45b2bd
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
3 @@ -82,8 +82,8 @@
4 if ((do_unlink = make_buildinfo2()))
5 strcat_s(command, CMD_SIZE, "getbuildinfo2.c -DSUBWCREV ");
6 else
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);
13 if (do_unlink)
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
16 @@ -23,7 +23,7 @@
17 #include <sys/locking.h>
19 #ifdef _MSC_VER
20 -#if _MSC_VER >= 1500
21 +#if _MSC_VER == 1500
22 #include <crtassem.h>
23 #endif
24 #endif
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
27 @@ -0,0 +1,258 @@
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)
58 + ret = []
59 + for p in entries:
60 + fname = os.path.abspath(os.path.join(p, filename))
61 + if os.path.isfile(fname) and fname not in ret:
62 + ret.append(fname)
63 + if extras:
64 + for p in extras:
65 + fname = os.path.abspath(os.path.join(p, filename))
66 + if os.path.isfile(fname) and fname not in ret:
67 + ret.append(fname)
68 + return 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
73 +# is available.
74 +def find_working_perl(perls):
75 + for perl in perls:
76 + fh = os.popen(perl + ' -e "use Win32;"')
77 + fh.read()
78 + rc = fh.close()
79 + if rc:
80 + continue
81 + return perl
82 + print("Can not find a suitable PERL:")
83 + if perls:
84 + print(" the following perl interpreters were found:")
85 + for p in perls:
86 + print(" ", p)
87 + print(" None of these versions appear suitable for building OpenSSL")
88 + else:
89 + print(" NO perl interpreters were found on this machine at all!")
90 + print(" Please install ActivePerl and ensure it appears on your path")
91 + return None
93 +# Locate the best SSL directory given a few roots to look into.
94 +def find_best_ssl_dir(sources):
95 + candidates = []
96 + for s in sources:
97 + try:
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)
101 + except os.error:
102 + fnames = []
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.
108 + best_parts = []
109 + best_name = None
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:
114 + continue
115 + if parts > best_parts:
116 + best_parts = parts
117 + best_name = c
118 + if best_name is not None:
119 + print("Found an SSL directory at '%s'" % (best_name,))
120 + else:
121 + print("Could not find an SSL directory in '%s'" % (sources,))
122 + sys.stdout.flush()
123 + return best_name
125 +def create_makefile64(makefile, m32):
126 + """Create and fix makefile for 64bit
128 + Replace 32 with 64bit directories
129 + """
130 + if not os.path.isfile(m32):
131 + return
132 + # 2.4 compatibility
133 + fin = open(m32)
134 + if 1: # with open(m32) as fin:
135 + fout = open(makefile, 'w')
136 + if 1: # with open(makefile, 'w') as fout:
137 + for line in fin:
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", "")
146 + fout.write(line)
147 + os.unlink(m32)
149 +def fix_makefile(makefile):
150 + """Fix some stuff in all makefiles
151 + """
152 + if not os.path.isfile(makefile):
153 + return
154 + # 2.4 compatibility
155 + fin = open(makefile)
156 + if 1: # with open(makefile) as fin:
157 + lines = fin.readlines()
158 + fin.close()
159 + fout = open(makefile, 'w')
160 + if 1: # with open(makefile, 'w') as fout:
161 + for line in lines:
162 + if line.startswith("PERL="):
163 + continue
164 + if line.startswith("CP="):
165 + line = "CP=copy\n"
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
174 + line = line + '\n'
175 + fout.write(line)
176 + fout.close()
178 +def run_configure(configure, do_script):
179 + print("perl Configure "+configure)
180 + os.system("perl Configure "+configure)
181 + print(do_script)
182 + os.system(do_script)
184 +def main():
185 + build_all = "-a" in sys.argv
186 + if sys.argv[1] == "Release":
187 + debug = False
188 + elif sys.argv[1] == "Debug":
189 + debug = True
190 + else:
191 + raise ValueError(str(sys.argv))
193 + if sys.argv[2] == "Win32":
194 + arch = "x86"
195 + configure = "VC-WIN32"
196 + do_script = "ms\\do_nasm"
197 + makefile="ms\\nt.mak"
198 + m32 = makefile
199 + elif sys.argv[2] == "x64":
200 + arch="amd64"
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"
206 + else:
207 + raise ValueError(str(sys.argv))
209 + make_flags = ""
210 + if build_all:
211 + make_flags = "-a"
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)
216 + if perl is None:
217 + print("No Perl installation was found. Existing Makefiles are used.")
219 + print("Found a working perl at '%s'" % (perl,))
220 + sys.stdout.flush()
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:
224 + sys.exit(1)
226 + old_cd = os.getcwd()
227 + try:
228 + os.chdir(ssl_dir)
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):
231 + os.unlink(m32)
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:
237 + if perl is None:
238 + print("Perl is required to build the makefiles!")
239 + sys.exit(1)
241 + print("Creating the makefiles...")
242 + sys.stdout.flush()
243 + # Put our working Perl at the front of our path
244 + os.environ["PATH"] = os.path.dirname(perl) + \
245 + os.pathsep + \
246 + os.environ["PATH"]
247 + run_configure(configure, do_script)
248 + if debug:
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)
261 + # Now run make.
262 + if arch == "amd64":
263 + rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm")
264 + if rc:
265 + print("ml64 assembler has failed.")
266 + sys.exit(rc)
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)
274 + sys.stdout.flush()
275 + rc = os.system(makeCommand)
276 + if rc:
277 + print("Executing "+makefile+" failed")
278 + print(rc)
279 + sys.exit(rc)
280 + finally:
281 + os.chdir(old_cd)
282 + sys.exit(rc)
284 +if __name__=='__main__':
285 + sys.exit(0)
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
289 @@ -0,0 +1,289 @@
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>
325 + </ItemGroup>
326 + <PropertyGroup Label="Globals">
327 + <ProjectGuid>{0E9791DB-593A-465F-98BC-681011311618}</ProjectGuid>
328 + <RootNamespace>_ctypes</RootNamespace>
329 + <Keyword>Win32Proj</Keyword>
330 + </PropertyGroup>
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>
336 + </PropertyGroup>
337 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
338 + <ConfigurationType>DynamicLibrary</ConfigurationType>
339 + <CharacterSet>NotSet</CharacterSet>
340 + <WholeProgramOptimization>true</WholeProgramOptimization>
341 + </PropertyGroup>
342 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
343 + <ConfigurationType>DynamicLibrary</ConfigurationType>
344 + <CharacterSet>NotSet</CharacterSet>
345 + <WholeProgramOptimization>true</WholeProgramOptimization>
346 + </PropertyGroup>
347 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
348 + <ConfigurationType>DynamicLibrary</ConfigurationType>
349 + <CharacterSet>NotSet</CharacterSet>
350 + </PropertyGroup>
351 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
352 + <ConfigurationType>DynamicLibrary</ConfigurationType>
353 + <CharacterSet>NotSet</CharacterSet>
354 + <WholeProgramOptimization>true</WholeProgramOptimization>
355 + </PropertyGroup>
356 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
357 + <ConfigurationType>DynamicLibrary</ConfigurationType>
358 + <CharacterSet>NotSet</CharacterSet>
359 + <WholeProgramOptimization>true</WholeProgramOptimization>
360 + </PropertyGroup>
361 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
362 + <ConfigurationType>DynamicLibrary</ConfigurationType>
363 + <CharacterSet>NotSet</CharacterSet>
364 + <WholeProgramOptimization>true</WholeProgramOptimization>
365 + </PropertyGroup>
366 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
367 + <ConfigurationType>DynamicLibrary</ConfigurationType>
368 + <CharacterSet>NotSet</CharacterSet>
369 + </PropertyGroup>
370 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
371 + <ImportGroup Label="ExtensionSettings">
372 + </ImportGroup>
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" />
377 + </ImportGroup>
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" />
382 + </ImportGroup>
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" />
386 + </ImportGroup>
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" />
390 + </ImportGroup>
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" />
396 + </ImportGroup>
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" />
402 + </ImportGroup>
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" />
407 + </ImportGroup>
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" />
412 + </ImportGroup>
413 + <PropertyGroup Label="UserMacros" />
414 + <PropertyGroup>
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'" />
440 + </PropertyGroup>
441 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
442 + <ClCompile>
443 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
444 + </ClCompile>
445 + <Link>
446 + <BaseAddress>0x1D1A0000</BaseAddress>
447 + </Link>
448 + </ItemDefinitionGroup>
449 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
450 + <Midl>
451 + <TargetEnvironment>X64</TargetEnvironment>
452 + </Midl>
453 + <ClCompile>
454 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
455 + </ClCompile>
456 + <Link>
457 + <BaseAddress>0x1D1A0000</BaseAddress>
458 + </Link>
459 + </ItemDefinitionGroup>
460 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
461 + <ClCompile>
462 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
463 + </ClCompile>
464 + <Link>
465 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
466 + <SubSystem>NotSet</SubSystem>
467 + <BaseAddress>0x1D1A0000</BaseAddress>
468 + </Link>
469 + </ItemDefinitionGroup>
470 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
471 + <Midl>
472 + <TargetEnvironment>X64</TargetEnvironment>
473 + </Midl>
474 + <ClCompile>
475 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
476 + </ClCompile>
477 + <Link>
478 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
479 + <SubSystem>NotSet</SubSystem>
480 + <BaseAddress>0x1D1A0000</BaseAddress>
481 + </Link>
482 + </ItemDefinitionGroup>
483 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
484 + <ClCompile>
485 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
486 + </ClCompile>
487 + <Link>
488 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
489 + <SubSystem>NotSet</SubSystem>
490 + <BaseAddress>0x1D1A0000</BaseAddress>
491 + </Link>
492 + </ItemDefinitionGroup>
493 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
494 + <Midl>
495 + <TargetEnvironment>X64</TargetEnvironment>
496 + </Midl>
497 + <ClCompile>
498 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
499 + </ClCompile>
500 + <Link>
501 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
502 + <SubSystem>NotSet</SubSystem>
503 + <BaseAddress>0x1D1A0000</BaseAddress>
504 + <TargetMachine>MachineX64</TargetMachine>
505 + </Link>
506 + </ItemDefinitionGroup>
507 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
508 + <ClCompile>
509 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
510 + </ClCompile>
511 + <Link>
512 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
513 + <SubSystem>NotSet</SubSystem>
514 + <BaseAddress>0x1D1A0000</BaseAddress>
515 + </Link>
516 + </ItemDefinitionGroup>
517 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
518 + <Midl>
519 + <TargetEnvironment>X64</TargetEnvironment>
520 + </Midl>
521 + <ClCompile>
522 + <AdditionalIncludeDirectories>..;..\..\Modules\_ctypes\libffi_msvc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
523 + </ClCompile>
524 + <Link>
525 + <AdditionalOptions>/EXPORT:DllGetClassObject,PRIVATE /EXPORT:DllCanUnloadNow,PRIVATE %(AdditionalOptions)</AdditionalOptions>
526 + <SubSystem>NotSet</SubSystem>
527 + <BaseAddress>0x1D1A0000</BaseAddress>
528 + <TargetMachine>MachineX64</TargetMachine>
529 + </Link>
530 + </ItemDefinitionGroup>
531 + <ItemGroup>
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" />
538 + </ItemGroup>
539 + <ItemGroup>
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>
553 + </ClCompile>
554 + </ItemGroup>
555 + <ItemGroup>
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)"
559 +</Command>
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)"
563 +</Command>
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)"
567 +</Command>
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)"
571 +</Command>
572 + <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(IntDir)win64.obj;%(Outputs)</Outputs>
573 + </CustomBuild>
574 + </ItemGroup>
575 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
576 + <ImportGroup Label="ExtensionTargets">
577 + </ImportGroup>
578 +</Project>
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
583 @@ -0,0 +1,187 @@
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>
619 + </ItemGroup>
620 + <PropertyGroup Label="Globals">
621 + <ProjectGuid>{9EC7190A-249F-4180-A900-548FDCF3055F}</ProjectGuid>
622 + <RootNamespace>_ctypes_test</RootNamespace>
623 + <Keyword>Win32Proj</Keyword>
624 + </PropertyGroup>
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>
630 + </PropertyGroup>
631 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
632 + <ConfigurationType>DynamicLibrary</ConfigurationType>
633 + <CharacterSet>NotSet</CharacterSet>
634 + <WholeProgramOptimization>true</WholeProgramOptimization>
635 + </PropertyGroup>
636 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
637 + <ConfigurationType>DynamicLibrary</ConfigurationType>
638 + <CharacterSet>NotSet</CharacterSet>
639 + <WholeProgramOptimization>true</WholeProgramOptimization>
640 + </PropertyGroup>
641 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
642 + <ConfigurationType>DynamicLibrary</ConfigurationType>
643 + <CharacterSet>NotSet</CharacterSet>
644 + </PropertyGroup>
645 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
646 + <ConfigurationType>DynamicLibrary</ConfigurationType>
647 + <CharacterSet>NotSet</CharacterSet>
648 + <WholeProgramOptimization>true</WholeProgramOptimization>
649 + </PropertyGroup>
650 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
651 + <ConfigurationType>DynamicLibrary</ConfigurationType>
652 + <CharacterSet>NotSet</CharacterSet>
653 + <WholeProgramOptimization>true</WholeProgramOptimization>
654 + </PropertyGroup>
655 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
656 + <ConfigurationType>DynamicLibrary</ConfigurationType>
657 + <CharacterSet>NotSet</CharacterSet>
658 + <WholeProgramOptimization>true</WholeProgramOptimization>
659 + </PropertyGroup>
660 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
661 + <ConfigurationType>DynamicLibrary</ConfigurationType>
662 + <CharacterSet>NotSet</CharacterSet>
663 + </PropertyGroup>
664 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
665 + <ImportGroup Label="ExtensionSettings">
666 + </ImportGroup>
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" />
671 + </ImportGroup>
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" />
676 + </ImportGroup>
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" />
680 + </ImportGroup>
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" />
684 + </ImportGroup>
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" />
690 + </ImportGroup>
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" />
696 + </ImportGroup>
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" />
701 + </ImportGroup>
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" />
706 + </ImportGroup>
707 + <PropertyGroup Label="UserMacros" />
708 + <PropertyGroup>
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'" />
734 + </PropertyGroup>
735 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
736 + <Midl>
737 + <TargetEnvironment>X64</TargetEnvironment>
738 + </Midl>
739 + </ItemDefinitionGroup>
740 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
741 + <Midl>
742 + <TargetEnvironment>X64</TargetEnvironment>
743 + </Midl>
744 + </ItemDefinitionGroup>
745 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
746 + <Midl>
747 + <TargetEnvironment>X64</TargetEnvironment>
748 + </Midl>
749 + <Link>
750 + <TargetMachine>MachineX64</TargetMachine>
751 + </Link>
752 + </ItemDefinitionGroup>
753 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
754 + <Midl>
755 + <TargetEnvironment>X64</TargetEnvironment>
756 + </Midl>
757 + <Link>
758 + <TargetMachine>MachineX64</TargetMachine>
759 + </Link>
760 + </ItemDefinitionGroup>
761 + <ItemGroup>
762 + <ClInclude Include="..\..\Modules\_ctypes\_ctypes_test.h" />
763 + </ItemGroup>
764 + <ItemGroup>
765 + <ClCompile Include="..\..\Modules\_ctypes\_ctypes_test.c" />
766 + </ItemGroup>
767 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
768 + <ImportGroup Label="ExtensionTargets">
769 + </ImportGroup>
770 +</Project>
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
775 @@ -0,0 +1,264 @@
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>
811 + </ItemGroup>
812 + <PropertyGroup Label="Globals">
813 + <ProjectGuid>{17E1E049-C309-4D79-843F-AE483C264AEA}</ProjectGuid>
814 + <RootNamespace>_elementtree</RootNamespace>
815 + <Keyword>Win32Proj</Keyword>
816 + </PropertyGroup>
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>
822 + </PropertyGroup>
823 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
824 + <ConfigurationType>DynamicLibrary</ConfigurationType>
825 + <CharacterSet>NotSet</CharacterSet>
826 + <WholeProgramOptimization>true</WholeProgramOptimization>
827 + </PropertyGroup>
828 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
829 + <ConfigurationType>DynamicLibrary</ConfigurationType>
830 + <CharacterSet>NotSet</CharacterSet>
831 + <WholeProgramOptimization>true</WholeProgramOptimization>
832 + </PropertyGroup>
833 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
834 + <ConfigurationType>DynamicLibrary</ConfigurationType>
835 + <CharacterSet>NotSet</CharacterSet>
836 + </PropertyGroup>
837 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
838 + <ConfigurationType>DynamicLibrary</ConfigurationType>
839 + <CharacterSet>NotSet</CharacterSet>
840 + <WholeProgramOptimization>true</WholeProgramOptimization>
841 + </PropertyGroup>
842 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
843 + <ConfigurationType>DynamicLibrary</ConfigurationType>
844 + <CharacterSet>NotSet</CharacterSet>
845 + <WholeProgramOptimization>true</WholeProgramOptimization>
846 + </PropertyGroup>
847 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
848 + <ConfigurationType>DynamicLibrary</ConfigurationType>
849 + <CharacterSet>NotSet</CharacterSet>
850 + <WholeProgramOptimization>true</WholeProgramOptimization>
851 + </PropertyGroup>
852 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
853 + <ConfigurationType>DynamicLibrary</ConfigurationType>
854 + <CharacterSet>NotSet</CharacterSet>
855 + </PropertyGroup>
856 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
857 + <ImportGroup Label="ExtensionSettings">
858 + </ImportGroup>
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" />
863 + </ImportGroup>
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" />
868 + </ImportGroup>
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" />
872 + </ImportGroup>
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" />
876 + </ImportGroup>
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" />
882 + </ImportGroup>
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" />
888 + </ImportGroup>
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" />
893 + </ImportGroup>
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" />
898 + </ImportGroup>
899 + <PropertyGroup Label="UserMacros" />
900 + <PropertyGroup>
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'" />
926 + </PropertyGroup>
927 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
928 + <ClCompile>
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>
931 + </ClCompile>
932 + <Link>
933 + <BaseAddress>0x1D100000</BaseAddress>
934 + </Link>
935 + </ItemDefinitionGroup>
936 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
937 + <Midl>
938 + <TargetEnvironment>X64</TargetEnvironment>
939 + </Midl>
940 + <ClCompile>
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>
943 + </ClCompile>
944 + <Link>
945 + <BaseAddress>0x1D100000</BaseAddress>
946 + </Link>
947 + </ItemDefinitionGroup>
948 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
949 + <ClCompile>
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>
952 + </ClCompile>
953 + <Link>
954 + <BaseAddress>0x1D100000</BaseAddress>
955 + </Link>
956 + </ItemDefinitionGroup>
957 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
958 + <Midl>
959 + <TargetEnvironment>X64</TargetEnvironment>
960 + </Midl>
961 + <ClCompile>
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>
964 + </ClCompile>
965 + <Link>
966 + <BaseAddress>0x1D100000</BaseAddress>
967 + </Link>
968 + </ItemDefinitionGroup>
969 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
970 + <ClCompile>
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>
973 + </ClCompile>
974 + <Link>
975 + <BaseAddress>0x1D100000</BaseAddress>
976 + </Link>
977 + </ItemDefinitionGroup>
978 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
979 + <Midl>
980 + <TargetEnvironment>X64</TargetEnvironment>
981 + </Midl>
982 + <ClCompile>
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>
985 + </ClCompile>
986 + <Link>
987 + <BaseAddress>0x1D100000</BaseAddress>
988 + <TargetMachine>MachineX64</TargetMachine>
989 + </Link>
990 + </ItemDefinitionGroup>
991 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
992 + <ClCompile>
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>
995 + </ClCompile>
996 + <Link>
997 + <BaseAddress>0x1D100000</BaseAddress>
998 + </Link>
999 + </ItemDefinitionGroup>
1000 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1001 + <Midl>
1002 + <TargetEnvironment>X64</TargetEnvironment>
1003 + </Midl>
1004 + <ClCompile>
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>
1007 + </ClCompile>
1008 + <Link>
1009 + <BaseAddress>0x1D100000</BaseAddress>
1010 + <TargetMachine>MachineX64</TargetMachine>
1011 + </Link>
1012 + </ItemDefinitionGroup>
1013 + <ItemGroup>
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" />
1029 + </ItemGroup>
1030 + <ItemGroup>
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" />
1035 + </ItemGroup>
1036 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1037 + <ImportGroup Label="ExtensionTargets">
1038 + </ImportGroup>
1039 +</Project>
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
1044 @@ -0,0 +1,220 @@
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>
1080 + </ItemGroup>
1081 + <PropertyGroup Label="Globals">
1082 + <ProjectGuid>{31FFC478-7B4A-43E8-9954-8D03E2187E9C}</ProjectGuid>
1083 + <RootNamespace>_msi</RootNamespace>
1084 + <Keyword>Win32Proj</Keyword>
1085 + </PropertyGroup>
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>
1091 + </PropertyGroup>
1092 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1093 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1094 + <CharacterSet>NotSet</CharacterSet>
1095 + <WholeProgramOptimization>true</WholeProgramOptimization>
1096 + </PropertyGroup>
1097 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1098 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1099 + <CharacterSet>NotSet</CharacterSet>
1100 + <WholeProgramOptimization>true</WholeProgramOptimization>
1101 + </PropertyGroup>
1102 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1103 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1104 + <CharacterSet>NotSet</CharacterSet>
1105 + </PropertyGroup>
1106 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1107 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1108 + <CharacterSet>NotSet</CharacterSet>
1109 + <WholeProgramOptimization>true</WholeProgramOptimization>
1110 + </PropertyGroup>
1111 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1112 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1113 + <CharacterSet>NotSet</CharacterSet>
1114 + <WholeProgramOptimization>true</WholeProgramOptimization>
1115 + </PropertyGroup>
1116 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1117 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1118 + <CharacterSet>NotSet</CharacterSet>
1119 + <WholeProgramOptimization>true</WholeProgramOptimization>
1120 + </PropertyGroup>
1121 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1122 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1123 + <CharacterSet>NotSet</CharacterSet>
1124 + </PropertyGroup>
1125 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1126 + <ImportGroup Label="ExtensionSettings">
1127 + </ImportGroup>
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" />
1132 + </ImportGroup>
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" />
1137 + </ImportGroup>
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" />
1141 + </ImportGroup>
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" />
1145 + </ImportGroup>
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" />
1151 + </ImportGroup>
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" />
1157 + </ImportGroup>
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" />
1162 + </ImportGroup>
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" />
1167 + </ImportGroup>
1168 + <PropertyGroup Label="UserMacros" />
1169 + <PropertyGroup>
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'" />
1195 + </PropertyGroup>
1196 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1197 + <Link>
1198 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1199 + <BaseAddress>0x1D160000</BaseAddress>
1200 + </Link>
1201 + </ItemDefinitionGroup>
1202 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1203 + <Midl>
1204 + <TargetEnvironment>X64</TargetEnvironment>
1205 + </Midl>
1206 + <Link>
1207 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1208 + <BaseAddress>0x1D160000</BaseAddress>
1209 + </Link>
1210 + </ItemDefinitionGroup>
1211 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1212 + <Link>
1213 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1214 + <BaseAddress>0x1D160000</BaseAddress>
1215 + </Link>
1216 + </ItemDefinitionGroup>
1217 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1218 + <Midl>
1219 + <TargetEnvironment>X64</TargetEnvironment>
1220 + </Midl>
1221 + <Link>
1222 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1223 + <BaseAddress>0x1D160000</BaseAddress>
1224 + </Link>
1225 + </ItemDefinitionGroup>
1226 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1227 + <Link>
1228 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1229 + <BaseAddress>0x1D160000</BaseAddress>
1230 + </Link>
1231 + </ItemDefinitionGroup>
1232 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1233 + <Midl>
1234 + <TargetEnvironment>X64</TargetEnvironment>
1235 + </Midl>
1236 + <Link>
1237 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1238 + <BaseAddress>0x1D160000</BaseAddress>
1239 + <TargetMachine>MachineX64</TargetMachine>
1240 + </Link>
1241 + </ItemDefinitionGroup>
1242 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1243 + <Link>
1244 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1245 + <BaseAddress>0x1D160000</BaseAddress>
1246 + </Link>
1247 + </ItemDefinitionGroup>
1248 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1249 + <Midl>
1250 + <TargetEnvironment>X64</TargetEnvironment>
1251 + </Midl>
1252 + <Link>
1253 + <AdditionalDependencies>fci.lib;msi.lib;rpcrt4.lib;%(AdditionalDependencies)</AdditionalDependencies>
1254 + <BaseAddress>0x1D160000</BaseAddress>
1255 + <TargetMachine>MachineX64</TargetMachine>
1256 + </Link>
1257 + </ItemDefinitionGroup>
1258 + <ItemGroup>
1259 + <ClCompile Include="..\..\PC\_msi.c" />
1260 + </ItemGroup>
1261 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1262 + <ImportGroup Label="ExtensionTargets">
1263 + </ImportGroup>
1264 +</Project>
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
1269 @@ -0,0 +1,228 @@
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>
1305 + </ItemGroup>
1306 + <PropertyGroup Label="Globals">
1307 + <ProjectGuid>{9e48b300-37d1-11dd-8c41-005056c00008}</ProjectGuid>
1308 + <RootNamespace>_multiprocessing</RootNamespace>
1309 + <Keyword>Win32Proj</Keyword>
1310 + </PropertyGroup>
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>
1316 + </PropertyGroup>
1317 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1318 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1319 + <CharacterSet>NotSet</CharacterSet>
1320 + <WholeProgramOptimization>true</WholeProgramOptimization>
1321 + </PropertyGroup>
1322 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1323 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1324 + <CharacterSet>NotSet</CharacterSet>
1325 + <WholeProgramOptimization>true</WholeProgramOptimization>
1326 + </PropertyGroup>
1327 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1328 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1329 + <CharacterSet>NotSet</CharacterSet>
1330 + </PropertyGroup>
1331 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1332 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1333 + <CharacterSet>NotSet</CharacterSet>
1334 + <WholeProgramOptimization>true</WholeProgramOptimization>
1335 + </PropertyGroup>
1336 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1337 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1338 + <CharacterSet>NotSet</CharacterSet>
1339 + <WholeProgramOptimization>true</WholeProgramOptimization>
1340 + </PropertyGroup>
1341 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1342 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1343 + <CharacterSet>NotSet</CharacterSet>
1344 + <WholeProgramOptimization>true</WholeProgramOptimization>
1345 + </PropertyGroup>
1346 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1347 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1348 + <CharacterSet>NotSet</CharacterSet>
1349 + </PropertyGroup>
1350 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1351 + <ImportGroup Label="ExtensionSettings">
1352 + </ImportGroup>
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" />
1357 + </ImportGroup>
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" />
1362 + </ImportGroup>
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" />
1366 + </ImportGroup>
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" />
1370 + </ImportGroup>
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" />
1376 + </ImportGroup>
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" />
1382 + </ImportGroup>
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" />
1387 + </ImportGroup>
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" />
1392 + </ImportGroup>
1393 + <PropertyGroup Label="UserMacros" />
1394 + <PropertyGroup>
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'" />
1420 + </PropertyGroup>
1421 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1422 + <Link>
1423 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1424 + <BaseAddress>0x1e1D0000</BaseAddress>
1425 + </Link>
1426 + </ItemDefinitionGroup>
1427 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1428 + <Midl>
1429 + <TargetEnvironment>X64</TargetEnvironment>
1430 + </Midl>
1431 + <Link>
1432 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1433 + <BaseAddress>0x1e1D0000</BaseAddress>
1434 + </Link>
1435 + </ItemDefinitionGroup>
1436 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1437 + <Link>
1438 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1439 + <BaseAddress>0x1e1D0000</BaseAddress>
1440 + </Link>
1441 + </ItemDefinitionGroup>
1442 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1443 + <Midl>
1444 + <TargetEnvironment>X64</TargetEnvironment>
1445 + </Midl>
1446 + <Link>
1447 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1448 + <BaseAddress>0x1e1D0000</BaseAddress>
1449 + </Link>
1450 + </ItemDefinitionGroup>
1451 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1452 + <Link>
1453 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1454 + <BaseAddress>0x1e1D0000</BaseAddress>
1455 + </Link>
1456 + </ItemDefinitionGroup>
1457 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1458 + <Midl>
1459 + <TargetEnvironment>X64</TargetEnvironment>
1460 + </Midl>
1461 + <Link>
1462 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1463 + <BaseAddress>0x1e1D0000</BaseAddress>
1464 + <TargetMachine>MachineX64</TargetMachine>
1465 + </Link>
1466 + </ItemDefinitionGroup>
1467 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1468 + <Link>
1469 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1470 + <BaseAddress>0x1e1D0000</BaseAddress>
1471 + </Link>
1472 + </ItemDefinitionGroup>
1473 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1474 + <Midl>
1475 + <TargetEnvironment>X64</TargetEnvironment>
1476 + </Midl>
1477 + <Link>
1478 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1479 + <BaseAddress>0x1e1D0000</BaseAddress>
1480 + <TargetMachine>MachineX64</TargetMachine>
1481 + </Link>
1482 + </ItemDefinitionGroup>
1483 + <ItemGroup>
1484 + <ClInclude Include="..\..\Modules\_multiprocessing\multiprocessing.h" />
1485 + <ClInclude Include="..\..\Modules\_multiprocessing\connection.h" />
1486 + </ItemGroup>
1487 + <ItemGroup>
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" />
1493 + </ItemGroup>
1494 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1495 + <ImportGroup Label="ExtensionTargets">
1496 + </ImportGroup>
1497 +</Project>
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
1502 @@ -0,0 +1,223 @@
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>
1538 + </ItemGroup>
1539 + <PropertyGroup Label="Globals">
1540 + <ProjectGuid>{86937F53-C189-40EF-8CE8-8759D8E7D480}</ProjectGuid>
1541 + <RootNamespace>_socket</RootNamespace>
1542 + <Keyword>Win32Proj</Keyword>
1543 + </PropertyGroup>
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>
1549 + </PropertyGroup>
1550 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1551 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1552 + <CharacterSet>NotSet</CharacterSet>
1553 + <WholeProgramOptimization>true</WholeProgramOptimization>
1554 + </PropertyGroup>
1555 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1556 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1557 + <CharacterSet>NotSet</CharacterSet>
1558 + <WholeProgramOptimization>true</WholeProgramOptimization>
1559 + </PropertyGroup>
1560 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1561 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1562 + <CharacterSet>NotSet</CharacterSet>
1563 + </PropertyGroup>
1564 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1565 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1566 + <CharacterSet>NotSet</CharacterSet>
1567 + <WholeProgramOptimization>true</WholeProgramOptimization>
1568 + </PropertyGroup>
1569 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1570 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1571 + <CharacterSet>NotSet</CharacterSet>
1572 + <WholeProgramOptimization>true</WholeProgramOptimization>
1573 + </PropertyGroup>
1574 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1575 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1576 + <CharacterSet>NotSet</CharacterSet>
1577 + <WholeProgramOptimization>true</WholeProgramOptimization>
1578 + </PropertyGroup>
1579 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1580 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1581 + <CharacterSet>NotSet</CharacterSet>
1582 + </PropertyGroup>
1583 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1584 + <ImportGroup Label="ExtensionSettings">
1585 + </ImportGroup>
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" />
1590 + </ImportGroup>
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" />
1595 + </ImportGroup>
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" />
1599 + </ImportGroup>
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" />
1603 + </ImportGroup>
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" />
1609 + </ImportGroup>
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" />
1615 + </ImportGroup>
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" />
1620 + </ImportGroup>
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" />
1625 + </ImportGroup>
1626 + <PropertyGroup Label="UserMacros" />
1627 + <PropertyGroup>
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'" />
1653 + </PropertyGroup>
1654 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1655 + <Link>
1656 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1657 + <BaseAddress>0x1e1D0000</BaseAddress>
1658 + </Link>
1659 + </ItemDefinitionGroup>
1660 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1661 + <Midl>
1662 + <TargetEnvironment>X64</TargetEnvironment>
1663 + </Midl>
1664 + <Link>
1665 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1666 + <BaseAddress>0x1e1D0000</BaseAddress>
1667 + </Link>
1668 + </ItemDefinitionGroup>
1669 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1670 + <Link>
1671 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1672 + <BaseAddress>0x1e1D0000</BaseAddress>
1673 + </Link>
1674 + </ItemDefinitionGroup>
1675 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1676 + <Midl>
1677 + <TargetEnvironment>X64</TargetEnvironment>
1678 + </Midl>
1679 + <Link>
1680 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1681 + <BaseAddress>0x1e1D0000</BaseAddress>
1682 + </Link>
1683 + </ItemDefinitionGroup>
1684 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1685 + <Link>
1686 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1687 + <BaseAddress>0x1e1D0000</BaseAddress>
1688 + </Link>
1689 + </ItemDefinitionGroup>
1690 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1691 + <Midl>
1692 + <TargetEnvironment>X64</TargetEnvironment>
1693 + </Midl>
1694 + <Link>
1695 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1696 + <BaseAddress>0x1e1D0000</BaseAddress>
1697 + <TargetMachine>MachineX64</TargetMachine>
1698 + </Link>
1699 + </ItemDefinitionGroup>
1700 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1701 + <Link>
1702 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1703 + <BaseAddress>0x1e1D0000</BaseAddress>
1704 + </Link>
1705 + </ItemDefinitionGroup>
1706 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
1707 + <Midl>
1708 + <TargetEnvironment>X64</TargetEnvironment>
1709 + </Midl>
1710 + <Link>
1711 + <AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1712 + <BaseAddress>0x1e1D0000</BaseAddress>
1713 + <TargetMachine>MachineX64</TargetMachine>
1714 + </Link>
1715 + </ItemDefinitionGroup>
1716 + <ItemGroup>
1717 + <ClInclude Include="..\..\Modules\socketmodule.h" />
1718 + </ItemGroup>
1719 + <ItemGroup>
1720 + <ClCompile Include="..\..\Modules\socketmodule.c" />
1721 + </ItemGroup>
1722 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
1723 + <ImportGroup Label="ExtensionTargets">
1724 + </ImportGroup>
1725 +</Project>
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
1730 @@ -0,0 +1,308 @@
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>
1766 + </ItemGroup>
1767 + <PropertyGroup Label="Globals">
1768 + <ProjectGuid>{C6E20F84-3247-4AD6-B051-B073268F73BA}</ProjectGuid>
1769 + <RootNamespace>_ssl</RootNamespace>
1770 + <Keyword>Win32Proj</Keyword>
1771 + </PropertyGroup>
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>
1777 + </PropertyGroup>
1778 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
1779 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1780 + <CharacterSet>NotSet</CharacterSet>
1781 + <WholeProgramOptimization>true</WholeProgramOptimization>
1782 + </PropertyGroup>
1783 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
1784 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1785 + <CharacterSet>NotSet</CharacterSet>
1786 + <WholeProgramOptimization>true</WholeProgramOptimization>
1787 + </PropertyGroup>
1788 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
1789 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1790 + <CharacterSet>NotSet</CharacterSet>
1791 + </PropertyGroup>
1792 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
1793 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1794 + <CharacterSet>NotSet</CharacterSet>
1795 + <WholeProgramOptimization>true</WholeProgramOptimization>
1796 + </PropertyGroup>
1797 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
1798 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1799 + <CharacterSet>NotSet</CharacterSet>
1800 + <WholeProgramOptimization>true</WholeProgramOptimization>
1801 + </PropertyGroup>
1802 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
1803 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1804 + <CharacterSet>NotSet</CharacterSet>
1805 + <WholeProgramOptimization>true</WholeProgramOptimization>
1806 + </PropertyGroup>
1807 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
1808 + <ConfigurationType>DynamicLibrary</ConfigurationType>
1809 + <CharacterSet>NotSet</CharacterSet>
1810 + </PropertyGroup>
1811 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
1812 + <ImportGroup Label="ExtensionSettings">
1813 + </ImportGroup>
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" />
1818 + </ImportGroup>
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" />
1823 + </ImportGroup>
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" />
1827 + </ImportGroup>
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" />
1831 + </ImportGroup>
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" />
1837 + </ImportGroup>
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" />
1843 + </ImportGroup>
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" />
1848 + </ImportGroup>
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" />
1853 + </ImportGroup>
1854 + <PropertyGroup Label="UserMacros" />
1855 + <PropertyGroup>
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'" />
1881 + </PropertyGroup>
1882 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
1883 + <PreBuildEvent>
1884 + <Command>cd "$(SolutionDir)"
1885 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1886 +</Command>
1887 + </PreBuildEvent>
1888 + <ClCompile>
1889 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1890 + </ClCompile>
1891 + <PreLinkEvent>
1892 + <Command>
1893 + </Command>
1894 + </PreLinkEvent>
1895 + <Link>
1896 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1897 + </Link>
1898 + </ItemDefinitionGroup>
1899 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
1900 + <PreBuildEvent>
1901 + <Command>cd "$(SolutionDir)"
1902 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1903 +</Command>
1904 + </PreBuildEvent>
1905 + <Midl>
1906 + <TargetEnvironment>X64</TargetEnvironment>
1907 + </Midl>
1908 + <ClCompile>
1909 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1910 + </ClCompile>
1911 + <PreLinkEvent>
1912 + <Command>
1913 + </Command>
1914 + </PreLinkEvent>
1915 + <Link>
1916 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1917 + </Link>
1918 + </ItemDefinitionGroup>
1919 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
1920 + <PreBuildEvent>
1921 + <Command>cd "$(SolutionDir)"
1922 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1923 +</Command>
1924 + </PreBuildEvent>
1925 + <ClCompile>
1926 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1927 + </ClCompile>
1928 + <PreLinkEvent>
1929 + <Command>
1930 + </Command>
1931 + </PreLinkEvent>
1932 + <Link>
1933 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1934 + </Link>
1935 + </ItemDefinitionGroup>
1936 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
1937 + <PreBuildEvent>
1938 + <Command>cd "$(SolutionDir)"
1939 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1940 +</Command>
1941 + </PreBuildEvent>
1942 + <Midl>
1943 + <TargetEnvironment>X64</TargetEnvironment>
1944 + </Midl>
1945 + <ClCompile>
1946 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1947 + </ClCompile>
1948 + <PreLinkEvent>
1949 + <Command>
1950 + </Command>
1951 + </PreLinkEvent>
1952 + <Link>
1953 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1954 + </Link>
1955 + </ItemDefinitionGroup>
1956 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
1957 + <PreBuildEvent>
1958 + <Command>cd "$(SolutionDir)"
1959 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1960 +</Command>
1961 + </PreBuildEvent>
1962 + <ClCompile>
1963 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1964 + </ClCompile>
1965 + <PreLinkEvent>
1966 + <Command>
1967 + </Command>
1968 + </PreLinkEvent>
1969 + <Link>
1970 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1971 + </Link>
1972 + </ItemDefinitionGroup>
1973 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
1974 + <PreBuildEvent>
1975 + <Command>cd "$(SolutionDir)"
1976 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1977 +</Command>
1978 + </PreBuildEvent>
1979 + <Midl>
1980 + <TargetEnvironment>X64</TargetEnvironment>
1981 + </Midl>
1982 + <ClCompile>
1983 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
1984 + </ClCompile>
1985 + <PreLinkEvent>
1986 + <Command>
1987 + </Command>
1988 + </PreLinkEvent>
1989 + <Link>
1990 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
1991 + <TargetMachine>MachineX64</TargetMachine>
1992 + </Link>
1993 + </ItemDefinitionGroup>
1994 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
1995 + <PreBuildEvent>
1996 + <Command>cd "$(SolutionDir)"
1997 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
1998 +</Command>
1999 + </PreBuildEvent>
2000 + <ClCompile>
2001 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2002 + </ClCompile>
2003 + <PreLinkEvent>
2004 + <Command>
2005 + </Command>
2006 + </PreLinkEvent>
2007 + <Link>
2008 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
2009 + </Link>
2010 + </ItemDefinitionGroup>
2011 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
2012 + <PreBuildEvent>
2013 + <Command>cd "$(SolutionDir)"
2014 +"$(PythonExe)" build_ssl.py Release $(Platform) -a
2015 +</Command>
2016 + </PreBuildEvent>
2017 + <Midl>
2018 + <TargetEnvironment>X64</TargetEnvironment>
2019 + </Midl>
2020 + <ClCompile>
2021 + <AdditionalIncludeDirectories>..;$(SOLARVERSION)\$(INPATH)\inc$(UPDMINOREXT)\external;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2022 + </ClCompile>
2023 + <PreLinkEvent>
2024 + <Command>
2025 + </Command>
2026 + </PreLinkEvent>
2027 + <Link>
2028 + <AdditionalDependencies>ws2_32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\libeay32.lib;$(SOLARVER)\$(INPATH)\lib$(UPDMINOREXT)\ssleay32.lib;%(AdditionalDependencies)</AdditionalDependencies>
2029 + <TargetMachine>MachineX64</TargetMachine>
2030 + </Link>
2031 + </ItemDefinitionGroup>
2032 + <ItemGroup>
2033 + <ClCompile Include="..\..\Modules\_ssl.c" />
2034 + </ItemGroup>
2035 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2036 + <ImportGroup Label="ExtensionTargets">
2037 + </ImportGroup>
2038 +</Project>
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
2043 @@ -0,0 +1,212 @@
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>
2079 + </ItemGroup>
2080 + <PropertyGroup Label="Globals">
2081 + <ProjectGuid>{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}</ProjectGuid>
2082 + <RootNamespace>_testcapi</RootNamespace>
2083 + <Keyword>Win32Proj</Keyword>
2084 + </PropertyGroup>
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>
2090 + </PropertyGroup>
2091 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
2092 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2093 + <CharacterSet>NotSet</CharacterSet>
2094 + <WholeProgramOptimization>true</WholeProgramOptimization>
2095 + </PropertyGroup>
2096 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2097 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2098 + <CharacterSet>NotSet</CharacterSet>
2099 + <WholeProgramOptimization>true</WholeProgramOptimization>
2100 + </PropertyGroup>
2101 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2102 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2103 + <CharacterSet>NotSet</CharacterSet>
2104 + </PropertyGroup>
2105 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
2106 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2107 + <CharacterSet>NotSet</CharacterSet>
2108 + <WholeProgramOptimization>true</WholeProgramOptimization>
2109 + </PropertyGroup>
2110 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
2111 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2112 + <CharacterSet>NotSet</CharacterSet>
2113 + <WholeProgramOptimization>true</WholeProgramOptimization>
2114 + </PropertyGroup>
2115 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2116 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2117 + <CharacterSet>NotSet</CharacterSet>
2118 + <WholeProgramOptimization>true</WholeProgramOptimization>
2119 + </PropertyGroup>
2120 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2121 + <ConfigurationType>DynamicLibrary</ConfigurationType>
2122 + <CharacterSet>NotSet</CharacterSet>
2123 + </PropertyGroup>
2124 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2125 + <ImportGroup Label="ExtensionSettings">
2126 + </ImportGroup>
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" />
2131 + </ImportGroup>
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" />
2136 + </ImportGroup>
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" />
2140 + </ImportGroup>
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" />
2144 + </ImportGroup>
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" />
2150 + </ImportGroup>
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" />
2156 + </ImportGroup>
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" />
2161 + </ImportGroup>
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" />
2166 + </ImportGroup>
2167 + <PropertyGroup Label="UserMacros" />
2168 + <PropertyGroup>
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'" />
2194 + </PropertyGroup>
2195 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
2196 + <Link>
2197 + <BaseAddress>0x1e1F0000</BaseAddress>
2198 + </Link>
2199 + </ItemDefinitionGroup>
2200 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2201 + <Midl>
2202 + <TargetEnvironment>X64</TargetEnvironment>
2203 + </Midl>
2204 + <Link>
2205 + <BaseAddress>0x1e1F0000</BaseAddress>
2206 + </Link>
2207 + </ItemDefinitionGroup>
2208 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2209 + <Link>
2210 + <BaseAddress>0x1e1F0000</BaseAddress>
2211 + </Link>
2212 + </ItemDefinitionGroup>
2213 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2214 + <Midl>
2215 + <TargetEnvironment>X64</TargetEnvironment>
2216 + </Midl>
2217 + <Link>
2218 + <BaseAddress>0x1e1F0000</BaseAddress>
2219 + </Link>
2220 + </ItemDefinitionGroup>
2221 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
2222 + <Link>
2223 + <BaseAddress>0x1e1F0000</BaseAddress>
2224 + </Link>
2225 + </ItemDefinitionGroup>
2226 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
2227 + <Midl>
2228 + <TargetEnvironment>X64</TargetEnvironment>
2229 + </Midl>
2230 + <Link>
2231 + <BaseAddress>0x1e1F0000</BaseAddress>
2232 + <TargetMachine>MachineX64</TargetMachine>
2233 + </Link>
2234 + </ItemDefinitionGroup>
2235 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
2236 + <Link>
2237 + <BaseAddress>0x1e1F0000</BaseAddress>
2238 + </Link>
2239 + </ItemDefinitionGroup>
2240 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
2241 + <Midl>
2242 + <TargetEnvironment>X64</TargetEnvironment>
2243 + </Midl>
2244 + <Link>
2245 + <BaseAddress>0x1e1F0000</BaseAddress>
2246 + <TargetMachine>MachineX64</TargetMachine>
2247 + </Link>
2248 + </ItemDefinitionGroup>
2249 + <ItemGroup>
2250 + <ClCompile Include="..\..\Modules\_testcapimodule.c" />
2251 + </ItemGroup>
2252 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2253 + <ImportGroup Label="ExtensionTargets">
2254 + </ImportGroup>
2255 +</Project>
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
2260 @@ -0,0 +1,156 @@
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>
2272 + </ItemGroup>
2273 + <PropertyGroup Label="Globals">
2274 + <ProjectGuid>{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}</ProjectGuid>
2275 + <RootNamespace>wininst</RootNamespace>
2276 + </PropertyGroup>
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>
2282 + </PropertyGroup>
2283 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2284 + <ConfigurationType>Application</ConfigurationType>
2285 + <UseOfMfc>false</UseOfMfc>
2286 + <CharacterSet>NotSet</CharacterSet>
2287 + </PropertyGroup>
2288 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2289 + <ImportGroup Label="ExtensionSettings">
2290 + </ImportGroup>
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" />
2295 + </ImportGroup>
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" />
2300 + </ImportGroup>
2301 + <PropertyGroup Label="UserMacros" />
2302 + <PropertyGroup>
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'" />
2315 + </PropertyGroup>
2316 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2317 + <Midl>
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>
2323 + <HeaderFileName>
2324 + </HeaderFileName>
2325 + </Midl>
2326 + <ClCompile>
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>
2336 + </ClCompile>
2337 + <ResourceCompile>
2338 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2339 + <Culture>0x0000</Culture>
2340 + <AdditionalIncludeDirectories>..;..\..\PC;..\..\PC\bdist_wininst;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2341 + </ResourceCompile>
2342 + <Link>
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>
2353 + </Link>
2354 + </ItemDefinitionGroup>
2355 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2356 + <Midl>
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>
2362 + <HeaderFileName>
2363 + </HeaderFileName>
2364 + </Midl>
2365 + <ClCompile>
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>
2375 + </ClCompile>
2376 + <ResourceCompile>
2377 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2378 + <Culture>0x0000</Culture>
2379 + <AdditionalIncludeDirectories>..;..\..\PC;..\..\PC\bdist_wininst;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2380 + </ResourceCompile>
2381 + <Link>
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>
2392 + </Link>
2393 + </ItemDefinitionGroup>
2394 + <ItemGroup>
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" />
2403 + </ItemGroup>
2404 + <ItemGroup>
2405 + <ClInclude Include="..\..\PC\bdist_wininst\archive.h" />
2406 + </ItemGroup>
2407 + <ItemGroup>
2408 + <ResourceCompile Include="..\..\PC\bdist_wininst\install.rc" />
2409 + </ItemGroup>
2410 + <ItemGroup>
2411 + <None Include="..\..\PC\bdist_wininst\PythonPowered.bmp" />
2412 + </ItemGroup>
2413 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2414 + <ImportGroup Label="ExtensionTargets">
2415 + </ImportGroup>
2416 +</Project>
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
2421 @@ -0,0 +1,19 @@
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>
2426 + </PropertyGroup>
2427 + <PropertyGroup>
2428 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
2429 + </PropertyGroup>
2430 + <ItemDefinitionGroup>
2431 + <ClCompile>
2432 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2433 + </ClCompile>
2434 + </ItemDefinitionGroup>
2435 + <ItemGroup>
2436 + <BuildMacro Include="KillPythonExe">
2437 + <Value>$(KillPythonExe)</Value>
2438 + </BuildMacro>
2439 + </ItemGroup>
2440 +</Project>
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
2445 @@ -0,0 +1,120 @@
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>
2465 + </ItemGroup>
2466 + <PropertyGroup Label="Globals">
2467 + <ProjectGuid>{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}</ProjectGuid>
2468 + <RootNamespace>kill_python</RootNamespace>
2469 + <Keyword>Win32Proj</Keyword>
2470 + </PropertyGroup>
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>
2476 + </PropertyGroup>
2477 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2478 + <ConfigurationType>Application</ConfigurationType>
2479 + <CharacterSet>NotSet</CharacterSet>
2480 + </PropertyGroup>
2481 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2482 + <ConfigurationType>Application</ConfigurationType>
2483 + <CharacterSet>NotSet</CharacterSet>
2484 + <WholeProgramOptimization>true</WholeProgramOptimization>
2485 + </PropertyGroup>
2486 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2487 + <ConfigurationType>Application</ConfigurationType>
2488 + <CharacterSet>NotSet</CharacterSet>
2489 + </PropertyGroup>
2490 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2491 + <ImportGroup Label="ExtensionSettings">
2492 + </ImportGroup>
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" />
2497 + </ImportGroup>
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" />
2502 + </ImportGroup>
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" />
2508 + </ImportGroup>
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" />
2514 + </ImportGroup>
2515 + <PropertyGroup Label="UserMacros" />
2516 + <PropertyGroup>
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'" />
2530 + </PropertyGroup>
2531 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
2532 + <Link>
2533 + <OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
2534 + <SubSystem>Console</SubSystem>
2535 + </Link>
2536 + </ItemDefinitionGroup>
2537 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2538 + <Midl>
2539 + <TargetEnvironment>X64</TargetEnvironment>
2540 + </Midl>
2541 + <Link>
2542 + <OutputFile>$(OutDir)$(ProjectName)_d.exe</OutputFile>
2543 + <SubSystem>Console</SubSystem>
2544 + </Link>
2545 + </ItemDefinitionGroup>
2546 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2547 + <Link>
2548 + <SubSystem>Console</SubSystem>
2549 + </Link>
2550 + </ItemDefinitionGroup>
2551 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2552 + <Midl>
2553 + <TargetEnvironment>X64</TargetEnvironment>
2554 + </Midl>
2555 + <Link>
2556 + <SubSystem>Console</SubSystem>
2557 + </Link>
2558 + </ItemDefinitionGroup>
2559 + <ItemGroup>
2560 + <ClCompile Include="..\..\PCbuild\kill_python.c" />
2561 + </ItemGroup>
2562 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2563 + <ImportGroup Label="ExtensionTargets">
2564 + </ImportGroup>
2565 +</Project>
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
2570 @@ -0,0 +1,74 @@
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>
2582 + </ItemGroup>
2583 + <PropertyGroup Label="Globals">
2584 + <ProjectGuid>{C73F0EC1-358B-4177-940F-0846AC8B04CD}</ProjectGuid>
2585 + <RootNamespace>make_buildinfo</RootNamespace>
2586 + <Keyword>Win32Proj</Keyword>
2587 + </PropertyGroup>
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>
2592 + </PropertyGroup>
2593 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2594 + <ConfigurationType>Application</ConfigurationType>
2595 + </PropertyGroup>
2596 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2597 + <ImportGroup Label="ExtensionSettings">
2598 + </ImportGroup>
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" />
2603 + </ImportGroup>
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" />
2609 + </ImportGroup>
2610 + <PropertyGroup Label="UserMacros" />
2611 + <PropertyGroup>
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'" />
2619 + </PropertyGroup>
2620 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2621 + <ClCompile>
2622 + <Optimization>Disabled</Optimization>
2623 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2624 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2625 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
2626 + </ClCompile>
2627 + <Link>
2628 + <OutputFile>$(OutDir)make_buildinfo.exe</OutputFile>
2629 + <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2630 + <SubSystem>Console</SubSystem>
2631 + </Link>
2632 + </ItemDefinitionGroup>
2633 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2634 + <ClCompile>
2635 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2636 + </ClCompile>
2637 + </ItemDefinitionGroup>
2638 + <ItemGroup>
2639 + <ClCompile Include="..\..\PCbuild\make_buildinfo.c" />
2640 + </ItemGroup>
2641 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2642 + <ImportGroup Label="ExtensionTargets">
2643 + </ImportGroup>
2644 +</Project>
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
2649 @@ -0,0 +1,201 @@
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>
2669 + </ItemGroup>
2670 + <PropertyGroup Label="Globals">
2671 + <ProjectGuid>{F0E0541E-F17D-430B-97C4-93ADF0DD284E}</ProjectGuid>
2672 + <RootNamespace>make_versioninfo</RootNamespace>
2673 + </PropertyGroup>
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>
2679 + </PropertyGroup>
2680 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2681 + <ConfigurationType>Application</ConfigurationType>
2682 + <UseOfMfc>false</UseOfMfc>
2683 + <CharacterSet>MultiByte</CharacterSet>
2684 + </PropertyGroup>
2685 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2686 + <ConfigurationType>Application</ConfigurationType>
2687 + </PropertyGroup>
2688 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2689 + <ConfigurationType>Application</ConfigurationType>
2690 + </PropertyGroup>
2691 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
2692 + <ImportGroup Label="ExtensionSettings">
2693 + </ImportGroup>
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" />
2698 + </ImportGroup>
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" />
2703 + </ImportGroup>
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" />
2709 + </ImportGroup>
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" />
2715 + </ImportGroup>
2716 + <PropertyGroup Label="UserMacros" />
2717 + <PropertyGroup>
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'" />
2731 + </PropertyGroup>
2732 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
2733 + <CustomBuildStep>
2734 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2735 + <Command>cd $(SolutionDir)
2736 +make_versioninfo.exe &gt; ..\..\PC\pythonnt_rc.h
2737 +</Command>
2738 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc.h;%(Outputs)</Outputs>
2739 + </CustomBuildStep>
2740 + <ClCompile>
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>
2750 + </ClCompile>
2751 + <Link>
2752 + <OutputFile>$(SolutionDir)make_versioninfo.exe</OutputFile>
2753 + <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2754 + <SubSystem>Console</SubSystem>
2755 + <BaseAddress>0x1d000000</BaseAddress>
2756 + </Link>
2757 + <PostBuildEvent>
2758 + <Command>cd $(SolutionDir)
2759 +make_versioninfo.exe &gt; ..\..\PC\python_nt.h
2760 +</Command>
2761 + </PostBuildEvent>
2762 + </ItemDefinitionGroup>
2763 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
2764 + <CustomBuildStep>
2765 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2766 + <Command>cd $(SolutionDir)
2767 +make_versioninfo.exe &gt; ..\..\PC\pythonnt_rc.h
2768 +</Command>
2769 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc.h;%(Outputs)</Outputs>
2770 + </CustomBuildStep>
2771 + <ClCompile>
2772 + <Optimization>MaxSpeed</Optimization>
2773 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2774 + <IntrinsicFunctions>true</IntrinsicFunctions>
2775 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2776 + </ClCompile>
2777 + <Link>
2778 + <OutputFile>$(SolutionDir)make_versioninfo.exe</OutputFile>
2779 + </Link>
2780 + <PostBuildEvent>
2781 + <Command>cd $(SolutionDir)
2782 +make_versioninfo.exe &gt; ..\..\PC\python_nt.h
2783 +</Command>
2784 + </PostBuildEvent>
2785 + </ItemDefinitionGroup>
2786 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
2787 + <CustomBuildStep>
2788 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2789 + <Command>cd $(SolutionDir)
2790 +make_versioninfo_d.exe &gt; ..\..\PC\pythonnt_rc_d.h
2791 +</Command>
2792 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc_d.h;%(Outputs)</Outputs>
2793 + </CustomBuildStep>
2794 + <ClCompile>
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>
2804 + </ClCompile>
2805 + <Link>
2806 + <OutputFile>$(SolutionDir)make_versioninfo_d.exe</OutputFile>
2807 + <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>
2808 + <SubSystem>Console</SubSystem>
2809 + <BaseAddress>0x1d000000</BaseAddress>
2810 + </Link>
2811 + <PostBuildEvent>
2812 + <Command>cd $(SolutionDir)
2813 +make_versioninfo_d.exe &gt; ..\..\PC\python_nt_d.h
2814 +</Command>
2815 + </PostBuildEvent>
2816 + </ItemDefinitionGroup>
2817 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
2818 + <CustomBuildStep>
2819 + <Message>Build PC/pythonnt_rc(_d).h</Message>
2820 + <Command>cd $(SolutionDir)
2821 +make_versioninfo_d.exe &gt; ..\..\PC\pythonnt_rc_d.h
2822 +</Command>
2823 + <Outputs>$(SolutionDir)..\..\PC\pythonnt_rc_d.h;%(Outputs)</Outputs>
2824 + </CustomBuildStep>
2825 + <Midl>
2826 + <TargetEnvironment>X64</TargetEnvironment>
2827 + </Midl>
2828 + <ClCompile>
2829 + <Optimization>Disabled</Optimization>
2830 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
2831 + <IntrinsicFunctions>false</IntrinsicFunctions>
2832 + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
2833 + </ClCompile>
2834 + <Link>
2835 + <OutputFile>$(SolutionDir)make_versioninfo_d.exe</OutputFile>
2836 + <TargetMachine>MachineX64</TargetMachine>
2837 + </Link>
2838 + <PostBuildEvent>
2839 + <Command>cd $(SolutionDir)
2840 +make_versioninfo_d.exe &gt; ..\..\PC\python_nt_d.h
2841 +</Command>
2842 + </PostBuildEvent>
2843 + </ItemDefinitionGroup>
2844 + <ItemGroup>
2845 + <ClCompile Include="..\..\PC\make_versioninfo.c" />
2846 + </ItemGroup>
2847 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
2848 + <ImportGroup Label="ExtensionTargets">
2849 + </ImportGroup>
2850 +</Project>
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
2855 @@ -0,0 +1,370 @@
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}"
2860 +EndProject
2861 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcxproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}"
2862 +EndProject
2863 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcxproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}"
2864 +EndProject
2865 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcxproj", "{0E9791DB-593A-465F-98BC-681011311618}"
2866 +EndProject
2867 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcxproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}"
2868 +EndProject
2869 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcxproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}"
2870 +EndProject
2871 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcxproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}"
2872 +EndProject
2873 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcxproj", "{9E48B300-37D1-11DD-8C41-005056C00008}"
2874 +EndProject
2875 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcxproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}"
2876 +EndProject
2877 +#Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcxproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}"
2878 +#EndProject
2879 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcxproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}"
2880 +EndProject
2881 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcxproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}"
2882 +EndProject
2883 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcxproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}"
2884 +EndProject
2885 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcxproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}"
2886 +EndProject
2887 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcxproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}"
2888 +EndProject
2889 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcxproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}"
2890 +EndProject
2891 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcxproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}"
2892 +EndProject
2893 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcxproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}"
2894 +EndProject
2895 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcxproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}"
2896 +EndProject
2897 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcxproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}"
2898 +EndProject
2899 +Global
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
2909 + EndGlobalSection
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
3221 + EndGlobalSection
3222 + GlobalSection(SolutionProperties) = preSolution
3223 + HideSolutionNode = FALSE
3224 + EndGlobalSection
3225 +EndGlobal
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
3229 @@ -0,0 +1,38 @@
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>
3234 + </PropertyGroup>
3235 + <PropertyGroup>
3236 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3237 + <OutDir>$(OutDirPGI)\</OutDir>
3238 + <IntDir>$(SolutionDir)$(PlatformName)-temp-pgi\$(ProjectName)\</IntDir>
3239 + </PropertyGroup>
3240 + <ItemDefinitionGroup>
3241 + <ClCompile>
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>
3253 + </ClCompile>
3254 + <Link>
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>
3260 + </Link>
3261 + </ItemDefinitionGroup>
3262 + <ItemGroup>
3263 + <BuildMacro Include="OutDirPGI">
3264 + <Value>$(OutDirPGI)</Value>
3265 + </BuildMacro>
3266 + </ItemGroup>
3267 +</Project>
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
3272 @@ -0,0 +1,16 @@
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" />
3277 + </ImportGroup>
3278 + <PropertyGroup>
3279 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3280 + <OutDir>$(SolutionDir)$(PlatformName)-pgo\</OutDir>
3281 + </PropertyGroup>
3282 + <ItemDefinitionGroup>
3283 + <Link>
3284 + <AdditionalManifestDependencies>%(AdditionalManifestDependencies)</AdditionalManifestDependencies>
3285 + <LinkTimeCodeGeneration>PGUpdate</LinkTimeCodeGeneration>
3286 + </Link>
3287 + </ItemDefinitionGroup>
3288 +</Project>
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
3293 @@ -0,0 +1,27 @@
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" />
3299 + </ImportGroup>
3300 + <PropertyGroup>
3301 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3302 + <GenerateManifest>false</GenerateManifest>
3303 + <EmbedManifest>false</EmbedManifest>
3304 + </PropertyGroup>
3305 + <ItemDefinitionGroup>
3306 + <ClCompile>
3307 + <PreprocessorDefinitions>Py_BUILD_CORE_MODULE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3308 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
3309 + </ClCompile>
3310 + <Link>
3311 + <OutputFile>$(OutDir)$(ProjectName).pyd</OutputFile>
3312 + <ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
3313 + <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
3314 + </Link>
3315 + <PostBuildEvent>
3316 + <Command>
3317 + </Command>
3318 + </PostBuildEvent>
3319 + </ItemDefinitionGroup>
3320 +</Project>
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
3325 @@ -0,0 +1,39 @@
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" />
3331 + </ImportGroup>
3332 + <PropertyGroup Label="UserMacros">
3333 + <PythonExe>$(SolutionDir)python_d.exe</PythonExe>
3334 + </PropertyGroup>
3335 + <PropertyGroup>
3336 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3337 + <LinkIncremental>false</LinkIncremental>
3338 + <GenerateManifest>false</GenerateManifest>
3339 + <EmbedManifest>false</EmbedManifest>
3340 + </PropertyGroup>
3341 + <ItemDefinitionGroup>
3342 + <ClCompile>
3343 + <Optimization>Disabled</Optimization>
3344 + <InlineFunctionExpansion>Default</InlineFunctionExpansion>
3345 + <IntrinsicFunctions>false</IntrinsicFunctions>
3346 + <PreprocessorDefinitions>Py_BUILD_CORE_MODULE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3347 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
3348 + </ClCompile>
3349 + <Link>
3350 + <OutputFile>$(OutDir)$(ProjectName)_d.pyd</OutputFile>
3351 + <ProgramDatabaseFile>$(OutDir)$(ProjectName)_d.pdb</ProgramDatabaseFile>
3352 + <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
3353 + </Link>
3354 + <PostBuildEvent>
3355 + <Command>
3356 + </Command>
3357 + </PostBuildEvent>
3358 + </ItemDefinitionGroup>
3359 + <ItemGroup>
3360 + <BuildMacro Include="PythonExe">
3361 + <Value>$(PythonExe)</Value>
3362 + </BuildMacro>
3363 + </ItemGroup>
3364 +</Project>
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
3369 @@ -0,0 +1,231 @@
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>
3405 + </ItemGroup>
3406 + <PropertyGroup Label="Globals">
3407 + <ProjectGuid>{D06B6426-4762-44CC-8BAD-D79052507F2F}</ProjectGuid>
3408 + <RootNamespace>pyexpat</RootNamespace>
3409 + <Keyword>Win32Proj</Keyword>
3410 + </PropertyGroup>
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>
3416 + </PropertyGroup>
3417 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
3418 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3419 + <CharacterSet>NotSet</CharacterSet>
3420 + <WholeProgramOptimization>true</WholeProgramOptimization>
3421 + </PropertyGroup>
3422 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3423 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3424 + <CharacterSet>NotSet</CharacterSet>
3425 + <WholeProgramOptimization>true</WholeProgramOptimization>
3426 + </PropertyGroup>
3427 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3428 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3429 + <CharacterSet>NotSet</CharacterSet>
3430 + </PropertyGroup>
3431 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
3432 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3433 + <CharacterSet>NotSet</CharacterSet>
3434 + <WholeProgramOptimization>true</WholeProgramOptimization>
3435 + </PropertyGroup>
3436 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
3437 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3438 + <CharacterSet>NotSet</CharacterSet>
3439 + <WholeProgramOptimization>true</WholeProgramOptimization>
3440 + </PropertyGroup>
3441 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3442 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3443 + <CharacterSet>NotSet</CharacterSet>
3444 + <WholeProgramOptimization>true</WholeProgramOptimization>
3445 + </PropertyGroup>
3446 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3447 + <ConfigurationType>DynamicLibrary</ConfigurationType>
3448 + <CharacterSet>NotSet</CharacterSet>
3449 + </PropertyGroup>
3450 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3451 + <ImportGroup Label="ExtensionSettings">
3452 + </ImportGroup>
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" />
3457 + </ImportGroup>
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" />
3462 + </ImportGroup>
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" />
3466 + </ImportGroup>
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" />
3470 + </ImportGroup>
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" />
3476 + </ImportGroup>
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" />
3482 + </ImportGroup>
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" />
3487 + </ImportGroup>
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" />
3492 + </ImportGroup>
3493 + <PropertyGroup Label="UserMacros" />
3494 + <PropertyGroup>
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'" />
3520 + </PropertyGroup>
3521 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
3522 + <ClCompile>
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>
3525 + </ClCompile>
3526 + </ItemDefinitionGroup>
3527 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3528 + <Midl>
3529 + <TargetEnvironment>X64</TargetEnvironment>
3530 + </Midl>
3531 + <ClCompile>
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>
3534 + </ClCompile>
3535 + </ItemDefinitionGroup>
3536 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
3537 + <ClCompile>
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>
3540 + </ClCompile>
3541 + </ItemDefinitionGroup>
3542 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3543 + <Midl>
3544 + <TargetEnvironment>X64</TargetEnvironment>
3545 + </Midl>
3546 + <ClCompile>
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>
3549 + </ClCompile>
3550 + </ItemDefinitionGroup>
3551 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
3552 + <ClCompile>
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>
3555 + </ClCompile>
3556 + </ItemDefinitionGroup>
3557 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
3558 + <Midl>
3559 + <TargetEnvironment>X64</TargetEnvironment>
3560 + </Midl>
3561 + <ClCompile>
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>
3564 + </ClCompile>
3565 + <Link>
3566 + <TargetMachine>MachineX64</TargetMachine>
3567 + </Link>
3568 + </ItemDefinitionGroup>
3569 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
3570 + <ClCompile>
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>
3573 + </ClCompile>
3574 + </ItemDefinitionGroup>
3575 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
3576 + <Midl>
3577 + <TargetEnvironment>X64</TargetEnvironment>
3578 + </Midl>
3579 + <ClCompile>
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>
3582 + </ClCompile>
3583 + <Link>
3584 + <TargetMachine>MachineX64</TargetMachine>
3585 + </Link>
3586 + </ItemDefinitionGroup>
3587 + <ItemGroup>
3588 + <ClInclude Include="..\..\Modules\expat\xmlrole.h" />
3589 + <ClInclude Include="..\..\Modules\expat\xmltok.h" />
3590 + </ItemGroup>
3591 + <ItemGroup>
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" />
3596 + </ItemGroup>
3597 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
3598 + <ImportGroup Label="ExtensionTargets">
3599 + </ImportGroup>
3600 +</Project>
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
3605 @@ -0,0 +1,115 @@
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>
3627 + </PropertyGroup>
3628 + <PropertyGroup>
3629 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
3630 + <OutDir>$(SolutionDir)\</OutDir>
3631 + <IntDir>$(SolutionDir)$(PlatformName)-temp-$(Configuration)\$(ProjectName)\</IntDir>
3632 + <LinkIncremental>false</LinkIncremental>
3633 + </PropertyGroup>
3634 + <ItemDefinitionGroup>
3635 + <ClCompile>
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>
3649 + </ClCompile>
3650 + <Link>
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>
3659 + </Link>
3660 + <ResourceCompile>
3661 + <AdditionalIncludeDirectories>..;..\..\PC;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3662 + </ResourceCompile>
3663 + </ItemDefinitionGroup>
3664 + <ItemGroup>
3665 + <BuildMacro Include="PyDllName">
3666 + <Value>$(PyDllName)</Value>
3667 + </BuildMacro>
3668 + <BuildMacro Include="PythonExe">
3669 + <Value>$(PythonExe)</Value>
3670 + </BuildMacro>
3671 + <BuildMacro Include="externalsDir">
3672 + <Value>$(externalsDir)</Value>
3673 + </BuildMacro>
3674 + <BuildMacro Include="bsddbDir">
3675 + <Value>$(bsddbDir)</Value>
3676 + </BuildMacro>
3677 + <BuildMacro Include="bsddbDepLibs">
3678 + <Value>$(bsddbDepLibs)</Value>
3679 + </BuildMacro>
3680 + <BuildMacro Include="bsddb44Dir">
3681 + <Value>$(bsddb44Dir)</Value>
3682 + </BuildMacro>
3683 + <BuildMacro Include="bsddb44DepLibs">
3684 + <Value>$(bsddb44DepLibs)</Value>
3685 + </BuildMacro>
3686 + <BuildMacro Include="bsddb47Dir">
3687 + <Value>$(bsddb47Dir)</Value>
3688 + </BuildMacro>
3689 + <BuildMacro Include="bsddb47DepLibs">
3690 + <Value>$(bsddb47DepLibs)</Value>
3691 + </BuildMacro>
3692 + <BuildMacro Include="sqlite3Dir">
3693 + <Value>$(sqlite3Dir)</Value>
3694 + </BuildMacro>
3695 + <BuildMacro Include="bz2Dir">
3696 + <Value>$(bz2Dir)</Value>
3697 + </BuildMacro>
3698 + <BuildMacro Include="opensslDir">
3699 + <Value>$(opensslDir)</Value>
3700 + </BuildMacro>
3701 + <BuildMacro Include="tcltkDir">
3702 + <Value>$(tcltkDir)</Value>
3703 + </BuildMacro>
3704 + <BuildMacro Include="tcltk64Dir">
3705 + <Value>$(tcltk64Dir)</Value>
3706 + </BuildMacro>
3707 + <BuildMacro Include="tcltkLib">
3708 + <Value>$(tcltkLib)</Value>
3709 + </BuildMacro>
3710 + <BuildMacro Include="tcltkLibDebug">
3711 + <Value>$(tcltkLibDebug)</Value>
3712 + </BuildMacro>
3713 + <BuildMacro Include="tcltk64Lib">
3714 + <Value>$(tcltk64Lib)</Value>
3715 + </BuildMacro>
3716 + <BuildMacro Include="tcltk64LibDebug">
3717 + <Value>$(tcltk64LibDebug)</Value>
3718 + </BuildMacro>
3719 + </ItemGroup>
3720 +</Project>
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
3725 @@ -0,0 +1,358 @@
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>
3761 + </ItemGroup>
3762 + <PropertyGroup Label="Globals">
3763 + <ProjectGuid>{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}</ProjectGuid>
3764 + </PropertyGroup>
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>
3770 + </PropertyGroup>
3771 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
3772 + <ConfigurationType>Application</ConfigurationType>
3773 + <UseOfMfc>false</UseOfMfc>
3774 + <CharacterSet>MultiByte</CharacterSet>
3775 + </PropertyGroup>
3776 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3777 + <ConfigurationType>Application</ConfigurationType>
3778 + <UseOfMfc>false</UseOfMfc>
3779 + <CharacterSet>NotSet</CharacterSet>
3780 + </PropertyGroup>
3781 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3782 + <ConfigurationType>Application</ConfigurationType>
3783 + <UseOfMfc>false</UseOfMfc>
3784 + <CharacterSet>MultiByte</CharacterSet>
3785 + </PropertyGroup>
3786 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
3787 + <ConfigurationType>Application</ConfigurationType>
3788 + <UseOfMfc>false</UseOfMfc>
3789 + <CharacterSet>MultiByte</CharacterSet>
3790 + </PropertyGroup>
3791 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
3792 + <ConfigurationType>Application</ConfigurationType>
3793 + <UseOfMfc>false</UseOfMfc>
3794 + <CharacterSet>MultiByte</CharacterSet>
3795 + </PropertyGroup>
3796 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3797 + <ConfigurationType>Application</ConfigurationType>
3798 + <UseOfMfc>false</UseOfMfc>
3799 + <CharacterSet>MultiByte</CharacterSet>
3800 + </PropertyGroup>
3801 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3802 + <ConfigurationType>Application</ConfigurationType>
3803 + <UseOfMfc>false</UseOfMfc>
3804 + <CharacterSet>MultiByte</CharacterSet>
3805 + </PropertyGroup>
3806 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3807 + <ImportGroup Label="ExtensionSettings">
3808 + </ImportGroup>
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" />
3814 + </ImportGroup>
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" />
3820 + </ImportGroup>
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" />
3825 + </ImportGroup>
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" />
3830 + </ImportGroup>
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" />
3837 + </ImportGroup>
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" />
3844 + </ImportGroup>
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" />
3850 + </ImportGroup>
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" />
3856 + </ImportGroup>
3857 + <PropertyGroup Label="UserMacros" />
3858 + <PropertyGroup>
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'" />
3884 + </PropertyGroup>
3885 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
3886 + <ClCompile>
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>
3893 + </ClCompile>
3894 + <ResourceCompile>
3895 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3896 + <Culture>0x0409</Culture>
3897 + </ResourceCompile>
3898 + <Link>
3899 + <OutputFile>$(OutDir)python.exe</OutputFile>
3900 + <SubSystem>Console</SubSystem>
3901 + <StackReserveSize>2000000</StackReserveSize>
3902 + <BaseAddress>0x1d000000</BaseAddress>
3903 + </Link>
3904 + </ItemDefinitionGroup>
3905 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3906 + <Midl>
3907 + <TargetEnvironment>X64</TargetEnvironment>
3908 + </Midl>
3909 + <ClCompile>
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>
3916 + </ClCompile>
3917 + <ResourceCompile>
3918 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3919 + <Culture>0x0409</Culture>
3920 + </ResourceCompile>
3921 + <Link>
3922 + <OutputFile>$(OutDir)python.exe</OutputFile>
3923 + <SubSystem>Console</SubSystem>
3924 + <StackReserveSize>2000000</StackReserveSize>
3925 + <BaseAddress>0x1d000000</BaseAddress>
3926 + </Link>
3927 + </ItemDefinitionGroup>
3928 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
3929 + <ClCompile>
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>
3937 + </ClCompile>
3938 + <ResourceCompile>
3939 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3940 + <Culture>0x0409</Culture>
3941 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3942 + </ResourceCompile>
3943 + <Link>
3944 + <OutputFile>$(OutDir)python_d.exe</OutputFile>
3945 + <SubSystem>Console</SubSystem>
3946 + <StackReserveSize>2000000</StackReserveSize>
3947 + <BaseAddress>0x1d000000</BaseAddress>
3948 + </Link>
3949 + </ItemDefinitionGroup>
3950 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3951 + <Midl>
3952 + <TargetEnvironment>X64</TargetEnvironment>
3953 + </Midl>
3954 + <ClCompile>
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>
3962 + </ClCompile>
3963 + <ResourceCompile>
3964 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3965 + <Culture>0x0409</Culture>
3966 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
3967 + </ResourceCompile>
3968 + <Link>
3969 + <OutputFile>$(OutDir)python_d.exe</OutputFile>
3970 + <SubSystem>Console</SubSystem>
3971 + <StackReserveSize>2100000</StackReserveSize>
3972 + <BaseAddress>0x1d000000</BaseAddress>
3973 + </Link>
3974 + </ItemDefinitionGroup>
3975 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
3976 + <ClCompile>
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>
3983 + </ClCompile>
3984 + <ResourceCompile>
3985 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
3986 + <Culture>0x0409</Culture>
3987 + </ResourceCompile>
3988 + <Link>
3989 + <OutputFile>$(OutDir)python.exe</OutputFile>
3990 + <SubSystem>Console</SubSystem>
3991 + <StackReserveSize>2000000</StackReserveSize>
3992 + <BaseAddress>0x1d000000</BaseAddress>
3993 + <ImportLibrary>
3994 + </ImportLibrary>
3995 + </Link>
3996 + </ItemDefinitionGroup>
3997 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
3998 + <Midl>
3999 + <TargetEnvironment>X64</TargetEnvironment>
4000 + </Midl>
4001 + <ClCompile>
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>
4008 + </ClCompile>
4009 + <ResourceCompile>
4010 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4011 + <Culture>0x0409</Culture>
4012 + </ResourceCompile>
4013 + <Link>
4014 + <OutputFile>$(OutDir)python.exe</OutputFile>
4015 + <SubSystem>Console</SubSystem>
4016 + <StackReserveSize>2000000</StackReserveSize>
4017 + <BaseAddress>0x1d000000</BaseAddress>
4018 + <ImportLibrary>
4019 + </ImportLibrary>
4020 + <TargetMachine>MachineX64</TargetMachine>
4021 + </Link>
4022 + </ItemDefinitionGroup>
4023 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
4024 + <ClCompile>
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>
4031 + </ClCompile>
4032 + <ResourceCompile>
4033 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4034 + <Culture>0x0409</Culture>
4035 + </ResourceCompile>
4036 + <Link>
4037 + <OutputFile>$(OutDir)python.exe</OutputFile>
4038 + <SubSystem>Console</SubSystem>
4039 + <StackReserveSize>2000000</StackReserveSize>
4040 + <BaseAddress>0x1d000000</BaseAddress>
4041 + <ImportLibrary>
4042 + </ImportLibrary>
4043 + </Link>
4044 + </ItemDefinitionGroup>
4045 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
4046 + <Midl>
4047 + <TargetEnvironment>X64</TargetEnvironment>
4048 + </Midl>
4049 + <ClCompile>
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>
4056 + </ClCompile>
4057 + <ResourceCompile>
4058 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4059 + <Culture>0x0409</Culture>
4060 + </ResourceCompile>
4061 + <Link>
4062 + <OutputFile>$(OutDir)python.exe</OutputFile>
4063 + <SubSystem>Console</SubSystem>
4064 + <StackReserveSize>2000000</StackReserveSize>
4065 + <BaseAddress>0x1d000000</BaseAddress>
4066 + <ImportLibrary>
4067 + </ImportLibrary>
4068 + <TargetMachine>MachineX64</TargetMachine>
4069 + </Link>
4070 + </ItemDefinitionGroup>
4071 + <ItemGroup>
4072 + <None Include="..\..\PC\pycon.ico" />
4073 + </ItemGroup>
4074 + <ItemGroup>
4075 + <ResourceCompile Include="..\..\PC\python_exe.rc" />
4076 + </ItemGroup>
4077 + <ItemGroup>
4078 + <ClCompile Include="..\..\Modules\python.c" />
4079 + </ItemGroup>
4080 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
4081 + <ImportGroup Label="ExtensionTargets">
4082 + </ImportGroup>
4083 +</Project>
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
4088 @@ -0,0 +1,670 @@
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>
4124 + </ItemGroup>
4125 + <PropertyGroup Label="Globals">
4126 + <ProjectGuid>{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}</ProjectGuid>
4127 + <RootNamespace>pythoncore</RootNamespace>
4128 + </PropertyGroup>
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>
4133 + </PropertyGroup>
4134 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
4135 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4136 + <UseOfMfc>false</UseOfMfc>
4137 + </PropertyGroup>
4138 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
4139 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4140 + <UseOfMfc>false</UseOfMfc>
4141 + <CharacterSet>NotSet</CharacterSet>
4142 + </PropertyGroup>
4143 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
4144 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4145 + <UseOfMfc>false</UseOfMfc>
4146 + </PropertyGroup>
4147 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
4148 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4149 + <UseOfMfc>false</UseOfMfc>
4150 + </PropertyGroup>
4151 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
4152 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4153 + <UseOfMfc>false</UseOfMfc>
4154 + </PropertyGroup>
4155 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4156 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4157 + <UseOfMfc>false</UseOfMfc>
4158 + </PropertyGroup>
4159 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4160 + <ConfigurationType>DynamicLibrary</ConfigurationType>
4161 + <UseOfMfc>false</UseOfMfc>
4162 + </PropertyGroup>
4163 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4164 + <ImportGroup Label="ExtensionSettings">
4165 + </ImportGroup>
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" />
4171 + </ImportGroup>
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" />
4177 + </ImportGroup>
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" />
4182 + </ImportGroup>
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" />
4187 + </ImportGroup>
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" />
4194 + </ImportGroup>
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" />
4201 + </ImportGroup>
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" />
4207 + </ImportGroup>
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" />
4213 + </ImportGroup>
4214 + <PropertyGroup Label="UserMacros" />
4215 + <PropertyGroup>
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'" />
4241 + </PropertyGroup>
4242 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
4243 + <ClCompile>
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>
4248 + </ClCompile>
4249 + <ResourceCompile>
4250 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4251 + <Culture>0x0409</Culture>
4252 + <AdditionalIncludeDirectories>..;..\..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4253 + </ResourceCompile>
4254 + <PreLinkEvent>
4255 + <Message>Generate build information...</Message>
4256 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4257 + </PreLinkEvent>
4258 + <Link>
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>
4265 + </Link>
4266 + </ItemDefinitionGroup>
4267 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
4268 + <Midl>
4269 + <TargetEnvironment>X64</TargetEnvironment>
4270 + </Midl>
4271 + <ClCompile>
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>
4276 + </ClCompile>
4277 + <ResourceCompile>
4278 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4279 + <Culture>0x0409</Culture>
4280 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4281 + </ResourceCompile>
4282 + <PreLinkEvent>
4283 + <Message>Generate build information...</Message>
4284 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4285 + </PreLinkEvent>
4286 + <Link>
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>
4293 + </Link>
4294 + </ItemDefinitionGroup>
4295 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4296 + <ClCompile>
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>
4304 + </ClCompile>
4305 + <ResourceCompile>
4306 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4307 + <Culture>0x0409</Culture>
4308 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4309 + </ResourceCompile>
4310 + <PreLinkEvent>
4311 + <Message>Generate build information...</Message>
4312 + <Command>"$(SolutionDir)make_buildinfo.exe" Debug</Command>
4313 + </PreLinkEvent>
4314 + <Link>
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>
4321 + </Link>
4322 + </ItemDefinitionGroup>
4323 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
4324 + <Midl>
4325 + <TargetEnvironment>X64</TargetEnvironment>
4326 + </Midl>
4327 + <ClCompile>
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>
4335 + </ClCompile>
4336 + <ResourceCompile>
4337 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4338 + <Culture>0x0409</Culture>
4339 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4340 + </ResourceCompile>
4341 + <PreLinkEvent>
4342 + <Message>Generate build information...</Message>
4343 + <Command>"$(SolutionDir)make_buildinfo.exe" Debug</Command>
4344 + </PreLinkEvent>
4345 + <Link>
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>
4352 + </Link>
4353 + </ItemDefinitionGroup>
4354 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
4355 + <ClCompile>
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>
4360 + </ClCompile>
4361 + <ResourceCompile>
4362 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4363 + <Culture>0x0409</Culture>
4364 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4365 + </ResourceCompile>
4366 + <PreLinkEvent>
4367 + <Message>Generate build information...</Message>
4368 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4369 + </PreLinkEvent>
4370 + <Link>
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>
4377 + </Link>
4378 + </ItemDefinitionGroup>
4379 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
4380 + <Midl>
4381 + <TargetEnvironment>X64</TargetEnvironment>
4382 + </Midl>
4383 + <ClCompile>
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>
4388 + </ClCompile>
4389 + <ResourceCompile>
4390 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4391 + <Culture>0x0409</Culture>
4392 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4393 + </ResourceCompile>
4394 + <PreLinkEvent>
4395 + <Message>Generate build information...</Message>
4396 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4397 + </PreLinkEvent>
4398 + <Link>
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>
4406 + </Link>
4407 + </ItemDefinitionGroup>
4408 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
4409 + <ClCompile>
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>
4414 + </ClCompile>
4415 + <ResourceCompile>
4416 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4417 + <Culture>0x0409</Culture>
4418 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4419 + </ResourceCompile>
4420 + <PreLinkEvent>
4421 + <Message>Generate build information...</Message>
4422 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4423 + </PreLinkEvent>
4424 + <Link>
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>
4431 + </Link>
4432 + </ItemDefinitionGroup>
4433 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
4434 + <Midl>
4435 + <TargetEnvironment>X64</TargetEnvironment>
4436 + </Midl>
4437 + <ClCompile>
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>
4442 + </ClCompile>
4443 + <ResourceCompile>
4444 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4445 + <Culture>0x0409</Culture>
4446 + <AdditionalIncludeDirectories>..;..\..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
4447 + </ResourceCompile>
4448 + <PreLinkEvent>
4449 + <Message>Generate build information...</Message>
4450 + <Command>"$(SolutionDir)make_buildinfo.exe" Release</Command>
4451 + </PreLinkEvent>
4452 + <Link>
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>
4460 + </Link>
4461 + </ItemDefinitionGroup>
4462 + <ItemGroup>
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" />
4584 + </ItemGroup>
4585 + <ItemGroup>
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" />
4751 + </ItemGroup>
4752 + <ItemGroup>
4753 + <ResourceCompile Include="..\..\PC\python_nt.rc" />
4754 + </ItemGroup>
4755 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
4756 + <ImportGroup Label="ExtensionTargets">
4757 + </ImportGroup>
4758 +</Project>
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
4763 @@ -0,0 +1,340 @@
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>
4799 + </ItemGroup>
4800 + <PropertyGroup Label="Globals">
4801 + <ProjectGuid>{F4229CC3-873C-49AE-9729-DD308ED4CD4A}</ProjectGuid>
4802 + </PropertyGroup>
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>
4807 + </PropertyGroup>
4808 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
4809 + <ConfigurationType>Application</ConfigurationType>
4810 + <UseOfMfc>false</UseOfMfc>
4811 + </PropertyGroup>
4812 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
4813 + <ConfigurationType>Application</ConfigurationType>
4814 + <UseOfMfc>false</UseOfMfc>
4815 + </PropertyGroup>
4816 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
4817 + <ConfigurationType>Application</ConfigurationType>
4818 + <UseOfMfc>false</UseOfMfc>
4819 + <CharacterSet>NotSet</CharacterSet>
4820 + </PropertyGroup>
4821 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
4822 + <ConfigurationType>Application</ConfigurationType>
4823 + <UseOfMfc>false</UseOfMfc>
4824 + </PropertyGroup>
4825 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
4826 + <ConfigurationType>Application</ConfigurationType>
4827 + <UseOfMfc>false</UseOfMfc>
4828 + </PropertyGroup>
4829 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4830 + <ConfigurationType>Application</ConfigurationType>
4831 + <UseOfMfc>false</UseOfMfc>
4832 + </PropertyGroup>
4833 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4834 + <ConfigurationType>Application</ConfigurationType>
4835 + <UseOfMfc>false</UseOfMfc>
4836 + </PropertyGroup>
4837 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
4838 + <ImportGroup Label="ExtensionSettings">
4839 + </ImportGroup>
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" />
4845 + </ImportGroup>
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" />
4851 + </ImportGroup>
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" />
4856 + </ImportGroup>
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" />
4861 + </ImportGroup>
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" />
4868 + </ImportGroup>
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" />
4875 + </ImportGroup>
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" />
4881 + </ImportGroup>
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" />
4887 + </ImportGroup>
4888 + <PropertyGroup Label="UserMacros" />
4889 + <PropertyGroup>
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'" />
4915 + </PropertyGroup>
4916 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4917 + <ClCompile>
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>
4924 + </ClCompile>
4925 + <ResourceCompile>
4926 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4927 + <Culture>0x0409</Culture>
4928 + </ResourceCompile>
4929 + <Link>
4930 + <OutputFile>$(OutDir)pythonw_d.exe</OutputFile>
4931 + <StackReserveSize>2000000</StackReserveSize>
4932 + <BaseAddress>0x1d000000</BaseAddress>
4933 + <TargetMachine>MachineX86</TargetMachine>
4934 + </Link>
4935 + </ItemDefinitionGroup>
4936 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
4937 + <Midl>
4938 + <TargetEnvironment>X64</TargetEnvironment>
4939 + </Midl>
4940 + <ClCompile>
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>
4947 + </ClCompile>
4948 + <ResourceCompile>
4949 + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4950 + <Culture>0x0409</Culture>
4951 + </ResourceCompile>
4952 + <Link>
4953 + <OutputFile>$(OutDir)pythonw_d.exe</OutputFile>
4954 + <StackReserveSize>2000000</StackReserveSize>
4955 + <BaseAddress>0x1d000000</BaseAddress>
4956 + </Link>
4957 + </ItemDefinitionGroup>
4958 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
4959 + <ClCompile>
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>
4966 + </ClCompile>
4967 + <ResourceCompile>
4968 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4969 + <Culture>0x0409</Culture>
4970 + </ResourceCompile>
4971 + <Link>
4972 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
4973 + <StackReserveSize>2000000</StackReserveSize>
4974 + <BaseAddress>0x1d000000</BaseAddress>
4975 + <TargetMachine>MachineX86</TargetMachine>
4976 + </Link>
4977 + </ItemDefinitionGroup>
4978 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
4979 + <Midl>
4980 + <TargetEnvironment>X64</TargetEnvironment>
4981 + </Midl>
4982 + <ClCompile>
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>
4989 + </ClCompile>
4990 + <ResourceCompile>
4991 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
4992 + <Culture>0x0409</Culture>
4993 + </ResourceCompile>
4994 + <Link>
4995 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
4996 + <StackReserveSize>2000000</StackReserveSize>
4997 + <BaseAddress>0x1d000000</BaseAddress>
4998 + </Link>
4999 + </ItemDefinitionGroup>
5000 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5001 + <ClCompile>
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>
5008 + </ClCompile>
5009 + <ResourceCompile>
5010 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5011 + <Culture>0x0409</Culture>
5012 + </ResourceCompile>
5013 + <Link>
5014 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5015 + <StackReserveSize>2000000</StackReserveSize>
5016 + <BaseAddress>0x1d000000</BaseAddress>
5017 + <ImportLibrary>
5018 + </ImportLibrary>
5019 + <TargetMachine>MachineX86</TargetMachine>
5020 + </Link>
5021 + </ItemDefinitionGroup>
5022 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5023 + <Midl>
5024 + <TargetEnvironment>X64</TargetEnvironment>
5025 + </Midl>
5026 + <ClCompile>
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>
5033 + </ClCompile>
5034 + <ResourceCompile>
5035 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5036 + <Culture>0x0409</Culture>
5037 + </ResourceCompile>
5038 + <Link>
5039 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5040 + <StackReserveSize>2000000</StackReserveSize>
5041 + <BaseAddress>0x1d000000</BaseAddress>
5042 + <ImportLibrary>
5043 + </ImportLibrary>
5044 + <TargetMachine>MachineX64</TargetMachine>
5045 + </Link>
5046 + </ItemDefinitionGroup>
5047 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5048 + <ClCompile>
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>
5055 + </ClCompile>
5056 + <ResourceCompile>
5057 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5058 + <Culture>0x0409</Culture>
5059 + </ResourceCompile>
5060 + <Link>
5061 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5062 + <StackReserveSize>2000000</StackReserveSize>
5063 + <BaseAddress>0x1d000000</BaseAddress>
5064 + <ImportLibrary>
5065 + </ImportLibrary>
5066 + <TargetMachine>MachineX86</TargetMachine>
5067 + </Link>
5068 + </ItemDefinitionGroup>
5069 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5070 + <Midl>
5071 + <TargetEnvironment>X64</TargetEnvironment>
5072 + </Midl>
5073 + <ClCompile>
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>
5080 + </ClCompile>
5081 + <ResourceCompile>
5082 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5083 + <Culture>0x0409</Culture>
5084 + </ResourceCompile>
5085 + <Link>
5086 + <OutputFile>$(OutDir)pythonw.exe</OutputFile>
5087 + <StackReserveSize>2000000</StackReserveSize>
5088 + <BaseAddress>0x1d000000</BaseAddress>
5089 + <ImportLibrary>
5090 + </ImportLibrary>
5091 + <TargetMachine>MachineX64</TargetMachine>
5092 + </Link>
5093 + </ItemDefinitionGroup>
5094 + <ItemGroup>
5095 + <ResourceCompile Include="..\..\PC\python_exe.rc" />
5096 + </ItemGroup>
5097 + <ItemGroup>
5098 + <ClCompile Include="..\..\PC\WinMain.c" />
5099 + </ItemGroup>
5100 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5101 + <ImportGroup Label="ExtensionTargets">
5102 + </ImportGroup>
5103 +</Project>
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
5108 @@ -0,0 +1,19 @@
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>
5113 + </PropertyGroup>
5114 + <PropertyGroup>
5115 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
5116 + </PropertyGroup>
5117 + <ItemDefinitionGroup>
5118 + <ClCompile>
5119 + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5120 + </ClCompile>
5121 + </ItemDefinitionGroup>
5122 + <ItemGroup>
5123 + <BuildMacro Include="KillPythonExe">
5124 + <Value>$(KillPythonExe)</Value>
5125 + </BuildMacro>
5126 + </ItemGroup>
5127 +</Project>
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
5132 @@ -0,0 +1,228 @@
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>
5168 + </ItemGroup>
5169 + <PropertyGroup Label="Globals">
5170 + <ProjectGuid>{18CAE28C-B454-46C1-87A0-493D91D97F03}</ProjectGuid>
5171 + <RootNamespace>select</RootNamespace>
5172 + <Keyword>Win32Proj</Keyword>
5173 + </PropertyGroup>
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>
5179 + </PropertyGroup>
5180 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5181 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5182 + <CharacterSet>NotSet</CharacterSet>
5183 + <WholeProgramOptimization>true</WholeProgramOptimization>
5184 + </PropertyGroup>
5185 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5186 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5187 + <CharacterSet>NotSet</CharacterSet>
5188 + <WholeProgramOptimization>true</WholeProgramOptimization>
5189 + </PropertyGroup>
5190 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5191 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5192 + <CharacterSet>NotSet</CharacterSet>
5193 + </PropertyGroup>
5194 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5195 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5196 + <CharacterSet>NotSet</CharacterSet>
5197 + <WholeProgramOptimization>true</WholeProgramOptimization>
5198 + </PropertyGroup>
5199 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5200 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5201 + <CharacterSet>NotSet</CharacterSet>
5202 + <WholeProgramOptimization>true</WholeProgramOptimization>
5203 + </PropertyGroup>
5204 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5205 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5206 + <CharacterSet>NotSet</CharacterSet>
5207 + <WholeProgramOptimization>true</WholeProgramOptimization>
5208 + </PropertyGroup>
5209 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5210 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5211 + <CharacterSet>NotSet</CharacterSet>
5212 + </PropertyGroup>
5213 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5214 + <ImportGroup Label="ExtensionSettings">
5215 + </ImportGroup>
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" />
5220 + </ImportGroup>
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" />
5225 + </ImportGroup>
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" />
5229 + </ImportGroup>
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" />
5233 + </ImportGroup>
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" />
5239 + </ImportGroup>
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" />
5245 + </ImportGroup>
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" />
5250 + </ImportGroup>
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" />
5255 + </ImportGroup>
5256 + <PropertyGroup Label="UserMacros" />
5257 + <PropertyGroup>
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'" />
5283 + </PropertyGroup>
5284 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5285 + <Link>
5286 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5287 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5288 + <BaseAddress>0x1D110000</BaseAddress>
5289 + </Link>
5290 + </ItemDefinitionGroup>
5291 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5292 + <Midl>
5293 + <TargetEnvironment>X64</TargetEnvironment>
5294 + </Midl>
5295 + <Link>
5296 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5297 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5298 + <BaseAddress>0x1D110000</BaseAddress>
5299 + </Link>
5300 + </ItemDefinitionGroup>
5301 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5302 + <Link>
5303 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5304 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5305 + <BaseAddress>0x1D110000</BaseAddress>
5306 + </Link>
5307 + </ItemDefinitionGroup>
5308 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
5309 + <Midl>
5310 + <TargetEnvironment>X64</TargetEnvironment>
5311 + </Midl>
5312 + <Link>
5313 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5314 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5315 + <BaseAddress>0x1D110000</BaseAddress>
5316 + </Link>
5317 + </ItemDefinitionGroup>
5318 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5319 + <Link>
5320 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5321 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5322 + <BaseAddress>0x1D110000</BaseAddress>
5323 + </Link>
5324 + </ItemDefinitionGroup>
5325 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5326 + <Midl>
5327 + <TargetEnvironment>X64</TargetEnvironment>
5328 + </Midl>
5329 + <Link>
5330 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5331 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5332 + <BaseAddress>0x1D110000</BaseAddress>
5333 + <TargetMachine>MachineX64</TargetMachine>
5334 + </Link>
5335 + </ItemDefinitionGroup>
5336 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5337 + <Link>
5338 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5339 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5340 + <BaseAddress>0x1D110000</BaseAddress>
5341 + </Link>
5342 + </ItemDefinitionGroup>
5343 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5344 + <Midl>
5345 + <TargetEnvironment>X64</TargetEnvironment>
5346 + </Midl>
5347 + <Link>
5348 + <AdditionalDependencies>wsock32.lib;%(AdditionalDependencies)</AdditionalDependencies>
5349 + <IgnoreSpecificDefaultLibraries>libc;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
5350 + <BaseAddress>0x1D110000</BaseAddress>
5351 + <TargetMachine>MachineX64</TargetMachine>
5352 + </Link>
5353 + </ItemDefinitionGroup>
5354 + <ItemGroup>
5355 + <ClCompile Include="..\..\Modules\selectmodule.c" />
5356 + </ItemGroup>
5357 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5358 + <ImportGroup Label="ExtensionTargets">
5359 + </ImportGroup>
5360 +</Project>
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
5365 @@ -0,0 +1,240 @@
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>
5401 + </ItemGroup>
5402 + <PropertyGroup Label="Globals">
5403 + <ProjectGuid>{A1A295E5-463C-437F-81CA-1F32367685DA}</ProjectGuid>
5404 + <RootNamespace>sqlite3</RootNamespace>
5405 + <Keyword>Win32Proj</Keyword>
5406 + </PropertyGroup>
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>
5412 + </PropertyGroup>
5413 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5414 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5415 + <CharacterSet>NotSet</CharacterSet>
5416 + <WholeProgramOptimization>true</WholeProgramOptimization>
5417 + </PropertyGroup>
5418 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5419 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5420 + <CharacterSet>NotSet</CharacterSet>
5421 + <WholeProgramOptimization>true</WholeProgramOptimization>
5422 + </PropertyGroup>
5423 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5424 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5425 + <CharacterSet>NotSet</CharacterSet>
5426 + </PropertyGroup>
5427 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5428 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5429 + <CharacterSet>NotSet</CharacterSet>
5430 + <WholeProgramOptimization>true</WholeProgramOptimization>
5431 + </PropertyGroup>
5432 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5433 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5434 + <CharacterSet>NotSet</CharacterSet>
5435 + <WholeProgramOptimization>true</WholeProgramOptimization>
5436 + </PropertyGroup>
5437 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5438 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5439 + <CharacterSet>NotSet</CharacterSet>
5440 + <WholeProgramOptimization>true</WholeProgramOptimization>
5441 + </PropertyGroup>
5442 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5443 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5444 + <CharacterSet>NotSet</CharacterSet>
5445 + </PropertyGroup>
5446 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5447 + <ImportGroup Label="ExtensionSettings">
5448 + </ImportGroup>
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" />
5453 + </ImportGroup>
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" />
5458 + </ImportGroup>
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" />
5462 + </ImportGroup>
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" />
5466 + </ImportGroup>
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" />
5472 + </ImportGroup>
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" />
5478 + </ImportGroup>
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" />
5483 + </ImportGroup>
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" />
5488 + </ImportGroup>
5489 + <PropertyGroup Label="UserMacros" />
5490 + <PropertyGroup>
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'" />
5516 + </PropertyGroup>
5517 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5518 + <ClCompile>
5519 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5520 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5521 + </ClCompile>
5522 + <Link>
5523 + <OutputFile>$(OutDir)$(ProjectName)_d.dll</OutputFile>
5524 + </Link>
5525 + </ItemDefinitionGroup>
5526 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5527 + <Midl>
5528 + <TargetEnvironment>X64</TargetEnvironment>
5529 + </Midl>
5530 + <ClCompile>
5531 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5532 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5533 + </ClCompile>
5534 + <Link>
5535 + <OutputFile>$(OutDir)$(ProjectName)_d.dll</OutputFile>
5536 + </Link>
5537 + </ItemDefinitionGroup>
5538 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5539 + <ClCompile>
5540 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5541 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5542 + </ClCompile>
5543 + <Link>
5544 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5545 + </Link>
5546 + </ItemDefinitionGroup>
5547 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
5548 + <Midl>
5549 + <TargetEnvironment>X64</TargetEnvironment>
5550 + </Midl>
5551 + <ClCompile>
5552 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5553 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5554 + </ClCompile>
5555 + <Link>
5556 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5557 + </Link>
5558 + </ItemDefinitionGroup>
5559 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5560 + <ClCompile>
5561 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5562 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5563 + </ClCompile>
5564 + <Link>
5565 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5566 + </Link>
5567 + </ItemDefinitionGroup>
5568 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5569 + <Midl>
5570 + <TargetEnvironment>X64</TargetEnvironment>
5571 + </Midl>
5572 + <ClCompile>
5573 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5574 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5575 + </ClCompile>
5576 + </ItemDefinitionGroup>
5577 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5578 + <ClCompile>
5579 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5580 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5581 + </ClCompile>
5582 + <Link>
5583 + <OutputFile>$(OutDir)$(ProjectName).dll</OutputFile>
5584 + </Link>
5585 + </ItemDefinitionGroup>
5586 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5587 + <Midl>
5588 + <TargetEnvironment>X64</TargetEnvironment>
5589 + </Midl>
5590 + <ClCompile>
5591 + <AdditionalIncludeDirectories>..;$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
5592 + <PreprocessorDefinitions>SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
5593 + </ClCompile>
5594 + </ItemDefinitionGroup>
5595 + <ItemGroup>
5596 + <ClInclude Include="$(sqlite3Dir)\sqlite3.h" />
5597 + <ClInclude Include="$(sqlite3Dir)\sqlite3ext.h" />
5598 + </ItemGroup>
5599 + <ItemGroup>
5600 + <ClCompile Include="$(sqlite3Dir)\sqlite3.c" />
5601 + </ItemGroup>
5602 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5603 + <ImportGroup Label="ExtensionTargets">
5604 + </ImportGroup>
5605 +</Project>
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
5610 @@ -0,0 +1,216 @@
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>
5646 + </ItemGroup>
5647 + <PropertyGroup Label="Globals">
5648 + <ProjectGuid>{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}</ProjectGuid>
5649 + <RootNamespace>unicodedata</RootNamespace>
5650 + <Keyword>Win32Proj</Keyword>
5651 + </PropertyGroup>
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>
5657 + </PropertyGroup>
5658 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5659 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5660 + <CharacterSet>NotSet</CharacterSet>
5661 + <WholeProgramOptimization>true</WholeProgramOptimization>
5662 + </PropertyGroup>
5663 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5664 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5665 + <CharacterSet>NotSet</CharacterSet>
5666 + <WholeProgramOptimization>true</WholeProgramOptimization>
5667 + </PropertyGroup>
5668 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5669 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5670 + <CharacterSet>NotSet</CharacterSet>
5671 + </PropertyGroup>
5672 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5673 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5674 + <CharacterSet>NotSet</CharacterSet>
5675 + <WholeProgramOptimization>true</WholeProgramOptimization>
5676 + </PropertyGroup>
5677 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5678 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5679 + <CharacterSet>NotSet</CharacterSet>
5680 + <WholeProgramOptimization>true</WholeProgramOptimization>
5681 + </PropertyGroup>
5682 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5683 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5684 + <CharacterSet>NotSet</CharacterSet>
5685 + <WholeProgramOptimization>true</WholeProgramOptimization>
5686 + </PropertyGroup>
5687 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5688 + <ConfigurationType>DynamicLibrary</ConfigurationType>
5689 + <CharacterSet>NotSet</CharacterSet>
5690 + </PropertyGroup>
5691 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5692 + <ImportGroup Label="ExtensionSettings">
5693 + </ImportGroup>
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" />
5698 + </ImportGroup>
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" />
5703 + </ImportGroup>
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" />
5707 + </ImportGroup>
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" />
5711 + </ImportGroup>
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" />
5717 + </ImportGroup>
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" />
5723 + </ImportGroup>
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" />
5728 + </ImportGroup>
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" />
5733 + </ImportGroup>
5734 + <PropertyGroup Label="UserMacros" />
5735 + <PropertyGroup>
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'" />
5761 + </PropertyGroup>
5762 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5763 + <Link>
5764 + <BaseAddress>0x1D120000</BaseAddress>
5765 + </Link>
5766 + </ItemDefinitionGroup>
5767 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5768 + <Midl>
5769 + <TargetEnvironment>X64</TargetEnvironment>
5770 + </Midl>
5771 + <Link>
5772 + <BaseAddress>0x1D120000</BaseAddress>
5773 + </Link>
5774 + </ItemDefinitionGroup>
5775 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
5776 + <Link>
5777 + <BaseAddress>0x1D120000</BaseAddress>
5778 + </Link>
5779 + </ItemDefinitionGroup>
5780 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
5781 + <Midl>
5782 + <TargetEnvironment>X64</TargetEnvironment>
5783 + </Midl>
5784 + <Link>
5785 + <BaseAddress>0x1D120000</BaseAddress>
5786 + </Link>
5787 + </ItemDefinitionGroup>
5788 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
5789 + <Link>
5790 + <BaseAddress>0x1D120000</BaseAddress>
5791 + </Link>
5792 + </ItemDefinitionGroup>
5793 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
5794 + <Midl>
5795 + <TargetEnvironment>X64</TargetEnvironment>
5796 + </Midl>
5797 + <Link>
5798 + <BaseAddress>0x1D120000</BaseAddress>
5799 + <TargetMachine>MachineX64</TargetMachine>
5800 + </Link>
5801 + </ItemDefinitionGroup>
5802 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
5803 + <Link>
5804 + <BaseAddress>0x1D120000</BaseAddress>
5805 + </Link>
5806 + </ItemDefinitionGroup>
5807 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
5808 + <Midl>
5809 + <TargetEnvironment>X64</TargetEnvironment>
5810 + </Midl>
5811 + <Link>
5812 + <BaseAddress>0x1D120000</BaseAddress>
5813 + <TargetMachine>MachineX64</TargetMachine>
5814 + </Link>
5815 + </ItemDefinitionGroup>
5816 + <ItemGroup>
5817 + <ClInclude Include="..\..\Modules\unicodedata_db.h" />
5818 + <ClInclude Include="..\..\Modules\unicodename_db.h" />
5819 + </ItemGroup>
5820 + <ItemGroup>
5821 + <ClCompile Include="..\..\Modules\unicodedata.c" />
5822 + </ItemGroup>
5823 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
5824 + <ImportGroup Label="ExtensionTargets">
5825 + </ImportGroup>
5826 +</Project>
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
5831 @@ -0,0 +1,287 @@
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>
5867 + </ItemGroup>
5868 + <PropertyGroup Label="Globals">
5869 + <ProjectGuid>{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}</ProjectGuid>
5870 + <RootNamespace>w9xpopen</RootNamespace>
5871 + </PropertyGroup>
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>
5877 + </PropertyGroup>
5878 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
5879 + <ConfigurationType>Application</ConfigurationType>
5880 + <UseOfMfc>false</UseOfMfc>
5881 + <CharacterSet>MultiByte</CharacterSet>
5882 + </PropertyGroup>
5883 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
5884 + <ConfigurationType>Application</ConfigurationType>
5885 + <UseOfMfc>false</UseOfMfc>
5886 + <CharacterSet>MultiByte</CharacterSet>
5887 + </PropertyGroup>
5888 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
5889 + <ConfigurationType>Application</ConfigurationType>
5890 + <UseOfMfc>false</UseOfMfc>
5891 + <CharacterSet>NotSet</CharacterSet>
5892 + </PropertyGroup>
5893 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
5894 + <ConfigurationType>Application</ConfigurationType>
5895 + <UseOfMfc>false</UseOfMfc>
5896 + <CharacterSet>MultiByte</CharacterSet>
5897 + </PropertyGroup>
5898 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
5899 + <ConfigurationType>Application</ConfigurationType>
5900 + <UseOfMfc>false</UseOfMfc>
5901 + <CharacterSet>MultiByte</CharacterSet>
5902 + </PropertyGroup>
5903 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5904 + <ConfigurationType>Application</ConfigurationType>
5905 + <UseOfMfc>false</UseOfMfc>
5906 + <CharacterSet>MultiByte</CharacterSet>
5907 + </PropertyGroup>
5908 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
5909 + <ConfigurationType>Application</ConfigurationType>
5910 + <UseOfMfc>false</UseOfMfc>
5911 + <CharacterSet>MultiByte</CharacterSet>
5912 + </PropertyGroup>
5913 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5914 + <ImportGroup Label="ExtensionSettings">
5915 + </ImportGroup>
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" />
5921 + </ImportGroup>
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" />
5927 + </ImportGroup>
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" />
5932 + </ImportGroup>
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" />
5937 + </ImportGroup>
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" />
5944 + </ImportGroup>
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" />
5951 + </ImportGroup>
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" />
5957 + </ImportGroup>
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" />
5963 + </ImportGroup>
5964 + <PropertyGroup Label="UserMacros" />
5965 + <PropertyGroup>
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'" />
5991 + </PropertyGroup>
5992 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
5993 + <ClCompile>
5994 + <Optimization>Disabled</Optimization>
5995 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
5996 + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
5997 + </ClCompile>
5998 + <Link>
5999 + <SubSystem>Console</SubSystem>
6000 + </Link>
6001 + </ItemDefinitionGroup>
6002 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6003 + <Midl>
6004 + <TargetEnvironment>X64</TargetEnvironment>
6005 + </Midl>
6006 + <ClCompile>
6007 + <Optimization>Disabled</Optimization>
6008 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
6009 + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
6010 + </ClCompile>
6011 + <Link>
6012 + <SubSystem>Console</SubSystem>
6013 + </Link>
6014 + </ItemDefinitionGroup>
6015 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6016 + <ClCompile>
6017 + <Optimization>MaxSpeed</Optimization>
6018 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6019 + <StringPooling>true</StringPooling>
6020 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6021 + <FunctionLevelLinking>true</FunctionLevelLinking>
6022 + </ClCompile>
6023 + <Link>
6024 + <GenerateDebugInformation>false</GenerateDebugInformation>
6025 + <SubSystem>Console</SubSystem>
6026 + </Link>
6027 + </ItemDefinitionGroup>
6028 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
6029 + <Midl>
6030 + <TargetEnvironment>X64</TargetEnvironment>
6031 + </Midl>
6032 + <ClCompile>
6033 + <Optimization>MaxSpeed</Optimization>
6034 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6035 + <StringPooling>true</StringPooling>
6036 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6037 + <FunctionLevelLinking>true</FunctionLevelLinking>
6038 + </ClCompile>
6039 + <Link>
6040 + <GenerateDebugInformation>false</GenerateDebugInformation>
6041 + <SubSystem>Console</SubSystem>
6042 + </Link>
6043 + </ItemDefinitionGroup>
6044 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
6045 + <ClCompile>
6046 + <Optimization>MaxSpeed</Optimization>
6047 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6048 + <StringPooling>true</StringPooling>
6049 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6050 + <FunctionLevelLinking>true</FunctionLevelLinking>
6051 + </ClCompile>
6052 + <Link>
6053 + <GenerateDebugInformation>false</GenerateDebugInformation>
6054 + <SubSystem>Console</SubSystem>
6055 + <ImportLibrary>
6056 + </ImportLibrary>
6057 + </Link>
6058 + </ItemDefinitionGroup>
6059 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
6060 + <Midl>
6061 + <TargetEnvironment>X64</TargetEnvironment>
6062 + </Midl>
6063 + <ClCompile>
6064 + <Optimization>MaxSpeed</Optimization>
6065 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6066 + <StringPooling>true</StringPooling>
6067 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6068 + <FunctionLevelLinking>true</FunctionLevelLinking>
6069 + </ClCompile>
6070 + <Link>
6071 + <GenerateDebugInformation>false</GenerateDebugInformation>
6072 + <SubSystem>Console</SubSystem>
6073 + <ImportLibrary>
6074 + </ImportLibrary>
6075 + <TargetMachine>MachineX64</TargetMachine>
6076 + </Link>
6077 + </ItemDefinitionGroup>
6078 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
6079 + <ClCompile>
6080 + <Optimization>MaxSpeed</Optimization>
6081 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6082 + <StringPooling>true</StringPooling>
6083 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6084 + <FunctionLevelLinking>true</FunctionLevelLinking>
6085 + </ClCompile>
6086 + <Link>
6087 + <GenerateDebugInformation>false</GenerateDebugInformation>
6088 + <SubSystem>Console</SubSystem>
6089 + <ImportLibrary>
6090 + </ImportLibrary>
6091 + </Link>
6092 + </ItemDefinitionGroup>
6093 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
6094 + <Midl>
6095 + <TargetEnvironment>X64</TargetEnvironment>
6096 + </Midl>
6097 + <ClCompile>
6098 + <Optimization>MaxSpeed</Optimization>
6099 + <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
6100 + <StringPooling>true</StringPooling>
6101 + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
6102 + <FunctionLevelLinking>true</FunctionLevelLinking>
6103 + </ClCompile>
6104 + <Link>
6105 + <GenerateDebugInformation>false</GenerateDebugInformation>
6106 + <SubSystem>Console</SubSystem>
6107 + <ImportLibrary>
6108 + </ImportLibrary>
6109 + <TargetMachine>MachineX64</TargetMachine>
6110 + </Link>
6111 + </ItemDefinitionGroup>
6112 + <ItemGroup>
6113 + <ClCompile Include="..\..\PC\w9xpopen.c" />
6114 + </ItemGroup>
6115 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
6116 + <ImportGroup Label="ExtensionTargets">
6117 + </ImportGroup>
6118 +</Project>
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
6123 @@ -0,0 +1,212 @@
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>
6159 + </ItemGroup>
6160 + <PropertyGroup Label="Globals">
6161 + <ProjectGuid>{28B5D777-DDF2-4B6B-B34F-31D938813856}</ProjectGuid>
6162 + <RootNamespace>winsound</RootNamespace>
6163 + <Keyword>Win32Proj</Keyword>
6164 + </PropertyGroup>
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>
6170 + </PropertyGroup>
6171 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'" Label="Configuration">
6172 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6173 + <CharacterSet>NotSet</CharacterSet>
6174 + <WholeProgramOptimization>true</WholeProgramOptimization>
6175 + </PropertyGroup>
6176 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
6177 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6178 + <CharacterSet>NotSet</CharacterSet>
6179 + <WholeProgramOptimization>true</WholeProgramOptimization>
6180 + </PropertyGroup>
6181 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
6182 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6183 + <CharacterSet>NotSet</CharacterSet>
6184 + </PropertyGroup>
6185 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'" Label="Configuration">
6186 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6187 + <CharacterSet>NotSet</CharacterSet>
6188 + <WholeProgramOptimization>true</WholeProgramOptimization>
6189 + </PropertyGroup>
6190 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'" Label="Configuration">
6191 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6192 + <CharacterSet>NotSet</CharacterSet>
6193 + <WholeProgramOptimization>true</WholeProgramOptimization>
6194 + </PropertyGroup>
6195 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
6196 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6197 + <CharacterSet>NotSet</CharacterSet>
6198 + <WholeProgramOptimization>true</WholeProgramOptimization>
6199 + </PropertyGroup>
6200 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
6201 + <ConfigurationType>DynamicLibrary</ConfigurationType>
6202 + <CharacterSet>NotSet</CharacterSet>
6203 + </PropertyGroup>
6204 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
6205 + <ImportGroup Label="ExtensionSettings">
6206 + </ImportGroup>
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" />
6211 + </ImportGroup>
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" />
6216 + </ImportGroup>
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" />
6220 + </ImportGroup>
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" />
6224 + </ImportGroup>
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" />
6230 + </ImportGroup>
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" />
6236 + </ImportGroup>
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" />
6241 + </ImportGroup>
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" />
6246 + </ImportGroup>
6247 + <PropertyGroup Label="UserMacros" />
6248 + <PropertyGroup>
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'" />
6274 + </PropertyGroup>
6275 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
6276 + <Link>
6277 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6278 + </Link>
6279 + </ItemDefinitionGroup>
6280 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6281 + <Midl>
6282 + <TargetEnvironment>X64</TargetEnvironment>
6283 + </Midl>
6284 + <Link>
6285 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6286 + </Link>
6287 + </ItemDefinitionGroup>
6288 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6289 + <Link>
6290 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6291 + </Link>
6292 + </ItemDefinitionGroup>
6293 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
6294 + <Midl>
6295 + <TargetEnvironment>X64</TargetEnvironment>
6296 + </Midl>
6297 + <Link>
6298 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6299 + </Link>
6300 + </ItemDefinitionGroup>
6301 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|Win32'">
6302 + <Link>
6303 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6304 + </Link>
6305 + </ItemDefinitionGroup>
6306 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGInstrument|x64'">
6307 + <Midl>
6308 + <TargetEnvironment>X64</TargetEnvironment>
6309 + </Midl>
6310 + <Link>
6311 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6312 + <TargetMachine>MachineX64</TargetMachine>
6313 + </Link>
6314 + </ItemDefinitionGroup>
6315 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|Win32'">
6316 + <Link>
6317 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6318 + </Link>
6319 + </ItemDefinitionGroup>
6320 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PGUpdate|x64'">
6321 + <Midl>
6322 + <TargetEnvironment>X64</TargetEnvironment>
6323 + </Midl>
6324 + <Link>
6325 + <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
6326 + <TargetMachine>MachineX64</TargetMachine>
6327 + </Link>
6328 + </ItemDefinitionGroup>
6329 + <ItemGroup>
6330 + <ClCompile Include="..\..\PC\winsound.c" />
6331 + </ItemGroup>
6332 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
6333 + <ImportGroup Label="ExtensionTargets">
6334 + </ImportGroup>
6335 +</Project>
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
6340 @@ -0,0 +1,26 @@
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>
6345 + </PropertyGroup>
6346 + <PropertyGroup>
6347 + <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
6348 + <_PropertySheetDisplayName>amd64</_PropertySheetDisplayName>
6349 + <OutDir>$(SolutionDir)\amd64\</OutDir>
6350 + <IntDir>$(SolutionDir)$(PlatformName)-temp-$(Configuration)\$(ProjectName)\</IntDir>
6351 + </PropertyGroup>
6352 + <ItemDefinitionGroup>
6353 + <ClCompile>
6354 + <AdditionalOptions>/USECL:MS_OPTERON /GS- %(AdditionalOptions)</AdditionalOptions>
6355 + <PreprocessorDefinitions>_WIN64;_M_X64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
6356 + </ClCompile>
6357 + <Link>
6358 + <TargetMachine>MachineX64</TargetMachine>
6359 + </Link>
6360 + </ItemDefinitionGroup>
6361 + <ItemGroup>
6362 + <BuildMacro Include="PythonExe">
6363 + <Value>$(PythonExe)</Value>
6364 + </BuildMacro>
6365 + </ItemGroup>
6366 +</Project>
6367 \ No newline at end of file