diff options
Diffstat (limited to 'xorg-server/installer/vcxsrv-debug.nsi')
-rw-r--r-- | xorg-server/installer/vcxsrv-debug.nsi | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/xorg-server/installer/vcxsrv-debug.nsi b/xorg-server/installer/vcxsrv-debug.nsi index edde82641..8a3ea204a 100644 --- a/xorg-server/installer/vcxsrv-debug.nsi +++ b/xorg-server/installer/vcxsrv-debug.nsi @@ -21,7 +21,7 @@ Name "VcXsrv"
; The file to write
-OutFile "vcxsrv-debug.1.14.2.1.installer.exe"
+OutFile "vcxsrv-debug.1.14.3.installer.exe"
; The default installation directory
InstallDir $PROGRAMFILES32\VcXsrv
@@ -61,6 +61,11 @@ Section "VcXsrv debug exe and dlls" ; Set output path to the installation directory.
SetOutPath $INSTDIR
+ IfFileExists "$INSTDIR\msvcr100d.dll" 0 +2
+ Delete "$INSTDIR\msvcr100d.dll"
+ IfFileExists "$INSTDIR\msvcp100d.dll" 0 +2
+ Delete "$INSTDIR\msvcp100d.dll"
+
; Put files there
File "..\obj\servdebug\vcxsrv.exe"
File "..\..\xkbcomp\obj\debug\xkbcomp.exe"
@@ -81,8 +86,8 @@ Section "VcXsrv debug exe and dlls" File "..\..\libX11\obj\debug\libX11.dll"
File "..\..\libXext\src\obj\debug\libXext.dll"
File "..\..\libXmu\src\obj\debug\libXmu.dll"
- File "msvcr100d.dll"
- File "msvcp100d.dll"
+ File "msvcr110d.dll"
+ File "msvcp110d.dll"
WriteRegStr HKLM SOFTWARE\VcXsrv "Install_Dir" "$INSTDIR"
SectionEnd
|