diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-04 22:35:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-04 22:35:01 +0200 |
commit | ba46075731a00cdc7825dd1feea1272cd475da36 (patch) | |
tree | 12d3ec1ee33af91daeee4aaea4525cb9479b29f9 /nsis | |
parent | 249f0dda510d4dc3b68ad3450d3b8f17eafa40b3 (diff) | |
download | vim-git-ba46075731a00cdc7825dd1feea1272cd475da36.tar.gz |
updated for version 7.3.1307v7.3.1307
Problem: MS-Windows build instructions are outdated.
Solution: Adjust for building on Windows 7. Drop Windows 95/98/ME support.
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index a2940eb1e..ccdef090e 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -5,7 +5,7 @@ # WARNING: if you make changes to this script, look out for $0 to be valid, # because uninstall deletes most files in $0. -# Location of gvim_ole.exe, vimd32.exe, GvimExt/*, etc. +# Location of gvim_ole.exe, vimw32.exe, GvimExt/*, etc. !define VIMSRC "..\src" # Location of runtime files @@ -247,11 +247,10 @@ Section "Vim console program (vim.exe)" ReadRegStr $R0 HKLM \ "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion IfErrors 0 lbl_winnt - # Windows 95/98/ME - File /oname=vim.exe ${VIMSRC}\vimd32.exe + # Windows 95/98/ME: not supported Goto lbl_done lbl_winnt: - # Windows NT/2000/XT + # Windows NT/2000/XT and later File /oname=vim.exe ${VIMSRC}\vimw32.exe lbl_done: StrCpy $2 "$2 vim view vimdiff" |