# HG changeset patch # User Mike Ruprecht # Date 1216244124 0 # Node ID 8c4bc05513c7b5825ccba1541cee4e8a5380613e # Parent a1a1f44cdeccc29d6eeaee6a1893ea878ebe08c2 Added whether voice and video support has been enabled in Pidgin's About dialog. diff -r a1a1f44cdecc -r 8c4bc05513c7 pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Fri Jul 11 02:10:04 2008 +0000 +++ b/pidgin/gtkdialogs.c Wed Jul 16 21:35:24 2008 +0000 @@ -670,6 +670,12 @@ g_string_append(str, " Tk: Disabled
"); } +#ifdef USE_VV + g_string_append(str, " Voice and Video: Enabled
"); +#else + g_string_append(str, " Voice and Video: Disabled
"); +#endif + #ifndef _WIN32 #ifdef USE_SM g_string_append(str, " X Session Management: Enabled
");