Changeset 388 for python/vendor/current/PC/VS8.0
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- Location:
- python/vendor/current/PC/VS8.0
- Files:
-
- 1 added
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/PC/VS8.0/_multiprocessing.vcproj
r2 r388 4 4 Version="8.00" 5 5 Name="_multiprocessing" 6 ProjectGUID="{9 e48b300-37d1-11dd-8c41-005056c00008}"6 ProjectGUID="{9E48B300-37D1-11DD-8C41-005056C00008}" 7 7 RootNamespace="_multiprocessing" 8 8 Keyword="Win32Proj" -
python/vendor/current/PC/VS8.0/_sqlite3.vcproj
r2 r388 43 43 <Tool 44 44 Name="VCCLCompilerTool" 45 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"45 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 46 46 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 47 47 /> … … 105 105 <Tool 106 106 Name="VCCLCompilerTool" 107 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"107 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 108 108 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 109 109 /> … … 167 167 <Tool 168 168 Name="VCCLCompilerTool" 169 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"169 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 170 170 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 171 171 /> … … 230 230 <Tool 231 231 Name="VCCLCompilerTool" 232 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"232 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 233 233 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 234 234 /> … … 292 292 <Tool 293 293 Name="VCCLCompilerTool" 294 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"294 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 295 295 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 296 296 /> … … 355 355 <Tool 356 356 Name="VCCLCompilerTool" 357 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"357 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 358 358 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 359 359 /> … … 418 418 <Tool 419 419 Name="VCCLCompilerTool" 420 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"420 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 421 421 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 422 422 /> … … 481 481 <Tool 482 482 Name="VCCLCompilerTool" 483 AdditionalIncludeDirectories="..\..\..\sqlite-3. 5.9"483 AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21" 484 484 PreprocessorDefinitions="MODULE_NAME=\"sqlite3\"" 485 485 /> -
python/vendor/current/PC/VS8.0/bdist_wininst.vcproj
r2 r388 56 56 PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE" 57 57 StringPooling="true" 58 RuntimeLibrary=" 2"58 RuntimeLibrary="0" 59 59 EnableFunctionLevelLinking="true" 60 60 WarningLevel="3" … … 146 146 PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE" 147 147 StringPooling="true" 148 RuntimeLibrary=" 2"148 RuntimeLibrary="0" 149 149 EnableFunctionLevelLinking="true" 150 150 WarningLevel="3" -
python/vendor/current/PC/VS8.0/build_ssl.bat
r2 r388 3 3 if %1 EQU Debug ( 4 4 set HOST_PYTHON=python_d.exe 5 if not exist python2 6_d.dll exit 15 if not exist python27_d.dll exit 1 6 6 ) ELSE ( 7 7 set HOST_PYTHON=python.exe 8 if not exist python2 6.dll exit 18 if not exist python27.dll exit 1 9 9 ) 10 10 ) -
python/vendor/current/PC/VS8.0/build_ssl.py
r2 r388 9 9 # any other external packages there. 10 10 # * Install ActivePerl and ensure it is somewhere on your path. 11 # * Run this script from the PC Builddirectory.11 # * Run this script from the PC/VS8.0 directory. 12 12 # 13 13 # it should configure and build SSL, then build the _ssl and _hashlib … … 47 47 def find_working_perl(perls): 48 48 for perl in perls: 49 fh = os.popen( perl + ' -e "use Win32;"')49 fh = os.popen('"%s" -e "use Win32;"' % perl) 50 50 fh.read() 51 51 rc = fh.close() … … 179 179 perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"]) 180 180 perl = find_working_perl(perls) 181 if perl is None: 181 if perl: 182 print("Found a working perl at '%s'" % (perl,)) 183 else: 182 184 print("No Perl installation was found. Existing Makefiles are used.") 183 184 print("Found a working perl at '%s'" % (perl,))185 185 sys.stdout.flush() 186 # Look for SSL 2 levels up from pcbuild- ie, same place zlib etc all live.186 # Look for SSL 3 levels up from PC/VS8.0 - ie, same place zlib etc all live. 187 187 ssl_dir = find_best_ssl_dir(("..\\..\\..",)) 188 188 if ssl_dir is None: -
python/vendor/current/PC/VS8.0/bz2.vcproj
r2 r388 44 44 Name="VCCLCompilerTool" 45 45 AdditionalIncludeDirectories="$(bz2Dir)" 46 /> 47 <Tool 48 Name="VCManagedResourceCompilerTool" 49 /> 50 <Tool 51 Name="VCResourceCompilerTool" 52 /> 53 <Tool 54 Name="VCPreLinkEventTool" 55 Description="Build libbz2" 56 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Debug\libbz2.lib exit 0
if not exist $(PlatformName)-Debug mkdir $(PlatformName)-Debug
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Debug
nmake /nologo /f makefile.msc clean
" 57 /> 58 <Tool 59 Name="VCLinkerTool" 60 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Debug\libbz2.lib" 46 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 47 /> 48 <Tool 49 Name="VCManagedResourceCompilerTool" 50 /> 51 <Tool 52 Name="VCResourceCompilerTool" 53 /> 54 <Tool 55 Name="VCPreLinkEventTool" 56 /> 57 <Tool 58 Name="VCLinkerTool" 59 BaseAddress="0x1D170000" 61 60 /> 62 61 <Tool … … 107 106 Name="VCCLCompilerTool" 108 107 AdditionalIncludeDirectories="$(bz2Dir)" 109 /> 110 <Tool 111 Name="VCManagedResourceCompilerTool" 112 /> 113 <Tool 114 Name="VCResourceCompilerTool" 115 /> 116 <Tool 117 Name="VCPreLinkEventTool" 118 Description="Build libbz2" 119 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Debug\libbz2.lib exit 0
if not exist $(PlatformName)-Debug mkdir $(PlatformName)-Debug
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Debug
nmake /nologo /f makefile.msc clean
" 120 /> 121 <Tool 122 Name="VCLinkerTool" 123 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Debug\libbz2.lib" 108 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 109 /> 110 <Tool 111 Name="VCManagedResourceCompilerTool" 112 /> 113 <Tool 114 Name="VCResourceCompilerTool" 115 /> 116 <Tool 117 Name="VCPreLinkEventTool" 118 /> 119 <Tool 120 Name="VCLinkerTool" 121 BaseAddress="0x1D170000" 124 122 /> 125 123 <Tool … … 170 168 Name="VCCLCompilerTool" 171 169 AdditionalIncludeDirectories="$(bz2Dir)" 172 /> 173 <Tool 174 Name="VCManagedResourceCompilerTool" 175 /> 176 <Tool 177 Name="VCResourceCompilerTool" 178 /> 179 <Tool 180 Name="VCPreLinkEventTool" 181 Description="Build libbz2" 182 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Release\libbz2.lib exit 0
if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Release
nmake /nologo /f makefile.msc clean
" 183 /> 184 <Tool 185 Name="VCLinkerTool" 186 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Release\libbz2.lib" 170 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 171 /> 172 <Tool 173 Name="VCManagedResourceCompilerTool" 174 /> 175 <Tool 176 Name="VCResourceCompilerTool" 177 /> 178 <Tool 179 Name="VCPreLinkEventTool" 180 /> 181 <Tool 182 Name="VCLinkerTool" 183 BaseAddress="0x1D170000" 187 184 /> 188 185 <Tool … … 234 231 Name="VCCLCompilerTool" 235 232 AdditionalIncludeDirectories="$(bz2Dir)" 236 /> 237 <Tool 238 Name="VCManagedResourceCompilerTool" 239 /> 240 <Tool 241 Name="VCResourceCompilerTool" 242 /> 243 <Tool 244 Name="VCPreLinkEventTool" 245 Description="Build libbz2" 246 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Release\libbz2.lib exit 0
if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Release
nmake /nologo /f makefile.msc clean
" 247 /> 248 <Tool 249 Name="VCLinkerTool" 250 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Release\libbz2.lib" 233 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 234 /> 235 <Tool 236 Name="VCManagedResourceCompilerTool" 237 /> 238 <Tool 239 Name="VCResourceCompilerTool" 240 /> 241 <Tool 242 Name="VCPreLinkEventTool" 243 /> 244 <Tool 245 Name="VCLinkerTool" 246 BaseAddress="0x1D170000" 251 247 /> 252 248 <Tool … … 297 293 Name="VCCLCompilerTool" 298 294 AdditionalIncludeDirectories="$(bz2Dir)" 299 /> 300 <Tool 301 Name="VCManagedResourceCompilerTool" 302 /> 303 <Tool 304 Name="VCResourceCompilerTool" 305 /> 306 <Tool 307 Name="VCPreLinkEventTool" 308 Description="Build libbz2" 309 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Release\libbz2.lib exit 0
if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Release
nmake /nologo /f makefile.msc clean
" 310 /> 311 <Tool 312 Name="VCLinkerTool" 313 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Release\libbz2.lib" 295 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 296 /> 297 <Tool 298 Name="VCManagedResourceCompilerTool" 299 /> 300 <Tool 301 Name="VCResourceCompilerTool" 302 /> 303 <Tool 304 Name="VCPreLinkEventTool" 305 /> 306 <Tool 307 Name="VCLinkerTool" 308 BaseAddress="0x1D170000" 314 309 /> 315 310 <Tool … … 361 356 Name="VCCLCompilerTool" 362 357 AdditionalIncludeDirectories="$(bz2Dir)" 363 /> 364 <Tool 365 Name="VCManagedResourceCompilerTool" 366 /> 367 <Tool 368 Name="VCResourceCompilerTool" 369 /> 370 <Tool 371 Name="VCPreLinkEventTool" 372 Description="Build libbz2" 373 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Release\libbz2.lib exit 0
if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Release
nmake /nologo /f makefile.msc clean
" 374 /> 375 <Tool 376 Name="VCLinkerTool" 377 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Release\libbz2.lib" 358 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 359 /> 360 <Tool 361 Name="VCManagedResourceCompilerTool" 362 /> 363 <Tool 364 Name="VCResourceCompilerTool" 365 /> 366 <Tool 367 Name="VCPreLinkEventTool" 368 /> 369 <Tool 370 Name="VCLinkerTool" 371 BaseAddress="0x1D170000" 378 372 TargetMachine="17" 379 373 /> … … 425 419 Name="VCCLCompilerTool" 426 420 AdditionalIncludeDirectories="$(bz2Dir)" 427 /> 428 <Tool 429 Name="VCManagedResourceCompilerTool" 430 /> 431 <Tool 432 Name="VCResourceCompilerTool" 433 /> 434 <Tool 435 Name="VCPreLinkEventTool" 436 Description="Build libbz2" 437 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Release\libbz2.lib exit 0
if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Release
nmake /nologo /f makefile.msc clean
" 438 /> 439 <Tool 440 Name="VCLinkerTool" 441 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Release\libbz2.lib" 421 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 422 /> 423 <Tool 424 Name="VCManagedResourceCompilerTool" 425 /> 426 <Tool 427 Name="VCResourceCompilerTool" 428 /> 429 <Tool 430 Name="VCPreLinkEventTool" 431 /> 432 <Tool 433 Name="VCLinkerTool" 434 BaseAddress="0x1D170000" 442 435 /> 443 436 <Tool … … 489 482 Name="VCCLCompilerTool" 490 483 AdditionalIncludeDirectories="$(bz2Dir)" 491 /> 492 <Tool 493 Name="VCManagedResourceCompilerTool" 494 /> 495 <Tool 496 Name="VCResourceCompilerTool" 497 /> 498 <Tool 499 Name="VCPreLinkEventTool" 500 Description="Build libbz2" 501 CommandLine="cd $(bz2Dir)
if exist $(PlatformName)-Release\libbz2.lib exit 0
if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release
nmake /nologo /f makefile.msc lib
copy libbz2.lib $(PlatformName)-Release
nmake /nologo /f makefile.msc clean
" 502 /> 503 <Tool 504 Name="VCLinkerTool" 505 AdditionalDependencies="$(bz2Dir)\$(PlatformName)-Release\libbz2.lib" 484 PreprocessorDefinitions="WIN32;_FILE_OFFSET_BITS=64" 485 /> 486 <Tool 487 Name="VCManagedResourceCompilerTool" 488 /> 489 <Tool 490 Name="VCResourceCompilerTool" 491 /> 492 <Tool 493 Name="VCPreLinkEventTool" 494 /> 495 <Tool 496 Name="VCLinkerTool" 497 BaseAddress="0x1D170000" 506 498 TargetMachine="17" 507 499 /> … … 540 532 </File> 541 533 </Filter> 534 <Filter 535 Name="bzip2 1.0.6 Header Files" 536 > 537 <File 538 RelativePath="$(bz2Dir)\bzlib.h" 539 > 540 </File> 541 <File 542 RelativePath="$(bz2Dir)\bzlib_private.h" 543 > 544 </File> 545 </Filter> 546 <Filter 547 Name="bzip2 1.0.6 Source Files" 548 > 549 <File 550 RelativePath="$(bz2Dir)\blocksort.c" 551 > 552 </File> 553 <File 554 RelativePath="$(bz2Dir)\bzlib.c" 555 > 556 </File> 557 <File 558 RelativePath="$(bz2Dir)\compress.c" 559 > 560 </File> 561 <File 562 RelativePath="$(bz2Dir)\crctable.c" 563 > 564 </File> 565 <File 566 RelativePath="$(bz2Dir)\decompress.c" 567 > 568 </File> 569 <File 570 RelativePath="$(bz2Dir)\huffman.c" 571 > 572 </File> 573 <File 574 RelativePath="$(bz2Dir)\randtable.c" 575 > 576 </File> 577 </Filter> 542 578 </Files> 543 579 <Globals> -
python/vendor/current/PC/VS8.0/make_buildinfo.c
r2 r388 24 24 int make_buildinfo2() 25 25 { 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 26 struct _stat st; 27 HKEY hTortoise; 28 char command[CMD_SIZE+1]; 29 DWORD type, size; 30 if (_stat(".svn", &st) < 0) 31 return 0; 32 /* Allow suppression of subwcrev.exe invocation if a no_subwcrev file is present. */ 33 if (_stat("no_subwcrev", &st) == 0) 34 return 0; 35 if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS && 36 RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS) 37 /* Tortoise not installed */ 38 return 0; 39 command[0] = '"'; /* quote the path to the executable */ 40 size = sizeof(command) - 1; 41 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS || 42 type != REG_SZ) 43 /* Registry corrupted */ 44 return 0; 45 strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe"); 46 if (_stat(command+1, &st) < 0) 47 /* subwcrev.exe not part of the release */ 48 return 0; 49 strcat_s(command, CMD_SIZE, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c"); 50 puts(command); fflush(stdout); 51 if (system(command) < 0) 52 return 0; 53 return 1; 54 54 } 55 55 56 56 int main(int argc, char*argv[]) 57 57 { 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 58 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL "; 59 int do_unlink, result; 60 if (argc != 2) { 61 fprintf(stderr, "make_buildinfo $(ConfigurationName)\n"); 62 return EXIT_FAILURE; 63 } 64 if (strcmp(argv[1], "Release") == 0) { 65 strcat_s(command, CMD_SIZE, "-MD "); 66 } 67 else if (strcmp(argv[1], "Debug") == 0) { 68 strcat_s(command, CMD_SIZE, "-D_DEBUG -MDd "); 69 } 70 else if (strcmp(argv[1], "ReleaseItanium") == 0) { 71 strcat_s(command, CMD_SIZE, "-MD /USECL:MS_ITANIUM "); 72 } 73 else if (strcmp(argv[1], "ReleaseAMD64") == 0) { 74 strcat_s(command, CMD_SIZE, "-MD "); 75 strcat_s(command, CMD_SIZE, "-MD /USECL:MS_OPTERON "); 76 } 77 else { 78 fprintf(stderr, "unsupported configuration %s\n", argv[1]); 79 return EXIT_FAILURE; 80 } 81 81 82 83 84 85 86 87 88 89 90 91 92 93 82 if ((do_unlink = make_buildinfo2())) 83 strcat_s(command, CMD_SIZE, "getbuildinfo2.c -DSUBWCREV "); 84 else 85 strcat_s(command, CMD_SIZE, "..\\..\\Modules\\getbuildinfo.c"); 86 strcat_s(command, CMD_SIZE, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC"); 87 puts(command); fflush(stdout); 88 result = system(command); 89 if (do_unlink) 90 _unlink("getbuildinfo2.c"); 91 if (result < 0) 92 return EXIT_FAILURE; 93 return 0; 94 94 } -
python/vendor/current/PC/VS8.0/pyd.vsprops
r2 r388 16 16 ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb" 17 17 ImportLibrary="$(OutDir)\$(TargetName).lib" 18 GenerateManifest="false" 19 /> 20 <Tool 21 Name="VCManifestTool" 22 EmbedManifest="false" 18 23 /> 19 24 <Tool -
python/vendor/current/PC/VS8.0/pyd_d.vsprops
r2 r388 20 20 ProgramDatabaseFile="$(OutDir)\$(ProjectName)_d.pdb" 21 21 ImportLibrary="$(OutDir)\$(TargetName).lib" 22 GenerateManifest="false" 23 /> 24 <Tool 25 Name="VCManifestTool" 26 EmbedManifest="false" 22 27 /> 23 28 <Tool -
python/vendor/current/PC/VS8.0/pyproject.vsprops
r2 r388 39 39 <UserMacro 40 40 Name="PyDllName" 41 Value="python2 6"41 Value="python27" 42 42 /> 43 43 <UserMacro … … 48 48 Name="externalsDir" 49 49 Value="..\..\.." 50 /> 51 <UserMacro 52 Name="bsddb47Dir" 53 Value="$(externalsDir)\db-4.7.25.0\build_windows" 54 /> 55 <UserMacro 56 Name="bsddb47DepLibs" 57 Value="ws2_32.lib" 50 58 /> 51 59 <UserMacro … … 66 74 /> 67 75 <UserMacro 68 Name="bsddb47Dir"69 Value="$(externalsDir)\db-4.7.25.0\build_windows"70 />71 <UserMacro72 Name="bsddb47DepLibs"73 Value="ws2_32.lib"74 />75 <UserMacro76 76 Name="sqlite3Dir" 77 Value="$(externalsDir)\sqlite-3. 5.9"77 Value="$(externalsDir)\sqlite-3.6.21" 78 78 /> 79 79 <UserMacro 80 80 Name="bz2Dir" 81 Value="$(externalsDir)\bzip2-1.0. 5"81 Value="$(externalsDir)\bzip2-1.0.6" 82 82 /> 83 83 <UserMacro 84 84 Name="opensslDir" 85 Value="$(externalsDir)\openssl-0.9.8 g"85 Value="$(externalsDir)\openssl-0.9.8y" 86 86 /> 87 87 <UserMacro -
python/vendor/current/PC/VS8.0/pythoncore.vcproj
r2 r388 716 716 </File> 717 717 <File 718 RelativePath="..\..\Include\dtoa.h" 719 > 720 </File> 721 <File 718 722 RelativePath="..\..\Include\enumobject.h" 719 723 > … … 849 853 <File 850 854 RelativePath="..\..\Include\pyarena.h" 855 > 856 </File> 857 <File 858 RelativePath="..\..\Include\pycapsule.h" 859 > 860 </File> 861 <File 862 RelativePath="..\..\Include\pyctype.h" 851 863 > 852 864 </File> … … 996 1008 </File> 997 1009 <File 998 RelativePath="..\..\Modules\_fileio.c"999 >1000 </File>1001 <File1002 RelativePath="..\..\Modules\_bytesio.c"1003 >1004 </File>1005 <File1006 1010 RelativePath="..\..\Modules\_functoolsmodule.c" 1007 1011 > … … 1028 1032 </File> 1029 1033 <File 1034 RelativePath="..\..\Modules\_math.c" 1035 > 1036 </File> 1037 <File 1038 RelativePath="..\..\Modules\_math.h" 1039 > 1040 </File> 1041 <File 1030 1042 RelativePath="..\..\Modules\_randommodule.c" 1031 1043 > … … 1169 1181 <File 1170 1182 RelativePath="..\..\Modules\xxsubtype.c" 1171 >1172 </File>1173 <File1174 RelativePath="..\..\Modules\yuv.h"1175 >1176 </File>1177 <File1178 RelativePath="..\..\Modules\yuvconvert.c"1179 1183 > 1180 1184 </File> … … 1352 1356 <File 1353 1357 RelativePath="..\..\Modules\cjkcodecs\multibytecodec.h" 1358 > 1359 </File> 1360 </Filter> 1361 <Filter 1362 Name="_io" 1363 > 1364 <File 1365 RelativePath="..\..\Modules\_io\_iomodule.c" 1366 > 1367 </File> 1368 <File 1369 RelativePath="..\..\Modules\_io\_iomodule.h" 1370 > 1371 </File> 1372 <File 1373 RelativePath="..\..\Modules\_io\bufferedio.c" 1374 > 1375 </File> 1376 <File 1377 RelativePath="..\..\Modules\_io\bytesio.c" 1378 > 1379 </File> 1380 <File 1381 RelativePath="..\..\Modules\_io\fileio.c" 1382 > 1383 </File> 1384 <File 1385 RelativePath="..\..\Modules\_io\iobase.c" 1386 > 1387 </File> 1388 <File 1389 RelativePath="..\..\Modules\_io\stringio.c" 1390 > 1391 </File> 1392 <File 1393 RelativePath="..\..\Modules\_io\textio.c" 1354 1394 > 1355 1395 </File> … … 1380 1420 </File> 1381 1421 <File 1422 RelativePath="..\..\Objects\capsule.c" 1423 > 1424 </File> 1425 <File 1426 RelativePath="..\..\Objects\cellobject.c" 1427 > 1428 </File> 1429 <File 1430 RelativePath="..\..\Objects\classobject.c" 1431 > 1432 </File> 1433 <File 1434 RelativePath="..\..\Objects\cobject.c" 1435 > 1436 </File> 1437 <File 1438 RelativePath="..\..\Objects\codeobject.c" 1439 > 1440 </File> 1441 <File 1442 RelativePath="..\..\Objects\complexobject.c" 1443 > 1444 </File> 1445 <File 1446 RelativePath="..\..\Objects\stringlib\count.h" 1447 > 1448 </File> 1449 <File 1450 RelativePath="..\..\Objects\descrobject.c" 1451 > 1452 </File> 1453 <File 1454 RelativePath="..\..\Objects\dictobject.c" 1455 > 1456 </File> 1457 <File 1458 RelativePath="..\..\Objects\enumobject.c" 1459 > 1460 </File> 1461 <File 1462 RelativePath="..\..\Objects\exceptions.c" 1463 > 1464 </File> 1465 <File 1466 RelativePath="..\..\Objects\stringlib\fastsearch.h" 1467 > 1468 </File> 1469 <File 1470 RelativePath="..\..\Objects\fileobject.c" 1471 > 1472 </File> 1473 <File 1474 RelativePath="..\..\Objects\stringlib\find.h" 1475 > 1476 </File> 1477 <File 1478 RelativePath="..\..\Objects\floatobject.c" 1479 > 1480 </File> 1481 <File 1482 RelativePath="..\..\Objects\frameobject.c" 1483 > 1484 </File> 1485 <File 1486 RelativePath="..\..\Objects\funcobject.c" 1487 > 1488 </File> 1489 <File 1490 RelativePath="..\..\Objects\genobject.c" 1491 > 1492 </File> 1493 <File 1494 RelativePath="..\..\Objects\intobject.c" 1495 > 1496 </File> 1497 <File 1498 RelativePath="..\..\Objects\iterobject.c" 1499 > 1500 </File> 1501 <File 1502 RelativePath="..\..\Objects\listobject.c" 1503 > 1504 </File> 1505 <File 1506 RelativePath="..\..\Objects\longobject.c" 1507 > 1508 </File> 1509 <File 1510 RelativePath="..\..\Objects\memoryobject.c" 1511 > 1512 </File> 1513 <File 1514 RelativePath="..\..\Objects\methodobject.c" 1515 > 1516 </File> 1517 <File 1518 RelativePath="..\..\Objects\moduleobject.c" 1519 > 1520 </File> 1521 <File 1522 RelativePath="..\..\Objects\object.c" 1523 > 1524 </File> 1525 <File 1526 RelativePath="..\..\Objects\obmalloc.c" 1527 > 1528 </File> 1529 <File 1530 RelativePath="..\..\Objects\stringlib\partition.h" 1531 > 1532 </File> 1533 <File 1534 RelativePath="..\..\Objects\rangeobject.c" 1535 > 1536 </File> 1537 <File 1538 RelativePath="..\..\Objects\setobject.c" 1539 > 1540 </File> 1541 <File 1542 RelativePath="..\..\Objects\sliceobject.c" 1543 > 1544 </File> 1545 <File 1546 RelativePath="..\..\Objects\stringlib\split.h" 1547 > 1548 </File> 1549 <File 1382 1550 RelativePath="..\..\Objects\stringobject.c" 1383 >1384 </File>1385 <File1386 RelativePath="..\..\Objects\cellobject.c"1387 >1388 </File>1389 <File1390 RelativePath="..\..\Objects\classobject.c"1391 >1392 </File>1393 <File1394 RelativePath="..\..\Objects\cobject.c"1395 >1396 </File>1397 <File1398 RelativePath="..\..\Objects\codeobject.c"1399 >1400 </File>1401 <File1402 RelativePath="..\..\Objects\complexobject.c"1403 >1404 </File>1405 <File1406 RelativePath="..\..\Objects\stringlib\count.h"1407 >1408 </File>1409 <File1410 RelativePath="..\..\Objects\descrobject.c"1411 >1412 </File>1413 <File1414 RelativePath="..\..\Objects\dictobject.c"1415 >1416 </File>1417 <File1418 RelativePath="..\..\Objects\enumobject.c"1419 >1420 </File>1421 <File1422 RelativePath="..\..\Objects\exceptions.c"1423 >1424 </File>1425 <File1426 RelativePath="..\..\Objects\stringlib\fastsearch.h"1427 >1428 </File>1429 <File1430 RelativePath="..\..\Objects\fileobject.c"1431 >1432 </File>1433 <File1434 RelativePath="..\..\Objects\stringlib\find.h"1435 >1436 </File>1437 <File1438 RelativePath="..\..\Objects\floatobject.c"1439 >1440 </File>1441 <File1442 RelativePath="..\..\Objects\frameobject.c"1443 >1444 </File>1445 <File1446 RelativePath="..\..\Objects\funcobject.c"1447 >1448 </File>1449 <File1450 RelativePath="..\..\Objects\genobject.c"1451 >1452 </File>1453 <File1454 RelativePath="..\..\Objects\intobject.c"1455 >1456 </File>1457 <File1458 RelativePath="..\..\Objects\iterobject.c"1459 >1460 </File>1461 <File1462 RelativePath="..\..\Objects\listobject.c"1463 >1464 </File>1465 <File1466 RelativePath="..\..\Objects\longobject.c"1467 >1468 </File>1469 <File1470 RelativePath="..\..\Objects\methodobject.c"1471 >1472 </File>1473 <File1474 RelativePath="..\..\Objects\moduleobject.c"1475 >1476 </File>1477 <File1478 RelativePath="..\..\Objects\object.c"1479 >1480 </File>1481 <File1482 RelativePath="..\..\Objects\obmalloc.c"1483 >1484 </File>1485 <File1486 RelativePath="..\..\Objects\stringlib\partition.h"1487 >1488 </File>1489 <File1490 RelativePath="..\..\Objects\rangeobject.c"1491 >1492 </File>1493 <File1494 RelativePath="..\..\Objects\setobject.c"1495 >1496 </File>1497 <File1498 RelativePath="..\..\Objects\sliceobject.c"1499 1551 > 1500 1552 </File> … … 1660 1712 </File> 1661 1713 <File 1714 RelativePath="..\..\Python\dtoa.c" 1715 > 1716 </File> 1717 <File 1662 1718 RelativePath="..\..\Python\dynload_win.c" 1663 1719 > … … 1696 1752 </File> 1697 1753 <File 1698 RelativePath="..\..\Python\getmtime.c"1699 >1700 </File>1701 <File1702 1754 RelativePath="..\..\Python\getopt.c" 1703 1755 > … … 1752 1804 </File> 1753 1805 <File 1806 RelativePath="..\..\Python\pyctype.c" 1807 > 1808 </File> 1809 <File 1754 1810 RelativePath="..\..\Python\pyfpe.c" 1755 1811 > … … 1777 1833 <File 1778 1834 RelativePath="..\..\Python\pythonrun.c" 1835 > 1836 </File> 1837 <File 1838 RelativePath="..\..\Python\random.c" 1779 1839 > 1780 1840 </File> -
python/vendor/current/PC/VS8.0/select.vcproj
r2 r388 55 55 <Tool 56 56 Name="VCLinkerTool" 57 AdditionalDependencies="ws ock32.lib"57 AdditionalDependencies="ws2_32.lib" 58 58 IgnoreDefaultLibraryNames="libc" 59 59 BaseAddress="0x1D110000" … … 117 117 <Tool 118 118 Name="VCLinkerTool" 119 AdditionalDependencies="ws ock32.lib"119 AdditionalDependencies="ws2_32.lib" 120 120 IgnoreDefaultLibraryNames="libc" 121 121 BaseAddress="0x1D110000" … … 179 179 <Tool 180 180 Name="VCLinkerTool" 181 AdditionalDependencies="ws ock32.lib"181 AdditionalDependencies="ws2_32.lib" 182 182 IgnoreDefaultLibraryNames="libc" 183 183 BaseAddress="0x1D110000" … … 242 242 <Tool 243 243 Name="VCLinkerTool" 244 AdditionalDependencies="ws ock32.lib"244 AdditionalDependencies="ws2_32.lib" 245 245 IgnoreDefaultLibraryNames="libc" 246 246 BaseAddress="0x1D110000" … … 304 304 <Tool 305 305 Name="VCLinkerTool" 306 AdditionalDependencies="ws ock32.lib"306 AdditionalDependencies="ws2_32.lib" 307 307 IgnoreDefaultLibraryNames="libc" 308 308 BaseAddress="0x1D110000" … … 367 367 <Tool 368 368 Name="VCLinkerTool" 369 AdditionalDependencies="ws ock32.lib"369 AdditionalDependencies="ws2_32.lib" 370 370 IgnoreDefaultLibraryNames="libc" 371 371 BaseAddress="0x1D110000" … … 430 430 <Tool 431 431 Name="VCLinkerTool" 432 AdditionalDependencies="ws ock32.lib"432 AdditionalDependencies="ws2_32.lib" 433 433 IgnoreDefaultLibraryNames="libc" 434 434 BaseAddress="0x1D110000" … … 493 493 <Tool 494 494 Name="VCLinkerTool" 495 AdditionalDependencies="ws ock32.lib"495 AdditionalDependencies="ws2_32.lib" 496 496 IgnoreDefaultLibraryNames="libc" 497 497 BaseAddress="0x1D110000" -
python/vendor/current/PC/VS8.0/sqlite3.vcproj
r2 r388 23 23 Name="Debug|Win32" 24 24 ConfigurationType="2" 25 InheritedPropertySheets=".\pyd_d.vsprops" 26 CharacterSet="0" 27 > 28 <Tool 29 Name="VCPreBuildEventTool" 30 /> 31 <Tool 32 Name="VCCustomBuildTool" 33 /> 34 <Tool 35 Name="VCXMLDataGeneratorTool" 36 /> 37 <Tool 38 Name="VCWebServiceProxyGeneratorTool" 39 /> 40 <Tool 41 Name="VCMIDLTool" 42 /> 43 <Tool 44 Name="VCCLCompilerTool" 45 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 46 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 25 InheritedPropertySheets=".\sqlite3.vsprops;.\debug.vsprops" 26 CharacterSet="0" 27 > 28 <Tool 29 Name="VCPreBuildEventTool" 30 /> 31 <Tool 32 Name="VCCustomBuildTool" 33 /> 34 <Tool 35 Name="VCXMLDataGeneratorTool" 36 /> 37 <Tool 38 Name="VCWebServiceProxyGeneratorTool" 39 /> 40 <Tool 41 Name="VCMIDLTool" 42 /> 43 <Tool 44 Name="VCCLCompilerTool" 45 AdditionalIncludeDirectories="" 47 46 /> 48 47 <Tool … … 84 83 Name="Debug|x64" 85 84 ConfigurationType="2" 86 InheritedPropertySheets=".\ pyd_d.vsprops;.\x64.vsprops"85 InheritedPropertySheets=".\sqlite3.vsprops;.\debug.vsprops;.\x64.vsprops" 87 86 CharacterSet="0" 88 87 > … … 105 104 <Tool 106 105 Name="VCCLCompilerTool" 107 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 108 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 106 AdditionalIncludeDirectories="" 109 107 /> 110 108 <Tool … … 146 144 Name="Release|Win32" 147 145 ConfigurationType="2" 148 InheritedPropertySheets=".\ pyd.vsprops"146 InheritedPropertySheets=".\sqlite3.vsprops" 149 147 CharacterSet="0" 150 148 WholeProgramOptimization="1" … … 167 165 <Tool 168 166 Name="VCCLCompilerTool" 169 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 170 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 167 AdditionalIncludeDirectories="" 171 168 /> 172 169 <Tool … … 208 205 Name="Release|x64" 209 206 ConfigurationType="2" 210 InheritedPropertySheets=".\ pyd.vsprops;.\x64.vsprops"207 InheritedPropertySheets=".\sqlite3.vsprops;.\x64.vsprops" 211 208 CharacterSet="0" 212 209 WholeProgramOptimization="1" … … 230 227 <Tool 231 228 Name="VCCLCompilerTool" 232 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 233 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 229 AdditionalIncludeDirectories="" 234 230 /> 235 231 <Tool … … 271 267 Name="PGInstrument|Win32" 272 268 ConfigurationType="2" 273 InheritedPropertySheets=".\ pyd.vsprops;.\pginstrument.vsprops"269 InheritedPropertySheets=".\sqlite3.vsprops;.\pginstrument.vsprops" 274 270 CharacterSet="0" 275 271 WholeProgramOptimization="1" … … 292 288 <Tool 293 289 Name="VCCLCompilerTool" 294 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 295 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 290 AdditionalIncludeDirectories=""..\..\..\sqlite-3.6.21"" 296 291 /> 297 292 <Tool … … 333 328 Name="PGInstrument|x64" 334 329 ConfigurationType="2" 335 InheritedPropertySheets=".\ pyd.vsprops;.\x64.vsprops;.\pginstrument.vsprops"330 InheritedPropertySheets=".\sqlite3.vsprops;.\x64.vsprops;.\pginstrument.vsprops" 336 331 CharacterSet="0" 337 332 WholeProgramOptimization="1" … … 355 350 <Tool 356 351 Name="VCCLCompilerTool" 357 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 358 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 352 AdditionalIncludeDirectories="" 359 353 /> 360 354 <Tool … … 395 389 Name="PGUpdate|Win32" 396 390 ConfigurationType="2" 397 InheritedPropertySheets=".\ pyd.vsprops;.\pgupdate.vsprops"391 InheritedPropertySheets=".\sqlite3.vsprops;.\pgupdate.vsprops" 398 392 CharacterSet="0" 399 393 WholeProgramOptimization="1" … … 416 410 <Tool 417 411 Name="VCCLCompilerTool" 418 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 419 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 412 AdditionalIncludeDirectories="" 420 413 /> 421 414 <Tool … … 457 450 Name="PGUpdate|x64" 458 451 ConfigurationType="2" 459 InheritedPropertySheets=".\ pyd.vsprops;.\x64.vsprops;.\pgupdate.vsprops"452 InheritedPropertySheets=".\sqlite3.vsprops;.\x64.vsprops;.\pgupdate.vsprops" 460 453 CharacterSet="0" 461 454 WholeProgramOptimization="1" … … 479 472 <Tool 480 473 Name="VCCLCompilerTool" 481 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9" 482 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)" 474 AdditionalIncludeDirectories="" 483 475 /> 484 476 <Tool … … 524 516 > 525 517 <File 526 RelativePath="..\..\..\sqlite-3. 5.9\sqlite3.h"518 RelativePath="..\..\..\sqlite-3.6.21\sqlite3.h" 527 519 > 528 520 </File> 529 521 <File 530 RelativePath="..\..\..\sqlite-3. 5.9\sqlite3ext.h"522 RelativePath="..\..\..\sqlite-3.6.21\sqlite3ext.h" 531 523 > 532 524 </File> … … 536 528 > 537 529 <File 538 RelativePath="..\..\..\sqlite-3. 5.9\sqlite3.c"530 RelativePath="..\..\..\sqlite-3.6.21\sqlite3.c" 539 531 > 540 532 </File>
Note:
See TracChangeset
for help on using the changeset viewer.