From f0ba2ded555dce9430e65d5c52b0622c43798159 Mon Sep 17 00:00:00 2001 From: avolkov Date: Sun, 22 May 2011 17:48:55 +0000 Subject: [PATCH] Add the missing OpenAL piece to the install; delete old packages with .zip names upon install git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3619 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/build/win32_install/uqm-installer.nsi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sc2/build/win32_install/uqm-installer.nsi b/sc2/build/win32_install/uqm-installer.nsi index 0ef87dcd0..6d3f80234 100644 --- a/sc2/build/win32_install/uqm-installer.nsi +++ b/sc2/build/win32_install/uqm-installer.nsi @@ -287,6 +287,7 @@ SectionGroup "!UQM" SECGRP01 File "Manual.txt" File "ogg.dll" File "OpenAL32.dll" + File "wrap_oal.dll" File "README.txt" File "SDL.dll" File "SDL_image.dll" @@ -318,6 +319,10 @@ SectionGroup "!UQM" SECGRP01 Delete "$INSTDIR\content\packages\uqm-0.6.0-3domusic.uqm" Delete "$INSTDIR\content\packages\uqm-0.6.0-voice.uqm" Delete "$INSTDIR\content\packages\uqm-0.6.0-content.uqm" + # and in a case of manual install and overly helpful browsers + Delete "$INSTDIR\content\packages\uqm-0.6.0-3domusic.uqm.zip" + Delete "$INSTDIR\content\packages\uqm-0.6.0-voice.uqm.zip" + Delete "$INSTDIR\content\packages\uqm-0.6.0-content.uqm.zip" ; Shortcuts !insertmacro MUI_STARTMENU_WRITE_BEGIN Application @@ -546,6 +551,7 @@ Section Uninstall Delete "$INSTDIR\SDL_image.dll" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\README.txt" + Delete "$INSTDIR\wrap_oal.dll" Delete "$INSTDIR\OpenAL32.dll" Delete "$INSTDIR\ogg.dll" Delete "$INSTDIR\Manual.txt"