diff options
author | Werner Koch <wk@gnupg.org> | 2006-03-06 13:28:46 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2006-03-06 13:28:46 +0100 |
commit | a200f76dcfc458a7585952a41b4c286bc48b3fe8 (patch) | |
tree | 56dc0d48971b453e33b77aa73f8218debfbd6ae9 /scripts/w32installer.nsi | |
parent | Replaced an assert and fixed batch mode issue in cardglue. (diff) | |
download | gnupg2-a200f76dcfc458a7585952a41b4c286bc48b3fe8.tar.xz gnupg2-a200f76dcfc458a7585952a41b4c286bc48b3fe8.zip |
Fixed problem with PGP2 style signatures and mutilple plaintext data
Diffstat (limited to '')
-rw-r--r-- | scripts/w32installer.nsi | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/scripts/w32installer.nsi b/scripts/w32installer.nsi index e68e18eaa..e4e88c5e3 100644 --- a/scripts/w32installer.nsi +++ b/scripts/w32installer.nsi @@ -132,7 +132,7 @@ Page custom CustomPageOptions ReserveFile "opt.ini" ReserveFile "COPYING.txt" ReserveFile "README-W32.txt" -ReserveFile "${NSISDIR}/Plugins/System.dll" +#ReserveFile "${NSISDIR}/Plugins/System.dll" ReserveFile "${NSISDIR}/Plugins/UserInfo.dll" @@ -444,11 +444,14 @@ SectionEnd ; Uninstall ; --------- Function .onInit - System::Call 'kernel32::CreateMutexA(i 0, i 0, t "GnuPGInst") i .r1 ?e' - Pop $R0 - StrCmp $R0 0 +3 - MessageBox MB_OK "An instance of the installer is already running." - Abort + # We can't use System.dll anymore becuase it has bee removed from + # Debian due to an inability to build using FS. We should use the + # use our own DLL as we do with gpg4win. + #System::Call 'kernel32::CreateMutexA(i 0, i 0, t "GnuPGInst") i .r1 ?e' + #Pop $R0 + #StrCmp $R0 0 +3 + # MessageBox MB_OK "An instance of the installer is already running." + # Abort ;;!define MUI_LANGDLL_ALWAYSSHOW !insertmacro MUI_LANGDLL_DISPLAY |