summaryrefslogtreecommitdiffstats
path: root/nsis
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2022-02-13 13:11:32 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-13 13:11:32 +0000
commitcf6ad8ea8cff318877758b48d3786ab08251ab89 (patch)
tree733ea8da156a2795f80ad253f5c40d8cd0613b87 /nsis
parentf7fbeed0ac8e694a6865cab26b82caeea0870966 (diff)
patch 8.2.4370: MS-Windows: libsodium.dll not included with the installerv8.2.4370
Problem: MS-Windows: libsodium.dll not included with the installer. Solution: Add the file to the installer if it exists. (Christian Brabandt, closes #9762)
Diffstat (limited to 'nsis')
-rw-r--r--nsis/gvim.nsi3
1 files changed, 3 insertions, 0 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi
index 649c6950dd..c32a8868f6 100644
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -348,6 +348,9 @@ Section "$(str_section_exe)" id_section_exe
!if /FileExists "${VIMSRC}\vim${BIT}.dll"
File ${VIMSRC}\vim${BIT}.dll
!endif
+!if /FileExists "${VIMRT}\libsodium.dll"
+ File ${VIMRT}\libsodium.dll
+!endif
File /oname=install.exe ${VIMSRC}\installw32.exe
File /oname=uninstall.exe ${VIMSRC}\uninstallw32.exe
File ${VIMSRC}\vimrun.exe