pidgin/gtkdialogs.c

branch
soc.2013.gobjectification.plugins
changeset 36974
77e5418ff1ba
parent 36973
c2947ee224ca
parent 35151
2473eb4df60d
child 36976
46c2822b7c58
equal deleted inserted replaced
36973:c2947ee224ca 36974:77e5418ff1ba
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>
53 #endif 49 #endif
54 50
55 #include "gtk3compat.h" 51 #include "gtk3compat.h"
56 52
57 static GList *dialogwindows = NULL; 53 static GList *dialogwindows = NULL;
108 /* Order: Alphabetical by Last Name */ 104 /* Order: Alphabetical by Last Name */
109 static const struct developer patch_writers[] = { 105 static const struct developer patch_writers[] = {
110 {"Jakub 'haakon' Adam", NULL, NULL}, 106 {"Jakub 'haakon' Adam", NULL, NULL},
111 {"Krzysztof Klinikowski", NULL, NULL}, 107 {"Krzysztof Klinikowski", NULL, NULL},
112 {"Eion Robb", NULL, NULL}, 108 {"Eion Robb", NULL, NULL},
109 {"Ankit Vani", NULL, NULL},
113 {NULL, NULL, NULL} 110 {NULL, NULL, NULL}
114 }; 111 };
115 112
116 /* Order: Alphabetical by Last Name */ 113 /* Order: Alphabetical by Last Name */
117 static const struct developer retired_developers[] = { 114 static const struct developer retired_developers[] = {
644 #endif 641 #endif
645 642
646 #if defined(USE_INTERNAL_LIBGADU) 643 #if defined(USE_INTERNAL_LIBGADU)
647 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Internal</dd>"); 644 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Internal</dd>");
648 #elif defined(HAVE_LIBGADU) 645 #elif defined(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>External</dd>");
650 #else 647 #else
651 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Disabled</dd>"); 648 g_string_append(str, "<dt>Gadu-Gadu library (libgadu):</dt><dd>Disabled</dd>");
652 #endif 649 #endif
653 650
654 #ifdef USE_GTKSPELL 651 #ifdef USE_GTKSPELL

mercurial