# HG changeset patch # User Luke Schierer # Date 1192943277 0 # Node ID 9401a46da95884f602d55d497c3f0e217450172d # Parent 4293673c1f3784942616a53ecd19b8ebc61bc933 applied changes from d6da6a7a5ad01f170f0fd78424183f73200dc78c through ca4c40c7119d3222ca33d10a8f578782de29ad28 applied changes from ca4c40c7119d3222ca33d10a8f578782de29ad28 through 4341e599d112f3be408cb2a92fa459cc7c25b29c applied changes from 1e8c3f6ec50a7e8ea15b850e7e2974e273c1cb6c through fe00ca8a057e772d955ff56c7b6557e221d3e514 applied changes from 35e02ab2f9968d9b567123e1ba43552597218596 through aed8cc0e2684056309c481d621fdafcd366b7d24 diff -r 4293673c1f37 -r 9401a46da958 libpurple/win32/global.mak --- a/libpurple/win32/global.mak Sun Oct 21 05:05:38 2007 +0000 +++ b/libpurple/win32/global.mak Sun Oct 21 05:07:57 2007 +0000 @@ -15,7 +15,7 @@ GTK_TOP ?= $(WIN32_DEV_TOP)/gtk_2_0 GTK_BIN ?= $(GTK_TOP)/bin BONJOUR_TOP ?= $(WIN32_DEV_TOP)/Bonjour_SDK -LIBXML2_TOP ?= $(WIN32_DEV_TOP)/libxml2 +LIBXML2_TOP ?= $(WIN32_DEV_TOP)/libxml2-2.6.30 MEANWHILE_TOP ?= $(WIN32_DEV_TOP)/meanwhile-1.0.2 NSPR_TOP ?= $(WIN32_DEV_TOP)/nspr-4.6.4 NSS_TOP ?= $(WIN32_DEV_TOP)/nss-3.11.4 diff -r 4293673c1f37 -r 9401a46da958 pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Sun Oct 21 05:05:38 2007 +0000 +++ b/pidgin/gtkdialogs.c Sun Oct 21 05:07:57 2007 +0000 @@ -645,11 +645,10 @@ g_string_append(str, " Network Security Services (NSS): Disabled
"); #endif -#ifdef HAVE_PERL +if (purple_plugins_find_with_id("core-perl") != NULL) g_string_append(str, " Perl: Enabled
"); -#else +else g_string_append(str, " Perl: Disabled
"); -#endif #ifndef _WIN32 #ifdef HAVE_STARTUP_NOTIFICATION @@ -659,17 +658,17 @@ #endif #endif -#ifdef HAVE_TCL +if (purple_plugins_find_with_id("core-tcl") != NULL) { g_string_append(str, " Tcl: Enabled
"); -#else - g_string_append(str, " Tcl: Disabled
"); -#endif - #ifdef HAVE_TK g_string_append(str, " Tk: Enabled
"); #else g_string_append(str, " Tk: Disabled
"); #endif +} else { + g_string_append(str, " Tcl: Disabled
"); + g_string_append(str, " Tk: Disabled
"); +} #ifndef _WIN32 #ifdef USE_SM diff -r 4293673c1f37 -r 9401a46da958 pidgin/gtkimhtml.c --- a/pidgin/gtkimhtml.c Sun Oct 21 05:05:38 2007 +0000 +++ b/pidgin/gtkimhtml.c Sun Oct 21 05:07:57 2007 +0000 @@ -553,6 +553,7 @@ if (GTK_IMHTML(imhtml)->tip) { if ((tip == GTK_IMHTML(imhtml)->tip)) { + g_slist_free(tags); return FALSE; } /* We've left the cell. Remove the timeout and create a new one below */ diff -r 4293673c1f37 -r 9401a46da958 pidgin/win32/winpidgin.c --- a/pidgin/win32/winpidgin.c Sun Oct 21 05:05:38 2007 +0000 +++ b/pidgin/win32/winpidgin.c Sun Oct 21 05:07:57 2007 +0000 @@ -452,6 +452,8 @@ if (GetLastError() == ERROR_ALREADY_EXISTS) { HWND msg_win; + printf("An instance of Pidgin is already running.\n"); + if((msg_win = FindWindow(TEXT("WinpidginMsgWinCls"), NULL))) if(SendMessage(msg_win, PIDGIN_WM_FOCUS_REQUEST, (WPARAM) NULL, (LPARAM) NULL)) return FALSE;