pidgin: 812f25c3: Don't install the GSSAPI SASL plugin on ...

datallah at pidgin.im datallah at pidgin.im
Tue Jul 22 20:40:40 EDT 2008


-----------------------------------------------------------------
Revision: 812f25c342b8238ecd22b32c9a3396db3efcb329
Ancestor: 2a826fe4f31060ded309b2d01b02df16038271e9
Author: datallah at pidgin.im
Date: 2008-07-23T00:35:30
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/812f25c342b8238ecd22b32c9a3396db3efcb329

Modified files:
        ChangeLog.win32 pidgin/win32/nsis/pidgin-installer.nsi

ChangeLog: 

Don't install the GSSAPI SASL plugin on NT4 as it isn't compatible. Fixes #6399.

-------------- next part --------------
============================================================
--- ChangeLog.win32	a9ffdd41335f7faaf349db4b9bb216bfd06271df
+++ ChangeLog.win32	9e813aec6472cc181150f70c954ae1b32bf44ce3
@@ -1,3 +1,6 @@
+version 2.5.0 (??/??/2008):
+	* Don't install the GSSAPI SASL plugin on NT4 to avoid an error popup.
+
 version 2.4.3 (07/01/2008):
 	* No changes
 
============================================================
--- pidgin/win32/nsis/pidgin-installer.nsi	1f591f8a45fcdffea0cff437df84135b35a0a334
+++ pidgin/win32/nsis/pidgin-installer.nsi	dd4ddd9940d5253cef2f4557cdbe413f44559700
@@ -505,11 +505,20 @@ Section $(PIDGIN_SECTION_TITLE) SecPidgi
     ; If this is under NT4, delete the SILC support stuff
     ; there is a bug that will prevent any account from connecting
     ; See https://lists.silcnet.org/pipermail/silc-devel/2005-January/001588.html
+    ; Also, remove the GSSAPI SASL plugin and associated files as they aren't
+    ; compatible with NT4.
     ${If} ${IsNT}
     ${AndIf} ${IsWinNT4}
+      ;SILC
       Delete "$INSTDIR\plugins\libsilc.dll"
       Delete "$INSTDIR\libsilcclient-1-1-2.dll"
       Delete "$INSTDIR\libsilc-1-1-2.dll"
+      ;GSSAPI
+      Delete "$INSTDIR\sasl2\saslGSSAPI.dll"
+      Delete "$INSTDIR\gssapi32.dll"
+      Delete "$INSTDIR\k5sprt32.dll"
+      Delete "$INSTDIR\krb5_32.dll"
+      Delete "$INSTDIR\comerr32.dll"
     ${EndIf}
 
     SetOutPath "$INSTDIR"


More information about the Commits mailing list