diff options
author | marha <marha@users.sourceforge.net> | 2010-05-17 05:53:18 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-05-17 05:53:18 +0000 |
commit | 61a9070b96839367789b1728b7319789af6676d0 (patch) | |
tree | 0c78655e5155d6b7d46b3f946e3329fbc26dc99f /xorg-server/installer/vcxsrv.nsi | |
parent | 1c94119ae26b94a60bb2c2b33494ed43c3b8a52f (diff) | |
download | vcxsrv-61a9070b96839367789b1728b7319789af6676d0.tar.gz vcxsrv-61a9070b96839367789b1728b7319789af6676d0.tar.bz2 vcxsrv-61a9070b96839367789b1728b7319789af6676d0.zip |
Also install msvcp100.dll
Diffstat (limited to 'xorg-server/installer/vcxsrv.nsi')
-rw-r--r-- | xorg-server/installer/vcxsrv.nsi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xorg-server/installer/vcxsrv.nsi b/xorg-server/installer/vcxsrv.nsi index 6a0f18896..cb88c3d32 100644 --- a/xorg-server/installer/vcxsrv.nsi +++ b/xorg-server/installer/vcxsrv.nsi @@ -90,6 +90,7 @@ Section "VcXsrv (required)" File "..\swrast_dri_dbg.dll"
!ifndef VS2008
File "msvcr100.dll"
+ File "msvcp100.dll"
File "msvcr100d.dll"
!endif
SetOutPath $INSTDIR\fonts
@@ -243,6 +244,7 @@ Section "Uninstall" Delete "$INSTDIR\swrast_dri_dbg.dll"
!ifndef VS2008
Delete "$INSTDIR\msvcr100.dll"
+ Delete "$INSTDIR\msvcp100.dll"
Delete "$INSTDIR\msvcr100d.dll"
!endif
|