Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

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  
    44        Version="8.00"
    55        Name="_multiprocessing"
    6         ProjectGUID="{9e48b300-37d1-11dd-8c41-005056c00008}"
     6        ProjectGUID="{9E48B300-37D1-11DD-8C41-005056C00008}"
    77        RootNamespace="_multiprocessing"
    88        Keyword="Win32Proj"
  • python/vendor/current/PC/VS8.0/_sqlite3.vcproj

    r2 r388  
    4343                        <Tool
    4444                                Name="VCCLCompilerTool"
    45                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     45                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    4646                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    4747                        />
     
    105105                        <Tool
    106106                                Name="VCCLCompilerTool"
    107                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     107                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    108108                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    109109                        />
     
    167167                        <Tool
    168168                                Name="VCCLCompilerTool"
    169                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     169                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    170170                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    171171                        />
     
    230230                        <Tool
    231231                                Name="VCCLCompilerTool"
    232                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     232                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    233233                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    234234                        />
     
    292292                        <Tool
    293293                                Name="VCCLCompilerTool"
    294                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     294                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    295295                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    296296                        />
     
    355355                        <Tool
    356356                                Name="VCCLCompilerTool"
    357                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     357                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    358358                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    359359                        />
     
    418418                        <Tool
    419419                                Name="VCCLCompilerTool"
    420                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     420                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    421421                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    422422                        />
     
    481481                        <Tool
    482482                                Name="VCCLCompilerTool"
    483                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
     483                                AdditionalIncludeDirectories="..\..\..\sqlite-3.6.21"
    484484                                PreprocessorDefinitions="MODULE_NAME=\&quot;sqlite3\&quot;"
    485485                        />
  • python/vendor/current/PC/VS8.0/bdist_wininst.vcproj

    r2 r388  
    5656                                PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
    5757                                StringPooling="true"
    58                                 RuntimeLibrary="2"
     58                                RuntimeLibrary="0"
    5959                                EnableFunctionLevelLinking="true"
    6060                                WarningLevel="3"
     
    146146                                PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
    147147                                StringPooling="true"
    148                                 RuntimeLibrary="2"
     148                                RuntimeLibrary="0"
    149149                                EnableFunctionLevelLinking="true"
    150150                                WarningLevel="3"
  • python/vendor/current/PC/VS8.0/build_ssl.bat

    r2 r388  
    33  if %1 EQU Debug (
    44    set HOST_PYTHON=python_d.exe
    5     if not exist python26_d.dll exit 1
     5    if not exist python27_d.dll exit 1
    66  ) ELSE (
    77    set HOST_PYTHON=python.exe
    8     if not exist python26.dll exit 1
     8    if not exist python27.dll exit 1
    99  )
    1010)
  • python/vendor/current/PC/VS8.0/build_ssl.py

    r2 r388  
    99#   any other external packages there.
    1010# * Install ActivePerl and ensure it is somewhere on your path.
    11 # * Run this script from the PCBuild directory.
     11# * Run this script from the PC/VS8.0 directory.
    1212#
    1313# it should configure and build SSL, then build the _ssl and _hashlib
     
    4747def find_working_perl(perls):
    4848    for perl in perls:
    49         fh = os.popen(perl + ' -e "use Win32;"')
     49        fh = os.popen('"%s" -e "use Win32;"' % perl)
    5050        fh.read()
    5151        rc = fh.close()
     
    179179    perls = find_all_on_path("perl.exe", ["\\perl\\bin", "C:\\perl\\bin"])
    180180    perl = find_working_perl(perls)
    181     if perl is None:
     181    if perl:
     182        print("Found a working perl at '%s'" % (perl,))
     183    else:
    182184        print("No Perl installation was found. Existing Makefiles are used.")
    183 
    184     print("Found a working perl at '%s'" % (perl,))
    185185    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.
    187187    ssl_dir = find_best_ssl_dir(("..\\..\\..",))
    188188    if ssl_dir is None:
  • python/vendor/current/PC/VS8.0/bz2.vcproj

    r2 r388  
    4444                                Name="VCCLCompilerTool"
    4545                                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)&#x0D;&#x0A;if exist $(PlatformName)-Debug\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Debug mkdir $(PlatformName)-Debug&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Debug&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    6160                        />
    6261                        <Tool
     
    107106                                Name="VCCLCompilerTool"
    108107                                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)&#x0D;&#x0A;if exist $(PlatformName)-Debug\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Debug mkdir $(PlatformName)-Debug&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Debug&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    124122                        />
    125123                        <Tool
     
    170168                                Name="VCCLCompilerTool"
    171169                                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)&#x0D;&#x0A;if exist $(PlatformName)-Release\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    187184                        />
    188185                        <Tool
     
    234231                                Name="VCCLCompilerTool"
    235232                                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)&#x0D;&#x0A;if exist $(PlatformName)-Release\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    251247                        />
    252248                        <Tool
     
    297293                                Name="VCCLCompilerTool"
    298294                                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)&#x0D;&#x0A;if exist $(PlatformName)-Release\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    314309                        />
    315310                        <Tool
     
    361356                                Name="VCCLCompilerTool"
    362357                                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)&#x0D;&#x0A;if exist $(PlatformName)-Release\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    378372                                TargetMachine="17"
    379373                        />
     
    425419                                Name="VCCLCompilerTool"
    426420                                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)&#x0D;&#x0A;if exist $(PlatformName)-Release\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    442435                        />
    443436                        <Tool
     
    489482                                Name="VCCLCompilerTool"
    490483                                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)&#x0D;&#x0A;if exist $(PlatformName)-Release\libbz2.lib exit 0&#x0D;&#x0A;if not exist $(PlatformName)-Release mkdir $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc lib&#x0D;&#x0A;copy libbz2.lib $(PlatformName)-Release&#x0D;&#x0A;nmake /nologo /f makefile.msc clean&#x0D;&#x0A;"
    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"
    506498                                TargetMachine="17"
    507499                        />
     
    540532                        </File>
    541533                </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>
    542578        </Files>
    543579        <Globals>
  • python/vendor/current/PC/VS8.0/make_buildinfo.c

    r2 r388  
    2424int make_buildinfo2()
    2525{
    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;
     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;
    5454}
    5555
    5656int main(int argc, char*argv[])
    5757{
    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         }
     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    }
    8181
    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;
     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;
    9494}
  • python/vendor/current/PC/VS8.0/pyd.vsprops

    r2 r388  
    1616                ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
    1717                ImportLibrary="$(OutDir)\$(TargetName).lib"
     18                GenerateManifest="false"
     19        />
     20        <Tool
     21                Name="VCManifestTool"
     22                EmbedManifest="false"
    1823        />
    1924        <Tool
  • python/vendor/current/PC/VS8.0/pyd_d.vsprops

    r2 r388  
    2020                ProgramDatabaseFile="$(OutDir)\$(ProjectName)_d.pdb"
    2121                ImportLibrary="$(OutDir)\$(TargetName).lib"
     22                GenerateManifest="false"
     23        />
     24        <Tool
     25                Name="VCManifestTool"
     26                EmbedManifest="false"
    2227        />
    2328        <Tool
  • python/vendor/current/PC/VS8.0/pyproject.vsprops

    r2 r388  
    3939        <UserMacro
    4040                Name="PyDllName"
    41                 Value="python26"
     41                Value="python27"
    4242        />
    4343        <UserMacro
     
    4848                Name="externalsDir"
    4949                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"
    5058        />
    5159        <UserMacro
     
    6674        />
    6775        <UserMacro
    68                 Name="bsddb47Dir"
    69                 Value="$(externalsDir)\db-4.7.25.0\build_windows"
    70         />
    71         <UserMacro
    72                 Name="bsddb47DepLibs"
    73                 Value="ws2_32.lib"
    74         />
    75         <UserMacro
    7676                Name="sqlite3Dir"
    77                 Value="$(externalsDir)\sqlite-3.5.9"
     77                Value="$(externalsDir)\sqlite-3.6.21"
    7878        />
    7979        <UserMacro
    8080                Name="bz2Dir"
    81                 Value="$(externalsDir)\bzip2-1.0.5"
     81                Value="$(externalsDir)\bzip2-1.0.6"
    8282        />
    8383        <UserMacro
    8484                Name="opensslDir"
    85                 Value="$(externalsDir)\openssl-0.9.8g"
     85                Value="$(externalsDir)\openssl-0.9.8y"
    8686        />
    8787        <UserMacro
  • python/vendor/current/PC/VS8.0/pythoncore.vcproj

    r2 r388  
    716716                        </File>
    717717                        <File
     718                                RelativePath="..\..\Include\dtoa.h"
     719                                >
     720                        </File>
     721                        <File
    718722                                RelativePath="..\..\Include\enumobject.h"
    719723                                >
     
    849853                        <File
    850854                                RelativePath="..\..\Include\pyarena.h"
     855                                >
     856                        </File>
     857                        <File
     858                                RelativePath="..\..\Include\pycapsule.h"
     859                                >
     860                        </File>
     861                        <File
     862                                RelativePath="..\..\Include\pyctype.h"
    851863                                >
    852864                        </File>
     
    9961008                        </File>
    9971009                        <File
    998                                 RelativePath="..\..\Modules\_fileio.c"
    999                                 >
    1000                         </File>
    1001                         <File
    1002                                 RelativePath="..\..\Modules\_bytesio.c"
    1003                                 >
    1004                         </File>
    1005                         <File
    10061010                                RelativePath="..\..\Modules\_functoolsmodule.c"
    10071011                                >
     
    10281032                        </File>
    10291033                        <File
     1034                                RelativePath="..\..\Modules\_math.c"
     1035                                >
     1036                        </File>
     1037                        <File
     1038                                RelativePath="..\..\Modules\_math.h"
     1039                                >
     1040                        </File>
     1041                        <File
    10301042                                RelativePath="..\..\Modules\_randommodule.c"
    10311043                                >
     
    11691181                        <File
    11701182                                RelativePath="..\..\Modules\xxsubtype.c"
    1171                                 >
    1172                         </File>
    1173                         <File
    1174                                 RelativePath="..\..\Modules\yuv.h"
    1175                                 >
    1176                         </File>
    1177                         <File
    1178                                 RelativePath="..\..\Modules\yuvconvert.c"
    11791183                                >
    11801184                        </File>
     
    13521356                                <File
    13531357                                        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"
    13541394                                        >
    13551395                                </File>
     
    13801420                        </File>
    13811421                        <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
    13821550                                RelativePath="..\..\Objects\stringobject.c"
    1383                                 >
    1384                         </File>
    1385                         <File
    1386                                 RelativePath="..\..\Objects\cellobject.c"
    1387                                 >
    1388                         </File>
    1389                         <File
    1390                                 RelativePath="..\..\Objects\classobject.c"
    1391                                 >
    1392                         </File>
    1393                         <File
    1394                                 RelativePath="..\..\Objects\cobject.c"
    1395                                 >
    1396                         </File>
    1397                         <File
    1398                                 RelativePath="..\..\Objects\codeobject.c"
    1399                                 >
    1400                         </File>
    1401                         <File
    1402                                 RelativePath="..\..\Objects\complexobject.c"
    1403                                 >
    1404                         </File>
    1405                         <File
    1406                                 RelativePath="..\..\Objects\stringlib\count.h"
    1407                                 >
    1408                         </File>
    1409                         <File
    1410                                 RelativePath="..\..\Objects\descrobject.c"
    1411                                 >
    1412                         </File>
    1413                         <File
    1414                                 RelativePath="..\..\Objects\dictobject.c"
    1415                                 >
    1416                         </File>
    1417                         <File
    1418                                 RelativePath="..\..\Objects\enumobject.c"
    1419                                 >
    1420                         </File>
    1421                         <File
    1422                                 RelativePath="..\..\Objects\exceptions.c"
    1423                                 >
    1424                         </File>
    1425                         <File
    1426                                 RelativePath="..\..\Objects\stringlib\fastsearch.h"
    1427                                 >
    1428                         </File>
    1429                         <File
    1430                                 RelativePath="..\..\Objects\fileobject.c"
    1431                                 >
    1432                         </File>
    1433                         <File
    1434                                 RelativePath="..\..\Objects\stringlib\find.h"
    1435                                 >
    1436                         </File>
    1437                         <File
    1438                                 RelativePath="..\..\Objects\floatobject.c"
    1439                                 >
    1440                         </File>
    1441                         <File
    1442                                 RelativePath="..\..\Objects\frameobject.c"
    1443                                 >
    1444                         </File>
    1445                         <File
    1446                                 RelativePath="..\..\Objects\funcobject.c"
    1447                                 >
    1448                         </File>
    1449                         <File
    1450                                 RelativePath="..\..\Objects\genobject.c"
    1451                                 >
    1452                         </File>
    1453                         <File
    1454                                 RelativePath="..\..\Objects\intobject.c"
    1455                                 >
    1456                         </File>
    1457                         <File
    1458                                 RelativePath="..\..\Objects\iterobject.c"
    1459                                 >
    1460                         </File>
    1461                         <File
    1462                                 RelativePath="..\..\Objects\listobject.c"
    1463                                 >
    1464                         </File>
    1465                         <File
    1466                                 RelativePath="..\..\Objects\longobject.c"
    1467                                 >
    1468                         </File>
    1469                         <File
    1470                                 RelativePath="..\..\Objects\methodobject.c"
    1471                                 >
    1472                         </File>
    1473                         <File
    1474                                 RelativePath="..\..\Objects\moduleobject.c"
    1475                                 >
    1476                         </File>
    1477                         <File
    1478                                 RelativePath="..\..\Objects\object.c"
    1479                                 >
    1480                         </File>
    1481                         <File
    1482                                 RelativePath="..\..\Objects\obmalloc.c"
    1483                                 >
    1484                         </File>
    1485                         <File
    1486                                 RelativePath="..\..\Objects\stringlib\partition.h"
    1487                                 >
    1488                         </File>
    1489                         <File
    1490                                 RelativePath="..\..\Objects\rangeobject.c"
    1491                                 >
    1492                         </File>
    1493                         <File
    1494                                 RelativePath="..\..\Objects\setobject.c"
    1495                                 >
    1496                         </File>
    1497                         <File
    1498                                 RelativePath="..\..\Objects\sliceobject.c"
    14991551                                >
    15001552                        </File>
     
    16601712                        </File>
    16611713                        <File
     1714                                RelativePath="..\..\Python\dtoa.c"
     1715                                >
     1716                        </File>
     1717                        <File
    16621718                                RelativePath="..\..\Python\dynload_win.c"
    16631719                                >
     
    16961752                        </File>
    16971753                        <File
    1698                                 RelativePath="..\..\Python\getmtime.c"
    1699                                 >
    1700                         </File>
    1701                         <File
    17021754                                RelativePath="..\..\Python\getopt.c"
    17031755                                >
     
    17521804                        </File>
    17531805                        <File
     1806                                RelativePath="..\..\Python\pyctype.c"
     1807                                >
     1808                        </File>
     1809                        <File
    17541810                                RelativePath="..\..\Python\pyfpe.c"
    17551811                                >
     
    17771833                        <File
    17781834                                RelativePath="..\..\Python\pythonrun.c"
     1835                                >
     1836                        </File>
     1837                        <File
     1838                                RelativePath="..\..\Python\random.c"
    17791839                                >
    17801840                        </File>
  • python/vendor/current/PC/VS8.0/select.vcproj

    r2 r388  
    5555                        <Tool
    5656                                Name="VCLinkerTool"
    57                                 AdditionalDependencies="wsock32.lib"
     57                                AdditionalDependencies="ws2_32.lib"
    5858                                IgnoreDefaultLibraryNames="libc"
    5959                                BaseAddress="0x1D110000"
     
    117117                        <Tool
    118118                                Name="VCLinkerTool"
    119                                 AdditionalDependencies="wsock32.lib"
     119                                AdditionalDependencies="ws2_32.lib"
    120120                                IgnoreDefaultLibraryNames="libc"
    121121                                BaseAddress="0x1D110000"
     
    179179                        <Tool
    180180                                Name="VCLinkerTool"
    181                                 AdditionalDependencies="wsock32.lib"
     181                                AdditionalDependencies="ws2_32.lib"
    182182                                IgnoreDefaultLibraryNames="libc"
    183183                                BaseAddress="0x1D110000"
     
    242242                        <Tool
    243243                                Name="VCLinkerTool"
    244                                 AdditionalDependencies="wsock32.lib"
     244                                AdditionalDependencies="ws2_32.lib"
    245245                                IgnoreDefaultLibraryNames="libc"
    246246                                BaseAddress="0x1D110000"
     
    304304                        <Tool
    305305                                Name="VCLinkerTool"
    306                                 AdditionalDependencies="wsock32.lib"
     306                                AdditionalDependencies="ws2_32.lib"
    307307                                IgnoreDefaultLibraryNames="libc"
    308308                                BaseAddress="0x1D110000"
     
    367367                        <Tool
    368368                                Name="VCLinkerTool"
    369                                 AdditionalDependencies="wsock32.lib"
     369                                AdditionalDependencies="ws2_32.lib"
    370370                                IgnoreDefaultLibraryNames="libc"
    371371                                BaseAddress="0x1D110000"
     
    430430                        <Tool
    431431                                Name="VCLinkerTool"
    432                                 AdditionalDependencies="wsock32.lib"
     432                                AdditionalDependencies="ws2_32.lib"
    433433                                IgnoreDefaultLibraryNames="libc"
    434434                                BaseAddress="0x1D110000"
     
    493493                        <Tool
    494494                                Name="VCLinkerTool"
    495                                 AdditionalDependencies="wsock32.lib"
     495                                AdditionalDependencies="ws2_32.lib"
    496496                                IgnoreDefaultLibraryNames="libc"
    497497                                BaseAddress="0x1D110000"
  • python/vendor/current/PC/VS8.0/sqlite3.vcproj

    r2 r388  
    2323                        Name="Debug|Win32"
    2424                        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=""
    4746                        />
    4847                        <Tool
     
    8483                        Name="Debug|x64"
    8584                        ConfigurationType="2"
    86                         InheritedPropertySheets=".\pyd_d.vsprops;.\x64.vsprops"
     85                        InheritedPropertySheets=".\sqlite3.vsprops;.\debug.vsprops;.\x64.vsprops"
    8786                        CharacterSet="0"
    8887                        >
     
    105104                        <Tool
    106105                                Name="VCCLCompilerTool"
    107                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    108                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     106                                AdditionalIncludeDirectories=""
    109107                        />
    110108                        <Tool
     
    146144                        Name="Release|Win32"
    147145                        ConfigurationType="2"
    148                         InheritedPropertySheets=".\pyd.vsprops"
     146                        InheritedPropertySheets=".\sqlite3.vsprops"
    149147                        CharacterSet="0"
    150148                        WholeProgramOptimization="1"
     
    167165                        <Tool
    168166                                Name="VCCLCompilerTool"
    169                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    170                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     167                                AdditionalIncludeDirectories=""
    171168                        />
    172169                        <Tool
     
    208205                        Name="Release|x64"
    209206                        ConfigurationType="2"
    210                         InheritedPropertySheets=".\pyd.vsprops;.\x64.vsprops"
     207                        InheritedPropertySheets=".\sqlite3.vsprops;.\x64.vsprops"
    211208                        CharacterSet="0"
    212209                        WholeProgramOptimization="1"
     
    230227                        <Tool
    231228                                Name="VCCLCompilerTool"
    232                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    233                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     229                                AdditionalIncludeDirectories=""
    234230                        />
    235231                        <Tool
     
    271267                        Name="PGInstrument|Win32"
    272268                        ConfigurationType="2"
    273                         InheritedPropertySheets=".\pyd.vsprops;.\pginstrument.vsprops"
     269                        InheritedPropertySheets=".\sqlite3.vsprops;.\pginstrument.vsprops"
    274270                        CharacterSet="0"
    275271                        WholeProgramOptimization="1"
     
    292288                        <Tool
    293289                                Name="VCCLCompilerTool"
    294                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    295                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     290                                AdditionalIncludeDirectories="&quot;..\..\..\sqlite-3.6.21&quot;"
    296291                        />
    297292                        <Tool
     
    333328                        Name="PGInstrument|x64"
    334329                        ConfigurationType="2"
    335                         InheritedPropertySheets=".\pyd.vsprops;.\x64.vsprops;.\pginstrument.vsprops"
     330                        InheritedPropertySheets=".\sqlite3.vsprops;.\x64.vsprops;.\pginstrument.vsprops"
    336331                        CharacterSet="0"
    337332                        WholeProgramOptimization="1"
     
    355350                        <Tool
    356351                                Name="VCCLCompilerTool"
    357                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    358                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     352                                AdditionalIncludeDirectories=""
    359353                        />
    360354                        <Tool
     
    395389                        Name="PGUpdate|Win32"
    396390                        ConfigurationType="2"
    397                         InheritedPropertySheets=".\pyd.vsprops;.\pgupdate.vsprops"
     391                        InheritedPropertySheets=".\sqlite3.vsprops;.\pgupdate.vsprops"
    398392                        CharacterSet="0"
    399393                        WholeProgramOptimization="1"
     
    416410                        <Tool
    417411                                Name="VCCLCompilerTool"
    418                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    419                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     412                                AdditionalIncludeDirectories=""
    420413                        />
    421414                        <Tool
     
    457450                        Name="PGUpdate|x64"
    458451                        ConfigurationType="2"
    459                         InheritedPropertySheets=".\pyd.vsprops;.\x64.vsprops;.\pgupdate.vsprops"
     452                        InheritedPropertySheets=".\sqlite3.vsprops;.\x64.vsprops;.\pgupdate.vsprops"
    460453                        CharacterSet="0"
    461454                        WholeProgramOptimization="1"
     
    479472                        <Tool
    480473                                Name="VCCLCompilerTool"
    481                                 AdditionalIncludeDirectories="..\..\..\sqlite-3.5.9"
    482                                 PreprocessorDefinitions="SQLITE_API=__declspec(dllexport)"
     474                                AdditionalIncludeDirectories=""
    483475                        />
    484476                        <Tool
     
    524516                        >
    525517                        <File
    526                                 RelativePath="..\..\..\sqlite-3.5.9\sqlite3.h"
     518                                RelativePath="..\..\..\sqlite-3.6.21\sqlite3.h"
    527519                                >
    528520                        </File>
    529521                        <File
    530                                 RelativePath="..\..\..\sqlite-3.5.9\sqlite3ext.h"
     522                                RelativePath="..\..\..\sqlite-3.6.21\sqlite3ext.h"
    531523                                >
    532524                        </File>
     
    536528                        >
    537529                        <File
    538                                 RelativePath="..\..\..\sqlite-3.5.9\sqlite3.c"
     530                                RelativePath="..\..\..\sqlite-3.6.21\sqlite3.c"
    539531                                >
    540532                        </File>
Note: See TracChangeset for help on using the changeset viewer.