pidgin/gtkdialogs.c

changeset 35140
34ff4ee99c48
parent 35079
4fb1914491f1
child 35147
03d1fa876658
child 36973
c2947ee224ca
equal deleted inserted replaced
35139:c30787ce6256 35140:34ff4ee99c48
44 #include "gtkwebview.h" 44 #include "gtkwebview.h"
45 #include "pidginstock.h" 45 #include "pidginstock.h"
46 46
47 #ifdef USE_GSTREAMER 47 #ifdef USE_GSTREAMER
48 #include <gst/gst.h> 48 #include <gst/gst.h>
49 #endif
50
51 #ifdef HAVE_LIBGADU
52 #include <libgadu.h>
49 #endif 53 #endif
50 54
51 #include "gtk3compat.h" 55 #include "gtk3compat.h"
52 56
53 static GList *dialogwindows = NULL; 57 static GList *dialogwindows = NULL;
637 #else 641 #else
638 g_string_append_printf(str, "<dt>Evolution Addressbook:</dt><dd>Disabled</dd>"); 642 g_string_append_printf(str, "<dt>Evolution Addressbook:</dt><dd>Disabled</dd>");
639 #endif 643 #endif
640 #endif 644 #endif
641 645
642 #if defined(_WIN32) || defined(USE_INTERNAL_LIBGADU) 646 #if defined(USE_INTERNAL_LIBGADU)
643 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Internal</dd>"); 647 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Internal</dd>");
644 #else 648 #elif defined(HAVE_LIBGADU)
645 #ifdef HAVE_LIBGADU 649 g_string_append_printf(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>%s</dd>", gg_libgadu_version());
646 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Enabled</dd>");
647 #else 650 #else
648 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Disabled</dd>"); 651 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Disabled</dd>");
649 #endif
650 #endif 652 #endif
651 653
652 #ifdef USE_GTKSPELL 654 #ifdef USE_GTKSPELL
653 g_string_append(str, "<dt>GtkSpell:</dt><dd>Enabled</dd>"); 655 g_string_append(str, "<dt>GtkSpell:</dt><dd>Enabled</dd>");
654 #else 656 #else

mercurial