comparison pidgin/win32/nsis/pidgin-installer.nsi @ 23632:1452c89e7f05

Don't install the GSSAPI SASL plugin on NT4 as it isn't compatible. Fixes #6399.
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 23 Jul 2008 00:35:30 +0000
parents 6b5b40a31c02
children 3ec514b98728
comparison
equal deleted inserted replaced
23631:ad7f01935fa4 23632:1452c89e7f05
503 perl_done: 503 perl_done:
504 504
505 ; If this is under NT4, delete the SILC support stuff 505 ; If this is under NT4, delete the SILC support stuff
506 ; there is a bug that will prevent any account from connecting 506 ; there is a bug that will prevent any account from connecting
507 ; See https://lists.silcnet.org/pipermail/silc-devel/2005-January/001588.html 507 ; See https://lists.silcnet.org/pipermail/silc-devel/2005-January/001588.html
508 ; Also, remove the GSSAPI SASL plugin and associated files as they aren't
509 ; compatible with NT4.
508 ${If} ${IsNT} 510 ${If} ${IsNT}
509 ${AndIf} ${IsWinNT4} 511 ${AndIf} ${IsWinNT4}
512 ;SILC
510 Delete "$INSTDIR\plugins\libsilc.dll" 513 Delete "$INSTDIR\plugins\libsilc.dll"
511 Delete "$INSTDIR\libsilcclient-1-1-2.dll" 514 Delete "$INSTDIR\libsilcclient-1-1-2.dll"
512 Delete "$INSTDIR\libsilc-1-1-2.dll" 515 Delete "$INSTDIR\libsilc-1-1-2.dll"
516 ;GSSAPI
517 Delete "$INSTDIR\sasl2\saslGSSAPI.dll"
518 Delete "$INSTDIR\gssapi32.dll"
519 Delete "$INSTDIR\k5sprt32.dll"
520 Delete "$INSTDIR\krb5_32.dll"
521 Delete "$INSTDIR\comerr32.dll"
513 ${EndIf} 522 ${EndIf}
514 523
515 SetOutPath "$INSTDIR" 524 SetOutPath "$INSTDIR"
516 525
517 ; If we don't have install rights we're done 526 ; If we don't have install rights we're done