diff -r dfe5c47d56a9 -r c2947ee224ca pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Sat Jan 04 23:00:37 2014 +0530 +++ b/pidgin/gtkdialogs.c Sun Jan 05 17:32:10 2014 +0530 @@ -48,6 +48,10 @@ #include #endif +#ifdef HAVE_LIBGADU +#include +#endif + #include "gtk3compat.h" static GList *dialogwindows = NULL; @@ -639,15 +643,13 @@ #endif #endif -#if defined(_WIN32) || defined(USE_INTERNAL_LIBGADU) +#if defined(USE_INTERNAL_LIBGADU) g_string_append(str, "
Gadu-Gadu library (libgadu):
Internal
"); -#else -#ifdef HAVE_LIBGADU - g_string_append(str, "
Gadu-Gadu library (libgadu):
Enabled
"); +#elif defined(HAVE_LIBGADU) + g_string_append_printf(str, "
Gadu-Gadu library (libgadu):
%s
", gg_libgadu_version()); #else g_string_append(str, "
Gadu-Gadu library (libgadu):
Disabled
"); #endif -#endif #ifdef USE_GTKSPELL g_string_append(str, "
GtkSpell:
Enabled
");