pidgin/pidgin

Enable cyrus-sasl support by default
release-2.x.y
2020-07-13, Gary Kramlich
2e4b62844623
Parents 9a1dee79e02b
Children a039b758d727
Enable cyrus-sasl support by default

Testing Done:
Built and followed the sasl instructions on freenode's site https://freenode.net/kb/answer/pidgin and connected and identified me to nickserv just fine. Also I checked Debian and they're manually enabling this so if there was an issue users were seeing we would have heard about it by now as this line was last changed in 2013.

Reviewed at https://reviews.imfreedom.org/r/26/
  • +1 -1
    configure.ac
  • --- a/configure.ac Sun Jul 12 15:42:46 2020 -0500
    +++ b/configure.ac Mon Jul 13 03:34:57 2020 -0500
    @@ -2332,7 +2332,7 @@
    dnl AC_CHECK_SIZEOF(short)
    AC_CHECK_FUNCS(snprintf connect)
    AC_SUBST(SASL_LIBS)
    -AC_ARG_ENABLE(cyrus-sasl, AC_HELP_STRING([--enable-cyrus-sasl], [enable Cyrus SASL support for xmpp/irc]), enable_cyrus_sasl=$enableval, enable_cyrus_sasl=no)
    +AC_ARG_ENABLE(cyrus-sasl, AC_HELP_STRING([--enable-cyrus-sasl], [enable Cyrus SASL support for xmpp/irc]), enable_cyrus_sasl=$enableval, enable_cyrus_sasl=yes)
    if test "x$enable_cyrus_sasl" = "xyes" ; then
    AC_CHECK_LIB(sasl2, sasl_client_init, [
    AM_CONDITIONAL(USE_CYRUS_SASL, true)