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

Wed, 23 Jul 2008 00:35:30 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Wed, 23 Jul 2008 00:35:30 +0000
changeset 23899
41f495e3b1a1
parent 23898
dd76635fdbe1
child 23900
9424d2f88d96

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

ChangeLog.win32 file | annotate | diff | comparison | revisions
pidgin/win32/nsis/pidgin-installer.nsi file | annotate | diff | comparison | revisions
--- a/ChangeLog.win32	Tue Jul 22 14:13:58 2008 +0000
+++ b/ChangeLog.win32	Wed Jul 23 00:35:30 2008 +0000
@@ -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
 
--- a/pidgin/win32/nsis/pidgin-installer.nsi	Tue Jul 22 14:13:58 2008 +0000
+++ b/pidgin/win32/nsis/pidgin-installer.nsi	Wed Jul 23 00:35:30 2008 +0000
@@ -505,11 +505,20 @@
     ; 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"

mercurial