Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 2', part 1. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f586f38b68bb32856a906fb08501e209 |
User & Date: | mistachkin 2016-03-30 21:02:38.555 |
Context
2016-03-30
| ||
21:03 | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 2', part 2. check-in: 5df3f94594 user: mistachkin tags: trunk | |
21:02 | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 2', part 1. check-in: f586f38b68 user: mistachkin tags: trunk | |
2016-03-29
| ||
20:40 | Import the SQLite core library docs from upstream that correspond to version 3.12.0. check-in: 94e181cde0 user: mistachkin tags: trunk | |
Changes
Changes to Setup/data/verify.lst.
︙ | ︙ | |||
1187 1188 1189 1190 1191 1192 1193 | ############################################################################### # # NOTE: This is the list of files that should be present in all setup archives # supporting the .NET Framework 4.6 for x86. # set sds_manifests(setupX86Vs2015) { | | | | 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 | ############################################################################### # # NOTE: This is the list of files that should be present in all setup archives # supporting the .NET Framework 4.6 for x86. # set sds_manifests(setupX86Vs2015) { {{tmp}\vcredist_x86_2015_VSU2.exe} } ############################################################################### # # NOTE: This is the list of files that should be present in all setup archives # supporting the .NET Framework 4.6 for x64. # set sds_manifests(setupX64Vs2015) { {{tmp}\vcredist_x64_2015_VSU2.exe} } ############################################################################### # # NOTE: These are the master archive manifest groups, based on file name. The # first element in each list is the array variable name prefix used to # locate another array containing the named elements referenced by the |
︙ | ︙ |
Changes to Setup/set_netFx46.bat.
︙ | ︙ | |||
8 9 10 11 12 13 14 | :: IF NOT DEFINED ISNETFX2 ( SET ISNETFX2=False ) IF NOT DEFINED VCRUNTIME ( | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | :: IF NOT DEFINED ISNETFX2 ( SET ISNETFX2=False ) IF NOT DEFINED VCRUNTIME ( SET VCRUNTIME=2015_VSU2 ) IF NOT DEFINED CONFIGURATION ( SET CONFIGURATION=Release ) IF NOT DEFINED PLATFORM ( |
︙ | ︙ |
Changes to Setup/set_netFx461.bat.
︙ | ︙ | |||
8 9 10 11 12 13 14 | :: IF NOT DEFINED ISNETFX2 ( SET ISNETFX2=False ) IF NOT DEFINED VCRUNTIME ( | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | :: IF NOT DEFINED ISNETFX2 ( SET ISNETFX2=False ) IF NOT DEFINED VCRUNTIME ( SET VCRUNTIME=2015_VSU2 ) IF NOT DEFINED CONFIGURATION ( SET CONFIGURATION=Release ) IF NOT DEFINED PLATFORM ( |
︙ | ︙ |
Changes to Setup/set_x64_2015.bat.
1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_x64_2015.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @ECHO OFF :: :: set_x64_2015.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False SET VCRUNTIME=2015_VSU2 SET PLATFORM=x64 SET PROCESSOR=x64 SET YEAR=2015 |
Changes to Setup/set_x86_2015.bat.
1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_x86_2015.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @ECHO OFF :: :: set_x86_2015.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False SET VCRUNTIME=2015_VSU2 SET PLATFORM=Win32 SET PROCESSOR=x86 SET YEAR=2015 |