Select the types of activity you want to include in your feed.
pdmef+fix+sslinterface. Triggered by a warning when compiling
with POP and GNUTLS, I noticed the SSL interfaces for OpenSSL
and GNUTLS internally are different which doesn't make sense.
···587587 AC_CHECK_FUNCS(RAND_status RAND_egd)
588588589589 AC_DEFINE(USE_SSL,1,[ Define if you want support for SSL. ])
590590+ AC_DEFINE(USE_SSL_OPENSSL,1,[ Define if you want support for SSL via OpenSSL. ])
590591 LIBS="$saved_LIBS"
591592 MUTTLIBS="$MUTTLIBS -lssl -lcrypto"
592593 MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_ssl.o"
···597598598599AC_ARG_WITH([gnutls], AC_HELP_STRING([--with-gnutls[=PFX]], [Enable SSL support using gnutls]),
599600 [gnutls_prefix="$withval"], [gnutls_prefix="no"])
600600-if test "$gnutls_prefix" != "no"
601601+if test "$gnutls_prefix" != "no" -a x"$need_ssl" != xyes
601602then
602603 if test "$need_socket" != "yes"
603604 then
···607608 [dnl GNUTLS found
608609 CPPFLAGS="$CPPFLAGS $LIBGNUTLS_CFLAGS"
609610 MUTTLIBS="$MUTTLIBS $LIBGNUTLS_LIBS"
610610- AC_DEFINE(USE_GNUTLS, 1, [Define if you want support for SSL via the gnutls library.])
611611+612612+ AC_DEFINE(USE_SSL,1,[ Define if you want support for SSL. ])
613613+ AC_DEFINE(USE_SSL_GNUTLS,1,[ Define if you want support for SSL via GNUTLS. ])
611614612615 MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS mutt_ssl_gnutls.o"
613616 need_ssl=yes],