Mercurial > pidgin
comparison src/gtkdialogs.c @ 10411:151fcda069bc
[gaim-migrate @ 11660]
That whole 'how Gaim was built' stuff was missing in HEAD, so here it is.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Fri, 24 Dec 2004 13:57:49 +0000 |
| parents | 618a330c0260 |
| children | 387d06e21ae3 |
comparison
equal
deleted
inserted
replaced
| 10410:f7878475292c | 10411:151fcda069bc |
|---|---|
| 313 _(past_translators[i].name)); | 313 _(past_translators[i].name)); |
| 314 } | 314 } |
| 315 } | 315 } |
| 316 g_string_append(str, "<BR/>"); | 316 g_string_append(str, "<BR/>"); |
| 317 | 317 |
| 318 /* The following primarly intented for user/developer interaction and thus | |
| 319 ought not be translated */ | |
| 320 g_string_append(str, "<b>Gaim was compiled with the following:</b><br/>"); | |
| 321 #ifdef CONFIG_ARGS /* win32 build doesn't use configure */ | |
| 322 g_string_append(str, "Arguments to <i>./configure</i>: " CONFIG_ARGS "<br/>"); | |
| 323 #endif | |
| 324 #ifdef DEBUG | |
| 325 g_string_append(str, "Print debugging messages: Yes<br/>"); | |
| 326 #else | |
| 327 g_string_append(str, "Print debugging messages: No<br/>"); | |
| 328 #endif /* DEBUG */ | |
| 329 #ifdef ENABLE_BINRELOC | |
| 330 g_string_append(str, "Binary relocation: Enabled<br/>"); | |
| 331 #else | |
| 332 g_string_append(str, "Binary relocation: Disabled<br/>"); | |
| 333 #endif /* ENABLE_BINRELOC */ | |
| 334 #ifdef GAIM_PLUGINS | |
| 335 g_string_append(str, "Plugins: Enabled<br/>"); | |
| 336 #else | |
| 337 g_string_append(str, "Plugins: Disabled<br/>"); | |
| 338 #endif /* GAIM_PLUGINS */ | |
| 339 #ifdef HAVE_SSL | |
| 340 g_string_append(str, "SSL: Gaim was compiled with SSL support<br/>"); | |
| 341 #else | |
| 342 g_string_append(str, "SSL: Gaim was <b><i>NOT</i></b> compiled with any SSL support!<br/>"); | |
| 343 #endif | |
| 344 #ifdef HAVE_GNUTLS | |
| 345 g_string_append(str, "GNUTLS: Enabled<br/>"); | |
| 346 #else | |
| 347 g_string_append(str, "GNUTLS: Disabled<br/>"); | |
| 348 #endif | |
| 349 #ifdef HAVE_NSS | |
| 350 g_string_append(str, "NSS: Enabled<br/>"); | |
| 351 #else | |
| 352 g_string_append(str, "NSS: Disabled<br/>"); | |
| 353 #endif | |
| 354 #ifdef HAVE_TK | |
| 355 g_string_append(str, "TK: Yes<br/>"); | |
| 356 #else | |
| 357 g_string_append(str, "TK: No<br/>"); | |
| 358 #endif | |
| 359 #ifdef LIBZEPHYR_EXT | |
| 360 g_string_append(str, "External libzephyr: Yes<br/>"); | |
| 361 #else | |
| 362 g_string_append(str, "External libzephyr: No<br/>"); | |
| 363 #endif | |
| 364 #ifdef ZEPHYR_USES_KERBEROS | |
| 365 g_string_append(str, "Zephyr uses Kerberos: Yes<br/>"); | |
| 366 #else | |
| 367 g_string_append(str, "Zephyr uses Kerberos: No<br/>"); | |
| 368 #endif | |
| 369 #ifdef USE_AO | |
| 370 g_string_append(str, "AO: Yes<br/>"); | |
| 371 #else | |
| 372 g_string_append(str, "AO: No<br/>"); | |
| 373 #endif | |
| 374 #ifdef USE_NAS_AUDIO | |
| 375 g_string_append(str, "NAS Audio: Yes<br/>"); | |
| 376 #else | |
| 377 g_string_append(str, "NAS Audio: No<br/>"); | |
| 378 #endif | |
| 379 #ifdef USE_GTKSPELL | |
| 380 g_string_append(str, "GtkSpell: Enabled<br/>"); | |
| 381 #else | |
| 382 g_string_append(str, "GtkSpell: Disabled<br/>"); | |
| 383 #endif | |
| 384 #ifdef USE_SCREENSAVER | |
| 385 g_string_append(str, "XScreenSaver support: Yes<br/>"); | |
| 386 #else | |
| 387 g_string_append(str, "XScreenSaver support: No<br/>"); | |
| 388 #endif | |
| 389 #ifdef USE_SM | |
| 390 g_string_append(str, "X SM support: Yes<br/>"); | |
| 391 #else | |
| 392 g_string_append(str, "X SM support: No<br/>"); | |
| 393 #endif | |
| 394 | |
| 395 /* End of not to be translated section */ | |
| 396 | |
| 318 gtk_imhtml_append_text(GTK_IMHTML(text), str->str, GTK_IMHTML_NO_SCROLL); | 397 gtk_imhtml_append_text(GTK_IMHTML(text), str->str, GTK_IMHTML_NO_SCROLL); |
| 319 g_string_free(str, TRUE); | 398 g_string_free(str, TRUE); |
| 320 | 399 |
| 321 gtk_text_buffer_get_start_iter(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter); | 400 gtk_text_buffer_get_start_iter(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter); |
| 322 gtk_text_buffer_place_cursor(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter); | 401 gtk_text_buffer_place_cursor(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter); |
