mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Fixed problem with PGP2 style signatures and mutilple plaintext data
This commit is contained in:
parent
09203be1c6
commit
a200f76dcf
5 changed files with 74 additions and 40 deletions
|
@ -1,5 +1,7 @@
|
|||
2006-02-14 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* w32installer.nsi: Don't use System.dll.
|
||||
|
||||
* autogen.sh (DIE): Add lost exit for --build-w32.
|
||||
|
||||
2005-10-02 Marcus Brinkmann <marcus@g10code.de>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue