diff options
author | wiso <wiso@svn> | 2009-12-22 17:13:44 +0000 |
---|---|---|
committer | wiso <wiso@svn> | 2009-12-22 17:13:44 +0000 |
commit | de1d3b8d8c4499a7a9647a4c5b718ca4bb2669fb (patch) | |
tree | 9696185f60cff6015a91cac207d0750083c14487 | |
parent | 2ef691050c515cdf165a2353f0488dc7074f4da7 (diff) |
[WIN32] changed: make redist and DirectX optional. Already hear users complaining about why XBMC doesn't work even though they have DirectX 11 installed.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@25979 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | project/Win32BuildSetup/XBMC for Windows.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/Win32BuildSetup/XBMC for Windows.nsi b/project/Win32BuildSetup/XBMC for Windows.nsi index f12c5cfc84..7450f22699 100644 --- a/project/Win32BuildSetup/XBMC for Windows.nsi +++ b/project/Win32BuildSetup/XBMC for Windows.nsi @@ -380,7 +380,7 @@ SectionEnd !if "${xbmc_target}" == "dx"
Section "DirectX WebInstall" SEC_DIRECTX
- SectionIn RO
+ SectionIn 1 2
SetOutPath "$TEMP"
File "${xbmc_root}\Xbmc\dxwebsetup.exe"
@@ -400,7 +400,7 @@ SectionEnd Section "Microsoft Visual C++ 2008 Redistributable Package (x86)" SEC_VCREDIST
- SectionIn RO
+ SectionIn 1 2
SetOutPath "$TEMP"
File "${xbmc_root}\Xbmc\vcredist_x86.exe"
|