summaryrefslogtreecommitdiff
path: root/tools/x-win/package.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/x-win/package.sh')
-rwxr-xr-xtools/x-win/package.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/x-win/package.sh b/tools/x-win/package.sh
index ecc588b55b..610830f934 100755
--- a/tools/x-win/package.sh
+++ b/tools/x-win/package.sh
@@ -320,6 +320,29 @@ cat >> $NSISFILE << EOF
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"
+
+Function .onInit
+
+ ReadRegStr \$R0 HKLM \
+ "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PRODUCT_ID}" \
+ "UninstallString"
+ StrCmp \$R0 "" done
+
+ MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
+ "${PROGRAM_NAME} is already installed. \$\\n\$\\nClick 'OK' to remove the \
+ previous version or 'Cancel' to cancel this upgrade." \
+ IDOK uninst
+ Abort
+
+ uninst:
+ ClearErrors
+ Exec \$INSTDIR\uninst.exe ;
+
+ done:
+
+FunctionEnd
+
+
Section "${PROGRAM_NAME}${PROGRAM_VERSION} (required)" SecMainProg
SectionIn RO
SetOutPath \$INSTDIR