# HG changeset patch # User Richard Laager # Date 1178938227 0 # Node ID fdd1a73aa37e82378310bfe1525dbe2d6ee436ab # Parent ce02eb5217875e7c2a51b2aa13e18be8a9c93e44 Only include Google Talk if we have XMPP. diff -r ce02eb521787 -r fdd1a73aa37e pidgin/gtkutils.c --- a/pidgin/gtkutils.c Sat May 12 02:43:16 2007 +0000 +++ b/pidgin/gtkutils.c Sat May 12 02:50:27 2007 +0000 @@ -510,7 +510,10 @@ const char *proto_name; char buf[256]; int i, selected_index = -1; - char *gtalk_name = g_strdup(_("Google Talk")); + char *gtalk_name = NULL; + + if (purple_find_prpl("prpl-jabber")) + gtalk_name = g_strdup(_("Google Talk")); optmenu = gtk_option_menu_new(); gtk_widget_show(optmenu);