Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 1', part 1. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | vs2015update1 |
Files: | files | file ages | folders |
SHA1: |
664a055dcbb4a6f33f769ec815081889 |
User & Date: | mistachkin 2015-12-01 18:58:19 |
Context
2015-12-01
| ||
18:59 | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 1', part 2. check-in: 9cf86e8d4b user: mistachkin tags: vs2015update1 | |
18:58 | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 1', part 1. check-in: 664a055dcb user: mistachkin tags: vs2015update1 | |
2015-11-06
| ||
20:52 | Update the legacy CryptoAPI codec to adapt to upcoming changes in the SQLite core library. check-in: 6da06906ed user: mistachkin tags: trunk | |
Changes
Changes to Setup/data/verify.lst.
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 |
############################################################################### # # 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_RTM.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_RTM.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 |
| | |
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 |
############################################################################### # # 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_VSU1.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_VSU1.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 15 16 17 18 19 20 21 22 |
::
IF NOT DEFINED ISNETFX2 (
SET ISNETFX2=False
)
IF NOT DEFINED VCRUNTIME (
SET VCRUNTIME=2015_RTM
)
IF NOT DEFINED CONFIGURATION (
SET CONFIGURATION=Release
)
IF NOT DEFINED PLATFORM (
|
| |
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_VSU1
)
IF NOT DEFINED CONFIGURATION (
SET CONFIGURATION=Release
)
IF NOT DEFINED PLATFORM (
|
Changes to Setup/set_x64_2015.bat.
4 5 6 7 8 9 10 11 12 13 14 |
:: set_x64_2015.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::
SET ISNETFX2=False
SET VCRUNTIME=2015_RTM
SET PLATFORM=x64
SET PROCESSOR=x64
SET YEAR=2015
|
| |
4 5 6 7 8 9 10 11 12 13 14 |
:: set_x64_2015.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::
SET ISNETFX2=False
SET VCRUNTIME=2015_VSU1
SET PLATFORM=x64
SET PROCESSOR=x64
SET YEAR=2015
|
Changes to Setup/set_x86_2015.bat.
4 5 6 7 8 9 10 11 12 13 14 |
:: set_x86_2015.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::
SET ISNETFX2=False
SET VCRUNTIME=2015_RTM
SET PLATFORM=Win32
SET PROCESSOR=x86
SET YEAR=2015
|
| |
4 5 6 7 8 9 10 11 12 13 14 |
:: set_x86_2015.bat --
::
:: Written by Joe Mistachkin.
:: Released to the public domain, use at your own risk!
::
SET ISNETFX2=False
SET VCRUNTIME=2015_VSU1
SET PLATFORM=Win32
SET PROCESSOR=x86
SET YEAR=2015
|