# HG changeset patch # User Mark Doliner # Date 1186470236 0 # Node ID f8bea3e688b028615d94da578b012f74274614bf # Parent 952c01c26d6720bc91ce43b7d15890c3a0e16814 Patch from Gabriel Schulhof to only call g_set_application_name() if using glib 2.2 or higher. Their documentation fails to state that it was added in 2.2. *boggle* diff -r 952c01c26d67 -r f8bea3e688b0 pidgin/gtkmain.c --- a/pidgin/gtkmain.c Tue Aug 07 06:45:23 2007 +0000 +++ b/pidgin/gtkmain.c Tue Aug 07 07:03:56 2007 +0000 @@ -695,7 +695,9 @@ return 1; } +#if GLIB_CHECK_VERSION(2,2,0) g_set_application_name(_("Pidgin")); +#endif /* glib-2.0 >= 2.2.0 */ #ifdef _WIN32 winpidgin_init(hint);