aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <mcm.kaijser@gmail.com>2016-04-02 16:48:24 +0200
committerMartijn Kaijser <mcm.kaijser@gmail.com>2016-04-02 16:48:24 +0200
commitccf2853c11f8ca9f1cffbf29c03a2aae79f29421 (patch)
tree292c3331aac6f759985a070539003002707a9ab4
parent66bf179e916f699f975526eb556d401bd47cc6d5 (diff)
[win32] drop VS2008 C++ redist package
-rw-r--r--project/Win32BuildSetup/genNsisInstaller.nsi10
-rw-r--r--project/Win32BuildSetup/getdeploydependencies.bat5
2 files changed, 0 insertions, 15 deletions
diff --git a/project/Win32BuildSetup/genNsisInstaller.nsi b/project/Win32BuildSetup/genNsisInstaller.nsi
index c74a1a68f6..ac450df501 100644
--- a/project/Win32BuildSetup/genNsisInstaller.nsi
+++ b/project/Win32BuildSetup/genNsisInstaller.nsi
@@ -369,16 +369,6 @@ SectionEnd
;--------------------------------
;vs redist installer Section
SectionGroup "Microsoft Visual C++ packages" SEC_VCREDIST
-Section "VS2008 C++ re-distributable Package (x86)" SEC_VCREDIST1
- ;vc90 for python
- DetailPrint "Running VS2008 re-distributable setup..."
- SectionIn 1 2 #section is in install type Full
- SetOutPath "$TEMP\vc2008"
- File "${app_root}\..\dependencies\vcredist\2008\vcredist_x86.exe"
- ExecWait '"$TEMP\vc2008\vcredist_x86.exe" /q' $VSRedistSetupError
- RMDir /r "$TEMP\vc2008"
- DetailPrint "Finished VS2008 re-distributable setup"
-SectionEnd
Section "VS2010 C++ re-distributable Package (x86)" SEC_VCREDIST2
DetailPrint "Running VS2010 re-distributable setup..."
diff --git a/project/Win32BuildSetup/getdeploydependencies.bat b/project/Win32BuildSetup/getdeploydependencies.bat
index a3e2d7892e..06fb7459bd 100644
--- a/project/Win32BuildSetup/getdeploydependencies.bat
+++ b/project/Win32BuildSetup/getdeploydependencies.bat
@@ -8,15 +8,10 @@ echo Downloading from mirror %KODI_MIRROR%
:: Following commands expect this script's parent directory to be the current directory, so make sure that's so
PUSHD %~dp0
-if not exist dependencies\vcredist\2008 mkdir dependencies\vcredist\2008
if not exist dependencies\vcredist\2010 mkdir dependencies\vcredist\2010
if not exist dependencies\vcredist\2013 mkdir dependencies\vcredist\2013
if not exist dependencies\vcredist\2015 mkdir dependencies\vcredist\2015
-if not exist dependencies\vcredist\2008\vcredist_x86.exe (
- echo Downloading vc90 redist...
- ..\BuildDependencies\bin\wget -nv -O dependencies\vcredist\2008\vcredist_x86.exe %KODI_MIRROR%/build-deps/win32/vcredist/2008/vcredist_x86.exe
-)
if not exist dependencies\vcredist\2010\vcredist_x86.exe (
echo Downloading vc100 redist...
..\BuildDependencies\bin\wget -nv -O dependencies\vcredist\2010\vcredist_x86.exe %KODI_MIRROR%/build-deps/win32/vcredist/2010/vcredist_x86.exe