changeset 28325:f7d7cf32a715

Note whether IDN support is enabled/disabled in the Help->About dialog.
author Paul Aurich <paul@darkrain42.org>
date Sun, 04 Oct 2009 18:01:35 +0000
parents 63e39358eb24
children 5c61429ea529 43200ff042ad c095f1795112
files pidgin/gtkdialogs.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkdialogs.c	Sun Oct 04 18:01:17 2009 +0000
+++ b/pidgin/gtkdialogs.c	Sun Oct 04 18:01:35 2009 +0000
@@ -658,6 +658,12 @@
 	g_string_append(str, "    <b>Tk:</b> Disabled<br/>");
 }
 
+#ifdef USE_IDN
+	g_string_append(str, "    <b>UTF-8 DNS (IDN):</b> Enabled<br/>");
+#else
+	g_string_append(str, "    <b>UTF-8 DNS (IDN):</b> Disabled<br/>");
+#endif
+
 #ifdef USE_VV
 	g_string_append(str, "    <b>Voice and Video:</b> Enabled<br/>");
 #else