From 061666c002f7e1750389c66a076b031410a735df Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Fri, 14 Mar 2014 13:12:34 +0100 Subject: [PATCH] configure: update SSL check for libpurple 3.x.x We have to call purple_prefs_init() before purple_plugins_probe() or the check crashes in purple_plugins_probe() while probing Gadu-Gadu plugin. The change is compatible with libpurple 2.x.x. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 345b767a..6f3b9c89 100644 --- a/configure.ac +++ b/configure.ac @@ -352,6 +352,7 @@ AS_IF([test "x$enable_purple" != xno], #include ]], [[ + purple_prefs_init(); purple_plugins_init(); purple_plugins_probe(G_MODULE_SUFFIX); purple_ssl_init(); -- 2.11.4.GIT