# HG changeset patch # User Stu Tomlinson # Date 1103896669 0 # Node ID 151fcda069bce040591675da4e0a843e9a62a736 # Parent f7878475292c965c94a8d1e94d33c0d7666fc5f0 [gaim-migrate @ 11660] That whole 'how Gaim was built' stuff was missing in HEAD, so here it is. committer: Tailor Script diff -r f7878475292c -r 151fcda069bc src/gtkdialogs.c --- a/src/gtkdialogs.c Fri Dec 24 03:05:46 2004 +0000 +++ b/src/gtkdialogs.c Fri Dec 24 13:57:49 2004 +0000 @@ -315,6 +315,85 @@ } g_string_append(str, "
"); + /* The following primarly intented for user/developer interaction and thus + ought not be translated */ + g_string_append(str, "Gaim was compiled with the following:
"); +#ifdef CONFIG_ARGS /* win32 build doesn't use configure */ + g_string_append(str, "Arguments to ./configure: " CONFIG_ARGS "
"); +#endif +#ifdef DEBUG + g_string_append(str, "Print debugging messages: Yes
"); +#else + g_string_append(str, "Print debugging messages: No
"); +#endif /* DEBUG */ +#ifdef ENABLE_BINRELOC + g_string_append(str, "Binary relocation: Enabled
"); +#else + g_string_append(str, "Binary relocation: Disabled
"); +#endif /* ENABLE_BINRELOC */ +#ifdef GAIM_PLUGINS + g_string_append(str, "Plugins: Enabled
"); +#else + g_string_append(str, "Plugins: Disabled
"); +#endif /* GAIM_PLUGINS */ +#ifdef HAVE_SSL + g_string_append(str, "SSL: Gaim was compiled with SSL support
"); +#else + g_string_append(str, "SSL: Gaim was NOT compiled with any SSL support!
"); +#endif +#ifdef HAVE_GNUTLS + g_string_append(str, "GNUTLS: Enabled
"); +#else + g_string_append(str, "GNUTLS: Disabled
"); +#endif +#ifdef HAVE_NSS + g_string_append(str, "NSS: Enabled
"); +#else + g_string_append(str, "NSS: Disabled
"); +#endif +#ifdef HAVE_TK + g_string_append(str, "TK: Yes
"); +#else + g_string_append(str, "TK: No
"); +#endif +#ifdef LIBZEPHYR_EXT + g_string_append(str, "External libzephyr: Yes
"); +#else + g_string_append(str, "External libzephyr: No
"); +#endif +#ifdef ZEPHYR_USES_KERBEROS + g_string_append(str, "Zephyr uses Kerberos: Yes
"); +#else + g_string_append(str, "Zephyr uses Kerberos: No
"); +#endif +#ifdef USE_AO + g_string_append(str, "AO: Yes
"); +#else + g_string_append(str, "AO: No
"); +#endif +#ifdef USE_NAS_AUDIO + g_string_append(str, "NAS Audio: Yes
"); +#else + g_string_append(str, "NAS Audio: No
"); +#endif +#ifdef USE_GTKSPELL + g_string_append(str, "GtkSpell: Enabled
"); +#else + g_string_append(str, "GtkSpell: Disabled
"); +#endif +#ifdef USE_SCREENSAVER + g_string_append(str, "XScreenSaver support: Yes
"); +#else + g_string_append(str, "XScreenSaver support: No
"); +#endif +#ifdef USE_SM + g_string_append(str, "X SM support: Yes
"); +#else + g_string_append(str, "X SM support: No
"); +#endif + + /* End of not to be translated section */ + gtk_imhtml_append_text(GTK_IMHTML(text), str->str, GTK_IMHTML_NO_SCROLL); g_string_free(str, TRUE);