diff options
author | marha <marha@users.sourceforge.net> | 2011-03-06 18:47:53 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-03-06 18:47:53 +0000 |
commit | b6bc795c211112d5365ce3622a8aa0d1b0344dcf (patch) | |
tree | b64e47e0bf359d821e5699d4e52ab83074297606 /xorg-server/installer | |
parent | f027c29436a689abc94b720c2efebeddd449a61f (diff) | |
download | vcxsrv-b6bc795c211112d5365ce3622a8aa0d1b0344dcf.tar.gz vcxsrv-b6bc795c211112d5365ce3622a8aa0d1b0344dcf.tar.bz2 vcxsrv-b6bc795c211112d5365ce3622a8aa0d1b0344dcf.zip |
xlaunch now uses libxml2 (dependency on msxml is removed)
Diffstat (limited to 'xorg-server/installer')
-rw-r--r-- | xorg-server/installer/vcxsrv.nsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/xorg-server/installer/vcxsrv.nsi b/xorg-server/installer/vcxsrv.nsi index 037f0c9ff..7cb68f41b 100644 --- a/xorg-server/installer/vcxsrv.nsi +++ b/xorg-server/installer/vcxsrv.nsi @@ -93,6 +93,9 @@ Section "VcXsrv (required)" File "..\swrast_dri.dll"
File "..\swrast_dri_dbg.dll"
File "..\dxtn.dll"
+ File "..\..\libxml2\bin\libxml2.dll"
+ File "..\..\libxml2\bin\zlib1.dll"
+ File "..\..\libxml2\bin\iconv.dll"
!ifndef VS2008
File "msvcr100.dll"
File "msvcp100.dll"
@@ -253,6 +256,11 @@ Section "Uninstall" Delete "$INSTDIR\plink.exe"
Delete "$INSTDIR\swrast_dri.dll"
Delete "$INSTDIR\swrast_dri_dbg.dll"
+ Delete "$INSTDIR\dxtn.dll"
+ Delete "$INSTDIR\libxml2.dll"
+ Delete "$INSTDIR\zlib1.dll"
+ Delete "$INSTDIR\iconv.dll"
+
!ifndef VS2008
Delete "$INSTDIR\msvcr100.dll"
Delete "$INSTDIR\msvcp100.dll"
|