# HG changeset patch # User Tomasz Wasilczyk # Date 1415133458 -3600 # Node ID ca3ea8900dc927b6788b88614c004c8ef699c300 # Parent c05804b2619af640e3d665af9f4519c0444f1cea Don't use GnuTLS, if it's disabled. Fixes #16431 diff -r c05804b2619a -r ca3ea8900dc9 ChangeLog --- a/ChangeLog Mon Nov 03 11:25:23 2014 -0600 +++ b/ChangeLog Tue Nov 04 21:37:38 2014 +0100 @@ -1,6 +1,10 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul version 2.10.11 (?/?/?): + Gadu-Gadu: + * Fix a bug that prevented plugin to load when compiled without GnuTLS. + (mancha) (#16431) + General: * Fix handling of Self-Signed SSL/TLS Certificates when using the NSS plugin (#16412) diff -r c05804b2619a -r ca3ea8900dc9 libpurple/protocols/gg/lib/config.h --- a/libpurple/protocols/gg/lib/config.h Mon Nov 03 11:25:23 2014 -0600 +++ b/libpurple/protocols/gg/lib/config.h Tue Nov 04 21:37:38 2014 +0100 @@ -49,7 +49,7 @@ /* Defined if libgadu was compiled and linked with GnuTLS support. */ #undef GG_CONFIG_HAVE_GNUTLS -#ifdef HAVE_GNUTLS_2_10 +#if defined(HAVE_GNUTLS) && defined(HAVE_GNUTLS_2_10) # define GG_CONFIG_HAVE_GNUTLS #endif