From bb958766a06cdb99c3b286775e0514b179277a41 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Tue, 5 Oct 2010 05:55:30 +0200 Subject: some patch cleanup --- xchat-wdk.patch | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 2420d0b3..164e278e 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -257,7 +257,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/com } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/common/dcc.c --- xchat-wdk.orig/src/common/dcc.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/dcc.c 2010-10-05 03:55:27 +0200 ++++ xchat-wdk/src/common/dcc.c 2010-10-05 05:50:51 +0200 @@ -31,7 +31,6 @@ #include #include @@ -266,15 +266,17 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/comm #include #define WANTSOCKET -@@ -1984,7 +1983,7 @@ +@@ -1983,9 +1982,7 @@ + return TRUE; /* now handle case-insensitive Filesystems: HFS+, FAT */ - #ifdef WIN32 +-#ifdef WIN32 -#warning no win32 implementation - behaviour may be unreliable -+/* warning no win32 implementation - behaviour may be unreliable */ - #else +-#else ++#ifndef WIN32 /* this fstat() shouldn't really fail */ if ((dcc->fp == -1 ? stat (dcc->destfile_fs, &st_a) : fstat (dcc->fp, &st_a)) == -1) + return FALSE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/common/ignore.c --- xchat-wdk.orig/src/common/ignore.c 2006-04-15 09:00:39 +0200 +++ xchat-wdk/src/common/ignore.c 2010-10-05 03:55:27 +0200 @@ -401,7 +403,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/sr #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/common/server.c --- xchat-wdk.orig/src/common/server.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/server.c 2010-10-05 03:55:27 +0200 ++++ xchat-wdk/src/common/server.c 2010-10-05 05:51:52 +0200 @@ -26,7 +26,6 @@ #include #include @@ -410,16 +412,20 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/c #include #include -@@ -1390,7 +1389,7 @@ +@@ -1388,12 +1387,7 @@ + static int + http_read_line (int print_fd, int sok, char *buf, int len) { - #ifdef WIN32 - /* make sure waitline() uses recv() or it'll fail on win32 */ +-#ifdef WIN32 +- /* make sure waitline() uses recv() or it'll fail on win32 */ - len = waitline (sok, buf, len, FALSE); -+ len = waitline (sok, buf, len, TRUE); - #else +-#else len = waitline (sok, buf, len, TRUE); - #endif -@@ -1738,7 +1737,7 @@ +-#endif + if (len >= 1) + { + /* print the message out (send it to the parent process) */ +@@ -1738,7 +1732,7 @@ } #endif serv->childpid = pid; -- cgit 1.4.1 From ed217600232f3cf93efe1d93da0eb70068195831 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Tue, 5 Oct 2010 06:05:38 +0200 Subject: only center network close dialog if using tabs on bottom --- xchat-wdk.patch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 164e278e..001b07fe 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -1187,7 +1187,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/fe-gtk/maingui.c --- xchat-wdk.orig/src/fe-gtk/maingui.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-05 03:55:28 +0200 ++++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-05 06:00:24 +0200 @@ -214,60 +214,10 @@ away_list = mg_attr_list_create (&colors[COL_AWAY], FALSE); } @@ -1274,13 +1274,13 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/ g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (mg_tab_close_cb), sess); - gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); -+ if (prefs.tab_layout) ++ if (!prefs.tab_layout && prefs.tab_pos == 6) + { -+ gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); ++ gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER_ON_PARENT); + } + else + { -+ gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER_ON_PARENT); ++ gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); + } gtk_widget_show (dialog); } -- cgit 1.4.1 From 60fb3aa16d75be106c80d58df50fa0a4a2a3d5e8 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Wed, 6 Oct 2010 00:10:19 +0200 Subject: update timestamps --- xchat-wdk.patch | 188 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 94 insertions(+), 94 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 001b07fe..1d17f4b8 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -1,6 +1,6 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/perl/perl.c xchat-wdk/plugins/perl/perl.c ---- xchat-wdk.orig/plugins/perl/perl.c 2010-08-26 04:18:04 +0200 -+++ xchat-wdk/plugins/perl/perl.c 2010-10-05 03:55:26 +0200 +--- xchat-wdk.orig/plugins/perl/perl.c 2010-08-26 02:18:04 +0000 ++++ xchat-wdk/plugins/perl/perl.c 2010-10-05 22:08:09 +0000 @@ -22,12 +22,15 @@ #include #include @@ -40,8 +40,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/perl/perl.c xchat-wdk/plugi } } diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/python/python.c xchat-wdk/plugins/python/python.c ---- xchat-wdk.orig/plugins/python/python.c 2010-05-16 06:31:54 +0200 -+++ xchat-wdk/plugins/python/python.c 2010-10-05 03:55:26 +0200 +--- xchat-wdk.orig/plugins/python/python.c 2010-05-16 04:31:54 +0000 ++++ xchat-wdk/plugins/python/python.c 2010-10-05 22:08:09 +0000 @@ -53,10 +53,10 @@ #include @@ -102,8 +102,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/python/python.c xchat-wdk/p "__main__"); if (m == NULL) { diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/tcl/tclplugin.c xchat-wdk/plugins/tcl/tclplugin.c ---- xchat-wdk.orig/plugins/tcl/tclplugin.c 2010-03-21 01:49:42 +0100 -+++ xchat-wdk/plugins/tcl/tclplugin.c 2010-10-05 03:55:26 +0200 +--- xchat-wdk.orig/plugins/tcl/tclplugin.c 2010-03-21 00:49:42 +0000 ++++ xchat-wdk/plugins/tcl/tclplugin.c 2010-10-05 22:08:09 +0000 @@ -32,8 +32,6 @@ #include #define bzero(mem, sz) memset((mem), 0, (sz)) @@ -123,8 +123,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/tcl/tclplugin.c xchat-wdk/p } FreeLibrary(lib); diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugins/xdcc/xdcc.c ---- xchat-wdk.orig/plugins/xdcc/xdcc.c 2002-12-26 04:35:09 +0100 -+++ xchat-wdk/plugins/xdcc/xdcc.c 2010-10-05 03:55:26 +0200 +--- xchat-wdk.orig/plugins/xdcc/xdcc.c 2002-12-26 03:35:09 +0000 ++++ xchat-wdk/plugins/xdcc/xdcc.c 2010-10-05 22:08:09 +0000 @@ -2,11 +2,11 @@ #include @@ -139,8 +139,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugi static xchat_plugin *ph; /* plugin handle */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src/common/cfgfiles.c ---- xchat-wdk.orig/src/common/cfgfiles.c 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/common/cfgfiles.c 2010-10-05 04:55:22 +0200 +--- xchat-wdk.orig/src/common/cfgfiles.c 2010-08-07 07:14:45 +0000 ++++ xchat-wdk/src/common/cfgfiles.c 2010-10-05 22:08:09 +0000 @@ -17,7 +17,6 @@ */ @@ -225,8 +225,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src prefs.dccstalltimeout = 60; prefs.notify_timeout = 15; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/common/chanopt.c ---- xchat-wdk.orig/src/common/chanopt.c 2008-06-15 06:40:29 +0200 -+++ xchat-wdk/src/common/chanopt.c 2010-10-05 03:55:26 +0200 +--- xchat-wdk.orig/src/common/chanopt.c 2008-06-15 04:40:29 +0000 ++++ xchat-wdk/src/common/chanopt.c 2010-10-05 22:08:09 +0000 @@ -3,7 +3,6 @@ #include #include @@ -236,8 +236,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/ #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/common/ctcp.c ---- xchat-wdk.orig/src/common/ctcp.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/ctcp.c 2010-10-05 03:55:26 +0200 +--- xchat-wdk.orig/src/common/ctcp.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/ctcp.c 2010-10-05 22:08:10 +0000 @@ -18,7 +18,6 @@ #include @@ -256,8 +256,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/com serv->p_nctcp (serv, nick, outbuf); } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/common/dcc.c ---- xchat-wdk.orig/src/common/dcc.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/dcc.c 2010-10-05 05:50:51 +0200 +--- xchat-wdk.orig/src/common/dcc.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/dcc.c 2010-10-05 22:08:10 +0000 @@ -31,7 +31,6 @@ #include #include @@ -278,8 +278,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/comm if ((dcc->fp == -1 ? stat (dcc->destfile_fs, &st_a) : fstat (dcc->fp, &st_a)) == -1) return FALSE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/common/ignore.c ---- xchat-wdk.orig/src/common/ignore.c 2006-04-15 09:00:39 +0200 -+++ xchat-wdk/src/common/ignore.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/ignore.c 2006-04-15 07:00:39 +0000 ++++ xchat-wdk/src/common/ignore.c 2010-10-05 22:08:10 +0000 @@ -19,7 +19,6 @@ #include #include @@ -289,8 +289,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/c #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inbound.c xchat-wdk/src/common/inbound.c ---- xchat-wdk.orig/src/common/inbound.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/inbound.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/inbound.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/inbound.c 2010-10-05 22:08:10 +0000 @@ -21,7 +21,6 @@ #include #include @@ -300,8 +300,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inbound.c xchat-wdk/src/ #define WANTARPA diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inet.h xchat-wdk/src/common/inet.h ---- xchat-wdk.orig/src/common/inet.h 2005-09-03 12:57:48 +0200 -+++ xchat-wdk/src/common/inet.h 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/inet.h 2005-09-03 10:57:48 +0000 ++++ xchat-wdk/src/common/inet.h 2010-10-05 22:08:10 +0000 @@ -24,9 +24,8 @@ #ifdef USE_IPV6 #include @@ -314,8 +314,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inet.h xchat-wdk/src/com #define set_blocking(sok) { \ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/msproxy.c xchat-wdk/src/common/msproxy.c ---- xchat-wdk.orig/src/common/msproxy.c 2006-04-16 17:32:17 +0200 -+++ xchat-wdk/src/common/msproxy.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/msproxy.c 2006-04-16 15:32:17 +0000 ++++ xchat-wdk/src/common/msproxy.c 2010-10-05 22:08:10 +0000 @@ -26,7 +26,6 @@ #include #include @@ -325,8 +325,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/msproxy.c xchat-wdk/src/ #define WANTSOCKET diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/network.c xchat-wdk/src/common/network.c ---- xchat-wdk.orig/src/common/network.c 2006-04-16 10:11:26 +0200 -+++ xchat-wdk/src/common/network.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/network.c 2006-04-16 08:11:26 +0000 ++++ xchat-wdk/src/common/network.c 2010-10-05 22:08:10 +0000 @@ -21,7 +21,6 @@ #include #include @@ -336,8 +336,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/network.c xchat-wdk/src/ #include "../../config.h" /* grab USE_IPV6 and LOOKUPD defines */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/notify.c xchat-wdk/src/common/notify.c ---- xchat-wdk.orig/src/common/notify.c 2008-06-08 09:58:58 +0200 -+++ xchat-wdk/src/common/notify.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/notify.c 2008-06-08 07:58:58 +0000 ++++ xchat-wdk/src/common/notify.c 2010-10-05 22:08:10 +0000 @@ -22,7 +22,6 @@ #include #include @@ -347,8 +347,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/notify.c xchat-wdk/src/c #include "xchat.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/outbound.c xchat-wdk/src/common/outbound.c ---- xchat-wdk.orig/src/common/outbound.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/outbound.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/outbound.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/outbound.c 2010-10-05 22:08:10 +0000 @@ -32,7 +32,6 @@ #include #endif @@ -358,8 +358,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/outbound.c xchat-wdk/src #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin-timer.c xchat-wdk/src/common/plugin-timer.c ---- xchat-wdk.orig/src/common/plugin-timer.c 2005-02-02 11:03:51 +0100 -+++ xchat-wdk/src/common/plugin-timer.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/plugin-timer.c 2005-02-02 10:03:51 +0000 ++++ xchat-wdk/src/common/plugin-timer.c 2010-10-05 22:08:10 +0000 @@ -1,7 +1,7 @@ #include #include @@ -370,8 +370,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin-timer.c xchat-wdk #ifdef WIN32 #define strcasecmp stricmp diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin.c xchat-wdk/src/common/plugin.c ---- xchat-wdk.orig/src/common/plugin.c 2010-08-14 03:46:21 +0200 -+++ xchat-wdk/src/common/plugin.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/plugin.c 2010-08-14 01:46:21 +0000 ++++ xchat-wdk/src/common/plugin.c 2010-10-05 22:08:10 +0000 @@ -34,7 +34,7 @@ #include "text.h" #define PLUGIN_C @@ -391,8 +391,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin.c xchat-wdk/src/c static const char * const channels_fields[] = { diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/src/common/proto-irc.c ---- xchat-wdk.orig/src/common/proto-irc.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/proto-irc.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/proto-irc.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/proto-irc.c 2010-10-05 22:08:10 +0000 @@ -18,7 +18,6 @@ /* IRC RFC1459(+commonly used extensions) protocol implementation */ @@ -402,8 +402,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/sr #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/common/server.c ---- xchat-wdk.orig/src/common/server.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/server.c 2010-10-05 05:51:52 +0200 +--- xchat-wdk.orig/src/common/server.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/server.c 2010-10-05 22:08:10 +0000 @@ -26,7 +26,6 @@ #include #include @@ -435,8 +435,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/c } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/servlist.c xchat-wdk/src/common/servlist.c ---- xchat-wdk.orig/src/common/servlist.c 2010-05-16 09:43:49 +0200 -+++ xchat-wdk/src/common/servlist.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/servlist.c 2010-05-16 07:43:49 +0000 ++++ xchat-wdk/src/common/servlist.c 2010-10-05 22:08:10 +0000 @@ -21,7 +21,6 @@ #include #include @@ -446,8 +446,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/servlist.c xchat-wdk/src #include "xchat.h" #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/common/ssl.c ---- xchat-wdk.orig/src/common/ssl.c 2007-03-28 10:35:06 +0200 -+++ xchat-wdk/src/common/ssl.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/ssl.c 2007-03-28 08:35:06 +0000 ++++ xchat-wdk/src/common/ssl.c 2010-10-05 22:08:10 +0000 @@ -17,12 +17,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -463,8 +463,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/comm #ifndef HAVE_SNPRINTF diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/common/text.c ---- xchat-wdk.orig/src/common/text.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/text.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/text.c 2010-05-30 02:28:04 +0000 ++++ xchat-wdk/src/common/text.c 2010-10-05 22:08:10 +0000 @@ -19,13 +19,11 @@ #include #include @@ -541,8 +541,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/com } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/common/util.c ---- xchat-wdk.orig/src/common/util.c 2008-02-07 02:50:37 +0100 -+++ xchat-wdk/src/common/util.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/util.c 2008-02-07 01:50:37 +0000 ++++ xchat-wdk/src/common/util.c 2010-10-05 22:08:10 +0000 @@ -16,11 +16,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -627,8 +627,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com return verbuf; } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/common/xchat.c ---- xchat-wdk.orig/src/common/xchat.c 2008-06-08 09:58:58 +0200 -+++ xchat-wdk/src/common/xchat.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/xchat.c 2008-06-08 07:58:58 +0000 ++++ xchat-wdk/src/common/xchat.c 2010-10-05 22:08:10 +0000 @@ -22,7 +22,6 @@ #include #include @@ -655,8 +655,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/co "NAME KILL\n" "CMD quote KILL %2 :&3\n\n"\ "NAME LEAVE\n" "CMD part &2\n\n"\ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/common/xchat.h ---- xchat-wdk.orig/src/common/xchat.h 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/common/xchat.h 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/common/xchat.h 2010-08-07 07:14:45 +0000 ++++ xchat-wdk/src/common/xchat.h 2010-10-05 22:08:10 +0000 @@ -12,12 +12,14 @@ #include "history.h" @@ -693,8 +693,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/co unsigned int ctcp_number_limit; /*flood */ unsigned int ctcp_time_limit; /*seconds of floods */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe-gtk/about.c ---- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 09:43:49 +0200 -+++ xchat-wdk/src/fe-gtk/about.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 07:43:49 +0000 ++++ xchat-wdk/src/fe-gtk/about.c 2010-10-05 22:08:10 +0000 @@ -39,6 +39,7 @@ #include "../common/xchat.h" @@ -769,8 +769,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_CENTER); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/fe-gtk/banlist.c ---- xchat-wdk.orig/src/fe-gtk/banlist.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/banlist.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/banlist.c 2010-05-16 03:20:22 +0000 ++++ xchat-wdk/src/fe-gtk/banlist.c 2010-10-05 22:08:10 +0000 @@ -19,7 +19,6 @@ #include #include @@ -780,8 +780,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/ #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanlist.c xchat-wdk/src/fe-gtk/chanlist.c ---- xchat-wdk.orig/src/fe-gtk/chanlist.c 2008-02-24 04:46:02 +0100 -+++ xchat-wdk/src/fe-gtk/chanlist.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/chanlist.c 2008-02-24 03:46:02 +0000 ++++ xchat-wdk/src/fe-gtk/chanlist.c 2010-10-05 22:08:10 +0000 @@ -19,7 +19,6 @@ #include #include @@ -791,8 +791,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanlist.c xchat-wdk/src #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanview-tabs.c xchat-wdk/src/fe-gtk/chanview-tabs.c ---- xchat-wdk.orig/src/fe-gtk/chanview-tabs.c 2005-11-21 06:25:39 +0100 -+++ xchat-wdk/src/fe-gtk/chanview-tabs.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/chanview-tabs.c 2005-11-21 05:25:39 +0000 ++++ xchat-wdk/src/fe-gtk/chanview-tabs.c 2010-10-05 22:08:10 +0000 @@ -144,8 +144,8 @@ for (i = adj->value; ((i > new_value) && (tab_left_is_moving)); i -= 0.1) { @@ -816,8 +816,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanview-tabs.c xchat-wd gtk_adjustment_set_value (adj, new_value); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/editlist.c xchat-wdk/src/fe-gtk/editlist.c ---- xchat-wdk.orig/src/fe-gtk/editlist.c 2006-03-13 09:33:45 +0100 -+++ xchat-wdk/src/fe-gtk/editlist.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/editlist.c 2006-03-13 08:33:45 +0000 ++++ xchat-wdk/src/fe-gtk/editlist.c 2010-10-05 22:08:10 +0000 @@ -19,7 +19,6 @@ #include #include @@ -827,8 +827,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/editlist.c xchat-wdk/src #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.c xchat-wdk/src/fe-gtk/fe-gtk.c ---- xchat-wdk.orig/src/fe-gtk/fe-gtk.c 2010-08-14 03:46:21 +0200 -+++ xchat-wdk/src/fe-gtk/fe-gtk.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/fe-gtk.c 2010-08-14 01:46:21 +0000 ++++ xchat-wdk/src/fe-gtk/fe-gtk.c 2010-10-05 22:08:10 +0000 @@ -19,7 +19,6 @@ #include #include @@ -864,8 +864,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.c xchat-wdk/src/f sess = find_dialog (serv_list->data, "(warnings)"); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.h xchat-wdk/src/fe-gtk/fe-gtk.h ---- xchat-wdk.orig/src/fe-gtk/fe-gtk.h 2010-05-30 08:31:29 +0200 -+++ xchat-wdk/src/fe-gtk/fe-gtk.h 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/fe-gtk.h 2010-05-30 06:31:29 +0000 ++++ xchat-wdk/src/fe-gtk/fe-gtk.h 2010-10-05 22:08:10 +0000 @@ -4,7 +4,7 @@ /* If you're compiling this for Windows, your release is un-official * and not condoned. Please don't use the XChat name. Make up your @@ -876,8 +876,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.h xchat-wdk/src/f #define DISPLAY_NAME "XChat" #endif diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fkeys.c xchat-wdk/src/fe-gtk/fkeys.c ---- xchat-wdk.orig/src/fe-gtk/fkeys.c 2008-02-24 06:09:34 +0100 -+++ xchat-wdk/src/fe-gtk/fkeys.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/fkeys.c 2008-02-24 05:09:34 +0000 ++++ xchat-wdk/src/fe-gtk/fkeys.c 2010-10-05 22:08:10 +0000 @@ -20,7 +20,6 @@ #include #include @@ -887,8 +887,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fkeys.c xchat-wdk/src/fe #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/gtkutil.c xchat-wdk/src/fe-gtk/gtkutil.c ---- xchat-wdk.orig/src/fe-gtk/gtkutil.c 2009-07-18 14:38:10 +0200 -+++ xchat-wdk/src/fe-gtk/gtkutil.c 2010-10-05 05:22:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/gtkutil.c 2009-07-18 12:38:10 +0000 ++++ xchat-wdk/src/fe-gtk/gtkutil.c 2010-10-05 22:08:10 +0000 @@ -22,7 +22,6 @@ #include #include @@ -1175,8 +1175,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/gtkutil.c xchat-wdk/src/ { dialog = gtk_file_chooser_dialog_new (title, NULL, diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe-gtk/joind.c ---- xchat-wdk.orig/src/fe-gtk/joind.c 2006-12-26 05:56:55 +0100 -+++ xchat-wdk/src/fe-gtk/joind.c 2010-10-05 03:55:27 +0200 +--- xchat-wdk.orig/src/fe-gtk/joind.c 2006-12-26 04:56:55 +0000 ++++ xchat-wdk/src/fe-gtk/joind.c 2010-10-05 22:08:10 +0000 @@ -9,7 +9,6 @@ #include @@ -1186,8 +1186,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/fe-gtk/maingui.c ---- xchat-wdk.orig/src/fe-gtk/maingui.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-05 06:00:24 +0200 +--- xchat-wdk.orig/src/fe-gtk/maingui.c 2010-05-16 03:20:22 +0000 ++++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-05 22:08:10 +0000 @@ -214,60 +214,10 @@ away_list = mg_attr_list_create (&colors[COL_AWAY], FALSE); } @@ -1328,8 +1328,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/ return FALSE; } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/menu.c xchat-wdk/src/fe-gtk/menu.c ---- xchat-wdk.orig/src/fe-gtk/menu.c 2010-05-16 06:24:24 +0200 -+++ xchat-wdk/src/fe-gtk/menu.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/menu.c 2010-05-16 04:24:24 +0000 ++++ xchat-wdk/src/fe-gtk/menu.c 2010-10-05 22:08:10 +0000 @@ -20,7 +20,6 @@ #include #include @@ -1339,8 +1339,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/menu.c xchat-wdk/src/fe- #ifdef WIN32 #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/palette.c xchat-wdk/src/fe-gtk/palette.c ---- xchat-wdk.orig/src/fe-gtk/palette.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/palette.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/palette.c 2010-05-16 03:20:22 +0000 ++++ xchat-wdk/src/fe-gtk/palette.c 2010-10-05 22:08:10 +0000 @@ -18,7 +18,6 @@ #include @@ -1350,8 +1350,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/palette.c xchat-wdk/src/ #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugin-tray.c xchat-wdk/src/fe-gtk/plugin-tray.c ---- xchat-wdk.orig/src/fe-gtk/plugin-tray.c 2010-08-14 03:46:21 +0200 -+++ xchat-wdk/src/fe-gtk/plugin-tray.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/plugin-tray.c 2010-08-14 01:46:21 +0000 ++++ xchat-wdk/src/fe-gtk/plugin-tray.c 2010-10-05 22:08:10 +0000 @@ -1,8 +1,7 @@ /* Copyright (C) 2006-2007 Peter Zelezny. */ @@ -1477,8 +1477,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugin-tray.c xchat-wdk/ return 1; /* return 1 for success */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugingui.c xchat-wdk/src/fe-gtk/plugingui.c ---- xchat-wdk.orig/src/fe-gtk/plugingui.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/plugingui.c 2010-10-05 02:53:43 +0200 +--- xchat-wdk.orig/src/fe-gtk/plugingui.c 2010-05-16 03:20:22 +0000 ++++ xchat-wdk/src/fe-gtk/plugingui.c 2010-10-05 22:08:10 +0000 @@ -35,7 +35,7 @@ #include "../common/xchat.h" #define PLUGIN_C @@ -1500,8 +1500,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugingui.c xchat-wdk/sr static void diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/rawlog.c xchat-wdk/src/fe-gtk/rawlog.c ---- xchat-wdk.orig/src/fe-gtk/rawlog.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/rawlog.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/rawlog.c 2010-05-16 03:20:22 +0000 ++++ xchat-wdk/src/fe-gtk/rawlog.c 2010-10-05 22:08:10 +0000 @@ -19,7 +19,6 @@ #include #include @@ -1511,8 +1511,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/rawlog.c xchat-wdk/src/f #include "fe-gtk.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/search.c xchat-wdk/src/fe-gtk/search.c ---- xchat-wdk.orig/src/fe-gtk/search.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/search.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/search.c 2010-05-16 03:20:22 +0000 ++++ xchat-wdk/src/fe-gtk/search.c 2010-10-05 22:08:10 +0000 @@ -153,7 +153,7 @@ _("_Find")); g_object_set_data (G_OBJECT (wid), "e", entry); @@ -1523,8 +1523,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/search.c xchat-wdk/src/f gtk_widget_show (win); } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/servlistgui.c xchat-wdk/src/fe-gtk/servlistgui.c ---- xchat-wdk.orig/src/fe-gtk/servlistgui.c 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/fe-gtk/servlistgui.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/servlistgui.c 2010-08-07 07:14:45 +0000 ++++ xchat-wdk/src/fe-gtk/servlistgui.c 2010-10-05 22:08:10 +0000 @@ -1782,7 +1782,7 @@ gtk_container_add (GTK_CONTAINER (hbox), checkbutton_fav); g_signal_connect (G_OBJECT (checkbutton_fav), "toggled", @@ -1535,8 +1535,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/servlistgui.c xchat-wdk/ vbuttonbox2 = gtk_vbutton_box_new (); gtk_box_set_spacing (GTK_BOX (vbuttonbox2), 3); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe-gtk/setup.c ---- xchat-wdk.orig/src/fe-gtk/setup.c 2008-02-08 10:04:45 +0100 -+++ xchat-wdk/src/fe-gtk/setup.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/setup.c 2008-02-08 09:04:45 +0000 ++++ xchat-wdk/src/fe-gtk/setup.c 2010-10-05 22:08:10 +0000 @@ -109,13 +109,13 @@ N_("Give each person on IRC a different color"),0,0}, {ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(indent_nicks), @@ -1589,8 +1589,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe setup_add_page (cata[15], book, setup_create_page (filexfer_settings)); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat-wdk/src/fe-gtk/sexy-spell-entry.c ---- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 07:51:02 +0200 -+++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 05:51:02 +0000 ++++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-05 22:09:18 +0000 @@ -31,6 +31,20 @@ /*#include "gtkspell-iso-codes.h" #include "sexy-marshal.h"*/ @@ -1628,8 +1628,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat have_enchant = TRUE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/xtext.c xchat-wdk/src/fe-gtk/xtext.c ---- xchat-wdk.orig/src/fe-gtk/xtext.c 2008-08-29 13:24:17 +0200 -+++ xchat-wdk/src/fe-gtk/xtext.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-gtk/xtext.c 2008-08-29 11:24:17 +0000 ++++ xchat-wdk/src/fe-gtk/xtext.c 2010-10-05 22:08:10 +0000 @@ -42,7 +42,6 @@ #include #include @@ -1648,8 +1648,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/xtext.c xchat-wdk/src/fe xtext->pixmap = win32_tint (xtext, img, img->width, img->height); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-text/fe-text.c xchat-wdk/src/fe-text/fe-text.c ---- xchat-wdk.orig/src/fe-text/fe-text.c 2008-08-29 13:24:17 +0200 -+++ xchat-wdk/src/fe-text/fe-text.c 2010-10-05 03:55:28 +0200 +--- xchat-wdk.orig/src/fe-text/fe-text.c 2008-08-29 11:24:17 +0000 ++++ xchat-wdk/src/fe-text/fe-text.c 2010-10-05 22:08:10 +0000 @@ -22,9 +22,13 @@ #ifdef HAVE_STRINGS_H #include -- cgit 1.4.1 From 21c22c2bfc324eeffa9d4c3cc5bbbfe721731ee5 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Wed, 6 Oct 2010 00:10:52 +0200 Subject: update enchant lib name --- xchat-wdk.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 1d17f4b8..5971ec96 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -1590,7 +1590,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat-wdk/src/fe-gtk/sexy-spell-entry.c --- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 05:51:02 +0000 -+++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-05 22:09:18 +0000 ++++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-05 22:10:24 +0000 @@ -31,6 +31,20 @@ /*#include "gtkspell-iso-codes.h" #include "sexy-marshal.h"*/ @@ -1617,7 +1617,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat gpointer funcptr; - enchant = g_module_open("libenchant", 0); -+ enchant = g_module_open("libenchant-1.dll", 0); ++ enchant = g_module_open("libenchant.dll", 0); if (enchant == NULL) { - enchant = g_module_open("libenchant.so.1", 0); -- cgit 1.4.1 From 11a9adb19fbfbf265f37edba893a810ea50959a1 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Wed, 6 Oct 2010 14:29:45 +0200 Subject: be consistent about ssize_t --- ext/enchant-wdk/src/config.h | 20 +++++++++++--------- src/fe-gtk/typedef.h | 11 +++++++++++ xchat-wdk.patch | 20 ++++---------------- 3 files changed, 26 insertions(+), 25 deletions(-) create mode 100644 src/fe-gtk/typedef.h (limited to 'xchat-wdk.patch') diff --git a/ext/enchant-wdk/src/config.h b/ext/enchant-wdk/src/config.h index 9b569554..d91c69c6 100644 --- a/ext/enchant-wdk/src/config.h +++ b/ext/enchant-wdk/src/config.h @@ -1,13 +1,15 @@ -/* - * Hand tailored config.h for windows. - */ +#include -/* define ssize_t to int if doesn't define.*/ -typedef int ssize_t; -/* #undef ssize_t */ - -#if defined(_MSC_VER) -#pragma warning(disable: 4996) /* The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name. */ +#ifndef SSIZE_T_DEFINED +#ifdef ssize_t +#undef ssize_t +#endif +#ifdef _WIN64 +typedef __int64 ssize_t; +#else +typedef _W64 int ssize_t; +#endif +#define SSIZE_T_DEFINED #endif #define ENCHANT_VERSION_STRING "1.6.0" diff --git a/src/fe-gtk/typedef.h b/src/fe-gtk/typedef.h new file mode 100644 index 00000000..b20612ea --- /dev/null +++ b/src/fe-gtk/typedef.h @@ -0,0 +1,11 @@ +#ifndef SSIZE_T_DEFINED +#ifdef ssize_t +#undef ssize_t +#endif +#ifdef _WIN64 +typedef __int64 ssize_t; +#else +typedef _W64 int ssize_t; +#endif +#define SSIZE_T_DEFINED +#endif diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 5971ec96..0dbb50d4 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -1590,29 +1590,17 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat-wdk/src/fe-gtk/sexy-spell-entry.c --- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 05:51:02 +0000 -+++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-05 22:10:24 +0000 -@@ -31,6 +31,20 @@ ++++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-06 12:23:23 +0000 +@@ -31,6 +31,8 @@ /*#include "gtkspell-iso-codes.h" #include "sexy-marshal.h"*/ -+/* workaround for ssize_t in VS -+ from krb/include/win-mac.h */ -+#ifndef SSIZE_T_DEFINED -+#ifdef ssize_t -+#undef ssize_t -+#endif -+#ifdef _WIN64 -+typedef __int64 ssize_t; -+#else -+typedef _W64 int ssize_t; -+#endif -+#define SSIZE_T_DEFINED -+#endif ++#include "typedef.h" + /* * Bunch of poop to make enchant into a runtime dependency rather than a * compile-time dependency. This makes it so I don't have to hear the -@@ -134,12 +148,10 @@ +@@ -134,12 +136,10 @@ GModule *enchant; gpointer funcptr; -- cgit 1.4.1 From 9bbe4c17b06a258d162b1d964acfab4ccc516ade Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Thu, 7 Oct 2010 21:26:09 +0200 Subject: update timestamps --- xchat-wdk.patch | 188 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 94 insertions(+), 94 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 0dbb50d4..3474dd00 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -1,6 +1,6 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/perl/perl.c xchat-wdk/plugins/perl/perl.c ---- xchat-wdk.orig/plugins/perl/perl.c 2010-08-26 02:18:04 +0000 -+++ xchat-wdk/plugins/perl/perl.c 2010-10-05 22:08:09 +0000 +--- xchat-wdk.orig/plugins/perl/perl.c 2010-08-26 04:18:04 +0200 ++++ xchat-wdk/plugins/perl/perl.c 2010-10-07 21:25:43 +0200 @@ -22,12 +22,15 @@ #include #include @@ -40,8 +40,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/perl/perl.c xchat-wdk/plugi } } diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/python/python.c xchat-wdk/plugins/python/python.c ---- xchat-wdk.orig/plugins/python/python.c 2010-05-16 04:31:54 +0000 -+++ xchat-wdk/plugins/python/python.c 2010-10-05 22:08:09 +0000 +--- xchat-wdk.orig/plugins/python/python.c 2010-05-16 06:31:54 +0200 ++++ xchat-wdk/plugins/python/python.c 2010-10-07 21:25:43 +0200 @@ -53,10 +53,10 @@ #include @@ -102,8 +102,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/python/python.c xchat-wdk/p "__main__"); if (m == NULL) { diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/tcl/tclplugin.c xchat-wdk/plugins/tcl/tclplugin.c ---- xchat-wdk.orig/plugins/tcl/tclplugin.c 2010-03-21 00:49:42 +0000 -+++ xchat-wdk/plugins/tcl/tclplugin.c 2010-10-05 22:08:09 +0000 +--- xchat-wdk.orig/plugins/tcl/tclplugin.c 2010-03-21 01:49:42 +0100 ++++ xchat-wdk/plugins/tcl/tclplugin.c 2010-10-07 21:25:43 +0200 @@ -32,8 +32,6 @@ #include #define bzero(mem, sz) memset((mem), 0, (sz)) @@ -123,8 +123,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/tcl/tclplugin.c xchat-wdk/p } FreeLibrary(lib); diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugins/xdcc/xdcc.c ---- xchat-wdk.orig/plugins/xdcc/xdcc.c 2002-12-26 03:35:09 +0000 -+++ xchat-wdk/plugins/xdcc/xdcc.c 2010-10-05 22:08:09 +0000 +--- xchat-wdk.orig/plugins/xdcc/xdcc.c 2002-12-26 04:35:09 +0100 ++++ xchat-wdk/plugins/xdcc/xdcc.c 2010-10-07 21:25:43 +0200 @@ -2,11 +2,11 @@ #include @@ -139,8 +139,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugi static xchat_plugin *ph; /* plugin handle */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src/common/cfgfiles.c ---- xchat-wdk.orig/src/common/cfgfiles.c 2010-08-07 07:14:45 +0000 -+++ xchat-wdk/src/common/cfgfiles.c 2010-10-05 22:08:09 +0000 +--- xchat-wdk.orig/src/common/cfgfiles.c 2010-08-07 09:14:45 +0200 ++++ xchat-wdk/src/common/cfgfiles.c 2010-10-07 21:25:43 +0200 @@ -17,7 +17,6 @@ */ @@ -225,8 +225,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src prefs.dccstalltimeout = 60; prefs.notify_timeout = 15; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/common/chanopt.c ---- xchat-wdk.orig/src/common/chanopt.c 2008-06-15 04:40:29 +0000 -+++ xchat-wdk/src/common/chanopt.c 2010-10-05 22:08:09 +0000 +--- xchat-wdk.orig/src/common/chanopt.c 2008-06-15 06:40:29 +0200 ++++ xchat-wdk/src/common/chanopt.c 2010-10-07 21:25:43 +0200 @@ -3,7 +3,6 @@ #include #include @@ -236,8 +236,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/ #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/common/ctcp.c ---- xchat-wdk.orig/src/common/ctcp.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/ctcp.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/ctcp.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/ctcp.c 2010-10-07 21:25:43 +0200 @@ -18,7 +18,6 @@ #include @@ -256,8 +256,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/com serv->p_nctcp (serv, nick, outbuf); } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/common/dcc.c ---- xchat-wdk.orig/src/common/dcc.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/dcc.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/dcc.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/dcc.c 2010-10-07 21:25:43 +0200 @@ -31,7 +31,6 @@ #include #include @@ -278,8 +278,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/comm if ((dcc->fp == -1 ? stat (dcc->destfile_fs, &st_a) : fstat (dcc->fp, &st_a)) == -1) return FALSE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/common/ignore.c ---- xchat-wdk.orig/src/common/ignore.c 2006-04-15 07:00:39 +0000 -+++ xchat-wdk/src/common/ignore.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/ignore.c 2006-04-15 09:00:39 +0200 ++++ xchat-wdk/src/common/ignore.c 2010-10-07 21:25:43 +0200 @@ -19,7 +19,6 @@ #include #include @@ -289,8 +289,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/c #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inbound.c xchat-wdk/src/common/inbound.c ---- xchat-wdk.orig/src/common/inbound.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/inbound.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/inbound.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/inbound.c 2010-10-07 21:25:43 +0200 @@ -21,7 +21,6 @@ #include #include @@ -300,8 +300,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inbound.c xchat-wdk/src/ #define WANTARPA diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inet.h xchat-wdk/src/common/inet.h ---- xchat-wdk.orig/src/common/inet.h 2005-09-03 10:57:48 +0000 -+++ xchat-wdk/src/common/inet.h 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/inet.h 2005-09-03 12:57:48 +0200 ++++ xchat-wdk/src/common/inet.h 2010-10-07 21:25:43 +0200 @@ -24,9 +24,8 @@ #ifdef USE_IPV6 #include @@ -314,8 +314,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inet.h xchat-wdk/src/com #define set_blocking(sok) { \ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/msproxy.c xchat-wdk/src/common/msproxy.c ---- xchat-wdk.orig/src/common/msproxy.c 2006-04-16 15:32:17 +0000 -+++ xchat-wdk/src/common/msproxy.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/msproxy.c 2006-04-16 17:32:17 +0200 ++++ xchat-wdk/src/common/msproxy.c 2010-10-07 21:25:44 +0200 @@ -26,7 +26,6 @@ #include #include @@ -325,8 +325,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/msproxy.c xchat-wdk/src/ #define WANTSOCKET diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/network.c xchat-wdk/src/common/network.c ---- xchat-wdk.orig/src/common/network.c 2006-04-16 08:11:26 +0000 -+++ xchat-wdk/src/common/network.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/network.c 2006-04-16 10:11:26 +0200 ++++ xchat-wdk/src/common/network.c 2010-10-07 21:25:44 +0200 @@ -21,7 +21,6 @@ #include #include @@ -336,8 +336,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/network.c xchat-wdk/src/ #include "../../config.h" /* grab USE_IPV6 and LOOKUPD defines */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/notify.c xchat-wdk/src/common/notify.c ---- xchat-wdk.orig/src/common/notify.c 2008-06-08 07:58:58 +0000 -+++ xchat-wdk/src/common/notify.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/notify.c 2008-06-08 09:58:58 +0200 ++++ xchat-wdk/src/common/notify.c 2010-10-07 21:25:44 +0200 @@ -22,7 +22,6 @@ #include #include @@ -347,8 +347,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/notify.c xchat-wdk/src/c #include "xchat.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/outbound.c xchat-wdk/src/common/outbound.c ---- xchat-wdk.orig/src/common/outbound.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/outbound.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/outbound.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/outbound.c 2010-10-07 21:25:44 +0200 @@ -32,7 +32,6 @@ #include #endif @@ -358,8 +358,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/outbound.c xchat-wdk/src #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin-timer.c xchat-wdk/src/common/plugin-timer.c ---- xchat-wdk.orig/src/common/plugin-timer.c 2005-02-02 10:03:51 +0000 -+++ xchat-wdk/src/common/plugin-timer.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/plugin-timer.c 2005-02-02 11:03:51 +0100 ++++ xchat-wdk/src/common/plugin-timer.c 2010-10-07 21:25:44 +0200 @@ -1,7 +1,7 @@ #include #include @@ -370,8 +370,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin-timer.c xchat-wdk #ifdef WIN32 #define strcasecmp stricmp diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin.c xchat-wdk/src/common/plugin.c ---- xchat-wdk.orig/src/common/plugin.c 2010-08-14 01:46:21 +0000 -+++ xchat-wdk/src/common/plugin.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/plugin.c 2010-08-14 03:46:21 +0200 ++++ xchat-wdk/src/common/plugin.c 2010-10-07 21:25:44 +0200 @@ -34,7 +34,7 @@ #include "text.h" #define PLUGIN_C @@ -391,8 +391,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin.c xchat-wdk/src/c static const char * const channels_fields[] = { diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/src/common/proto-irc.c ---- xchat-wdk.orig/src/common/proto-irc.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/proto-irc.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/proto-irc.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/proto-irc.c 2010-10-07 21:25:44 +0200 @@ -18,7 +18,6 @@ /* IRC RFC1459(+commonly used extensions) protocol implementation */ @@ -402,8 +402,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/sr #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/common/server.c ---- xchat-wdk.orig/src/common/server.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/server.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/server.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/server.c 2010-10-07 21:25:44 +0200 @@ -26,7 +26,6 @@ #include #include @@ -435,8 +435,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/c } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/servlist.c xchat-wdk/src/common/servlist.c ---- xchat-wdk.orig/src/common/servlist.c 2010-05-16 07:43:49 +0000 -+++ xchat-wdk/src/common/servlist.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/servlist.c 2010-05-16 09:43:49 +0200 ++++ xchat-wdk/src/common/servlist.c 2010-10-07 21:25:44 +0200 @@ -21,7 +21,6 @@ #include #include @@ -446,8 +446,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/servlist.c xchat-wdk/src #include "xchat.h" #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/common/ssl.c ---- xchat-wdk.orig/src/common/ssl.c 2007-03-28 08:35:06 +0000 -+++ xchat-wdk/src/common/ssl.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/ssl.c 2007-03-28 10:35:06 +0200 ++++ xchat-wdk/src/common/ssl.c 2010-10-07 21:25:44 +0200 @@ -17,12 +17,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -463,8 +463,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/comm #ifndef HAVE_SNPRINTF diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/common/text.c ---- xchat-wdk.orig/src/common/text.c 2010-05-30 02:28:04 +0000 -+++ xchat-wdk/src/common/text.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/text.c 2010-05-30 04:28:04 +0200 ++++ xchat-wdk/src/common/text.c 2010-10-07 21:25:44 +0200 @@ -19,13 +19,11 @@ #include #include @@ -541,8 +541,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/com } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/common/util.c ---- xchat-wdk.orig/src/common/util.c 2008-02-07 01:50:37 +0000 -+++ xchat-wdk/src/common/util.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/util.c 2008-02-07 02:50:37 +0100 ++++ xchat-wdk/src/common/util.c 2010-10-07 21:25:44 +0200 @@ -16,11 +16,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -627,8 +627,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com return verbuf; } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/common/xchat.c ---- xchat-wdk.orig/src/common/xchat.c 2008-06-08 07:58:58 +0000 -+++ xchat-wdk/src/common/xchat.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/xchat.c 2008-06-08 09:58:58 +0200 ++++ xchat-wdk/src/common/xchat.c 2010-10-07 21:25:44 +0200 @@ -22,7 +22,6 @@ #include #include @@ -655,8 +655,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/co "NAME KILL\n" "CMD quote KILL %2 :&3\n\n"\ "NAME LEAVE\n" "CMD part &2\n\n"\ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/common/xchat.h ---- xchat-wdk.orig/src/common/xchat.h 2010-08-07 07:14:45 +0000 -+++ xchat-wdk/src/common/xchat.h 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/common/xchat.h 2010-08-07 09:14:45 +0200 ++++ xchat-wdk/src/common/xchat.h 2010-10-07 21:25:44 +0200 @@ -12,12 +12,14 @@ #include "history.h" @@ -693,8 +693,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/co unsigned int ctcp_number_limit; /*flood */ unsigned int ctcp_time_limit; /*seconds of floods */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe-gtk/about.c ---- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 07:43:49 +0000 -+++ xchat-wdk/src/fe-gtk/about.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 09:43:49 +0200 ++++ xchat-wdk/src/fe-gtk/about.c 2010-10-07 21:25:44 +0200 @@ -39,6 +39,7 @@ #include "../common/xchat.h" @@ -769,8 +769,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_CENTER); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/fe-gtk/banlist.c ---- xchat-wdk.orig/src/fe-gtk/banlist.c 2010-05-16 03:20:22 +0000 -+++ xchat-wdk/src/fe-gtk/banlist.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/banlist.c 2010-05-16 05:20:22 +0200 ++++ xchat-wdk/src/fe-gtk/banlist.c 2010-10-07 21:25:44 +0200 @@ -19,7 +19,6 @@ #include #include @@ -780,8 +780,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/ #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanlist.c xchat-wdk/src/fe-gtk/chanlist.c ---- xchat-wdk.orig/src/fe-gtk/chanlist.c 2008-02-24 03:46:02 +0000 -+++ xchat-wdk/src/fe-gtk/chanlist.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/chanlist.c 2008-02-24 04:46:02 +0100 ++++ xchat-wdk/src/fe-gtk/chanlist.c 2010-10-07 21:25:44 +0200 @@ -19,7 +19,6 @@ #include #include @@ -791,8 +791,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanlist.c xchat-wdk/src #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanview-tabs.c xchat-wdk/src/fe-gtk/chanview-tabs.c ---- xchat-wdk.orig/src/fe-gtk/chanview-tabs.c 2005-11-21 05:25:39 +0000 -+++ xchat-wdk/src/fe-gtk/chanview-tabs.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/chanview-tabs.c 2005-11-21 06:25:39 +0100 ++++ xchat-wdk/src/fe-gtk/chanview-tabs.c 2010-10-07 21:25:44 +0200 @@ -144,8 +144,8 @@ for (i = adj->value; ((i > new_value) && (tab_left_is_moving)); i -= 0.1) { @@ -816,8 +816,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanview-tabs.c xchat-wd gtk_adjustment_set_value (adj, new_value); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/editlist.c xchat-wdk/src/fe-gtk/editlist.c ---- xchat-wdk.orig/src/fe-gtk/editlist.c 2006-03-13 08:33:45 +0000 -+++ xchat-wdk/src/fe-gtk/editlist.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/editlist.c 2006-03-13 09:33:45 +0100 ++++ xchat-wdk/src/fe-gtk/editlist.c 2010-10-07 21:25:44 +0200 @@ -19,7 +19,6 @@ #include #include @@ -827,8 +827,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/editlist.c xchat-wdk/src #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.c xchat-wdk/src/fe-gtk/fe-gtk.c ---- xchat-wdk.orig/src/fe-gtk/fe-gtk.c 2010-08-14 01:46:21 +0000 -+++ xchat-wdk/src/fe-gtk/fe-gtk.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/fe-gtk.c 2010-08-14 03:46:21 +0200 ++++ xchat-wdk/src/fe-gtk/fe-gtk.c 2010-10-07 21:25:44 +0200 @@ -19,7 +19,6 @@ #include #include @@ -864,8 +864,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.c xchat-wdk/src/f sess = find_dialog (serv_list->data, "(warnings)"); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.h xchat-wdk/src/fe-gtk/fe-gtk.h ---- xchat-wdk.orig/src/fe-gtk/fe-gtk.h 2010-05-30 06:31:29 +0000 -+++ xchat-wdk/src/fe-gtk/fe-gtk.h 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/fe-gtk.h 2010-05-30 08:31:29 +0200 ++++ xchat-wdk/src/fe-gtk/fe-gtk.h 2010-10-07 21:25:44 +0200 @@ -4,7 +4,7 @@ /* If you're compiling this for Windows, your release is un-official * and not condoned. Please don't use the XChat name. Make up your @@ -876,8 +876,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.h xchat-wdk/src/f #define DISPLAY_NAME "XChat" #endif diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fkeys.c xchat-wdk/src/fe-gtk/fkeys.c ---- xchat-wdk.orig/src/fe-gtk/fkeys.c 2008-02-24 05:09:34 +0000 -+++ xchat-wdk/src/fe-gtk/fkeys.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/fkeys.c 2008-02-24 06:09:34 +0100 ++++ xchat-wdk/src/fe-gtk/fkeys.c 2010-10-07 21:25:44 +0200 @@ -20,7 +20,6 @@ #include #include @@ -887,8 +887,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fkeys.c xchat-wdk/src/fe #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/gtkutil.c xchat-wdk/src/fe-gtk/gtkutil.c ---- xchat-wdk.orig/src/fe-gtk/gtkutil.c 2009-07-18 12:38:10 +0000 -+++ xchat-wdk/src/fe-gtk/gtkutil.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/gtkutil.c 2009-07-18 14:38:10 +0200 ++++ xchat-wdk/src/fe-gtk/gtkutil.c 2010-10-07 21:25:44 +0200 @@ -22,7 +22,6 @@ #include #include @@ -1175,8 +1175,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/gtkutil.c xchat-wdk/src/ { dialog = gtk_file_chooser_dialog_new (title, NULL, diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe-gtk/joind.c ---- xchat-wdk.orig/src/fe-gtk/joind.c 2006-12-26 04:56:55 +0000 -+++ xchat-wdk/src/fe-gtk/joind.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/joind.c 2006-12-26 05:56:55 +0100 ++++ xchat-wdk/src/fe-gtk/joind.c 2010-10-07 21:25:44 +0200 @@ -9,7 +9,6 @@ #include @@ -1186,8 +1186,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/fe-gtk/maingui.c ---- xchat-wdk.orig/src/fe-gtk/maingui.c 2010-05-16 03:20:22 +0000 -+++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/maingui.c 2010-05-16 05:20:22 +0200 ++++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-07 21:25:44 +0200 @@ -214,60 +214,10 @@ away_list = mg_attr_list_create (&colors[COL_AWAY], FALSE); } @@ -1328,8 +1328,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/ return FALSE; } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/menu.c xchat-wdk/src/fe-gtk/menu.c ---- xchat-wdk.orig/src/fe-gtk/menu.c 2010-05-16 04:24:24 +0000 -+++ xchat-wdk/src/fe-gtk/menu.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/menu.c 2010-05-16 06:24:24 +0200 ++++ xchat-wdk/src/fe-gtk/menu.c 2010-10-07 21:25:44 +0200 @@ -20,7 +20,6 @@ #include #include @@ -1339,8 +1339,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/menu.c xchat-wdk/src/fe- #ifdef WIN32 #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/palette.c xchat-wdk/src/fe-gtk/palette.c ---- xchat-wdk.orig/src/fe-gtk/palette.c 2010-05-16 03:20:22 +0000 -+++ xchat-wdk/src/fe-gtk/palette.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/palette.c 2010-05-16 05:20:22 +0200 ++++ xchat-wdk/src/fe-gtk/palette.c 2010-10-07 21:25:44 +0200 @@ -18,7 +18,6 @@ #include @@ -1350,8 +1350,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/palette.c xchat-wdk/src/ #include #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugin-tray.c xchat-wdk/src/fe-gtk/plugin-tray.c ---- xchat-wdk.orig/src/fe-gtk/plugin-tray.c 2010-08-14 01:46:21 +0000 -+++ xchat-wdk/src/fe-gtk/plugin-tray.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/plugin-tray.c 2010-08-14 03:46:21 +0200 ++++ xchat-wdk/src/fe-gtk/plugin-tray.c 2010-10-07 21:25:44 +0200 @@ -1,8 +1,7 @@ /* Copyright (C) 2006-2007 Peter Zelezny. */ @@ -1477,8 +1477,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugin-tray.c xchat-wdk/ return 1; /* return 1 for success */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugingui.c xchat-wdk/src/fe-gtk/plugingui.c ---- xchat-wdk.orig/src/fe-gtk/plugingui.c 2010-05-16 03:20:22 +0000 -+++ xchat-wdk/src/fe-gtk/plugingui.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/plugingui.c 2010-05-16 05:20:22 +0200 ++++ xchat-wdk/src/fe-gtk/plugingui.c 2010-10-07 21:25:44 +0200 @@ -35,7 +35,7 @@ #include "../common/xchat.h" #define PLUGIN_C @@ -1500,8 +1500,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugingui.c xchat-wdk/sr static void diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/rawlog.c xchat-wdk/src/fe-gtk/rawlog.c ---- xchat-wdk.orig/src/fe-gtk/rawlog.c 2010-05-16 03:20:22 +0000 -+++ xchat-wdk/src/fe-gtk/rawlog.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/rawlog.c 2010-05-16 05:20:22 +0200 ++++ xchat-wdk/src/fe-gtk/rawlog.c 2010-10-07 21:25:44 +0200 @@ -19,7 +19,6 @@ #include #include @@ -1511,8 +1511,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/rawlog.c xchat-wdk/src/f #include "fe-gtk.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/search.c xchat-wdk/src/fe-gtk/search.c ---- xchat-wdk.orig/src/fe-gtk/search.c 2010-05-16 03:20:22 +0000 -+++ xchat-wdk/src/fe-gtk/search.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/search.c 2010-05-16 05:20:22 +0200 ++++ xchat-wdk/src/fe-gtk/search.c 2010-10-07 21:25:44 +0200 @@ -153,7 +153,7 @@ _("_Find")); g_object_set_data (G_OBJECT (wid), "e", entry); @@ -1523,8 +1523,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/search.c xchat-wdk/src/f gtk_widget_show (win); } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/servlistgui.c xchat-wdk/src/fe-gtk/servlistgui.c ---- xchat-wdk.orig/src/fe-gtk/servlistgui.c 2010-08-07 07:14:45 +0000 -+++ xchat-wdk/src/fe-gtk/servlistgui.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/servlistgui.c 2010-08-07 09:14:45 +0200 ++++ xchat-wdk/src/fe-gtk/servlistgui.c 2010-10-07 21:25:44 +0200 @@ -1782,7 +1782,7 @@ gtk_container_add (GTK_CONTAINER (hbox), checkbutton_fav); g_signal_connect (G_OBJECT (checkbutton_fav), "toggled", @@ -1535,8 +1535,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/servlistgui.c xchat-wdk/ vbuttonbox2 = gtk_vbutton_box_new (); gtk_box_set_spacing (GTK_BOX (vbuttonbox2), 3); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe-gtk/setup.c ---- xchat-wdk.orig/src/fe-gtk/setup.c 2008-02-08 09:04:45 +0000 -+++ xchat-wdk/src/fe-gtk/setup.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/setup.c 2008-02-08 10:04:45 +0100 ++++ xchat-wdk/src/fe-gtk/setup.c 2010-10-07 21:25:44 +0200 @@ -109,13 +109,13 @@ N_("Give each person on IRC a different color"),0,0}, {ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(indent_nicks), @@ -1589,8 +1589,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe setup_add_page (cata[15], book, setup_create_page (filexfer_settings)); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat-wdk/src/fe-gtk/sexy-spell-entry.c ---- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 05:51:02 +0000 -+++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-06 12:23:23 +0000 +--- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 07:51:02 +0200 ++++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-07 21:25:44 +0200 @@ -31,6 +31,8 @@ /*#include "gtkspell-iso-codes.h" #include "sexy-marshal.h"*/ @@ -1616,8 +1616,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat have_enchant = TRUE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/xtext.c xchat-wdk/src/fe-gtk/xtext.c ---- xchat-wdk.orig/src/fe-gtk/xtext.c 2008-08-29 11:24:17 +0000 -+++ xchat-wdk/src/fe-gtk/xtext.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-gtk/xtext.c 2008-08-29 13:24:17 +0200 ++++ xchat-wdk/src/fe-gtk/xtext.c 2010-10-07 21:25:44 +0200 @@ -42,7 +42,6 @@ #include #include @@ -1636,8 +1636,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/xtext.c xchat-wdk/src/fe xtext->pixmap = win32_tint (xtext, img, img->width, img->height); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-text/fe-text.c xchat-wdk/src/fe-text/fe-text.c ---- xchat-wdk.orig/src/fe-text/fe-text.c 2008-08-29 11:24:17 +0000 -+++ xchat-wdk/src/fe-text/fe-text.c 2010-10-05 22:08:10 +0000 +--- xchat-wdk.orig/src/fe-text/fe-text.c 2008-08-29 13:24:17 +0200 ++++ xchat-wdk/src/fe-text/fe-text.c 2010-10-07 21:25:44 +0200 @@ -22,9 +22,13 @@ #ifdef HAVE_STRINGS_H #include -- cgit 1.4.1 From 0b6d9183db537434233d140104aa7cc80600939b Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Sat, 9 Oct 2010 04:48:26 +0200 Subject: update timestamps --- xchat-wdk.patch | 94 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 5e5671da..dfe326cf 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -1,6 +1,6 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/perl/perl.c xchat-wdk/plugins/perl/perl.c --- xchat-wdk.orig/plugins/perl/perl.c 2010-08-26 04:18:04 +0200 -+++ xchat-wdk/plugins/perl/perl.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/plugins/perl/perl.c 2010-10-08 04:16:18 +0200 @@ -22,12 +22,15 @@ #include #include @@ -41,7 +41,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/perl/perl.c xchat-wdk/plugi } diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/python/python.c xchat-wdk/plugins/python/python.c --- xchat-wdk.orig/plugins/python/python.c 2010-05-16 06:31:54 +0200 -+++ xchat-wdk/plugins/python/python.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/plugins/python/python.c 2010-10-08 04:16:18 +0200 @@ -53,10 +53,10 @@ #include @@ -103,7 +103,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/python/python.c xchat-wdk/p if (m == NULL) { diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/tcl/tclplugin.c xchat-wdk/plugins/tcl/tclplugin.c --- xchat-wdk.orig/plugins/tcl/tclplugin.c 2010-03-21 01:49:42 +0100 -+++ xchat-wdk/plugins/tcl/tclplugin.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/plugins/tcl/tclplugin.c 2010-10-08 04:16:18 +0200 @@ -32,8 +32,6 @@ #include #define bzero(mem, sz) memset((mem), 0, (sz)) @@ -124,7 +124,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/tcl/tclplugin.c xchat-wdk/p FreeLibrary(lib); diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugins/xdcc/xdcc.c --- xchat-wdk.orig/plugins/xdcc/xdcc.c 2002-12-26 04:35:09 +0100 -+++ xchat-wdk/plugins/xdcc/xdcc.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/plugins/xdcc/xdcc.c 2010-10-08 04:16:18 +0200 @@ -2,11 +2,11 @@ #include @@ -140,7 +140,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugi diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src/common/cfgfiles.c --- xchat-wdk.orig/src/common/cfgfiles.c 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/common/cfgfiles.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/cfgfiles.c 2010-10-09 04:47:38 +0200 @@ -17,7 +17,6 @@ */ @@ -226,7 +226,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src prefs.notify_timeout = 15; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/common/chanopt.c --- xchat-wdk.orig/src/common/chanopt.c 2008-06-15 06:40:29 +0200 -+++ xchat-wdk/src/common/chanopt.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/chanopt.c 2010-10-08 04:16:18 +0200 @@ -3,7 +3,6 @@ #include #include @@ -237,7 +237,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/ #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/common/ctcp.c --- xchat-wdk.orig/src/common/ctcp.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/ctcp.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/ctcp.c 2010-10-08 04:16:18 +0200 @@ -18,7 +18,6 @@ #include @@ -257,7 +257,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/com } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/common/dcc.c --- xchat-wdk.orig/src/common/dcc.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/dcc.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/dcc.c 2010-10-08 04:16:18 +0200 @@ -31,7 +31,6 @@ #include #include @@ -279,7 +279,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/comm return FALSE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/common/ignore.c --- xchat-wdk.orig/src/common/ignore.c 2006-04-15 09:00:39 +0200 -+++ xchat-wdk/src/common/ignore.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/ignore.c 2010-10-08 04:16:18 +0200 @@ -19,7 +19,6 @@ #include #include @@ -290,7 +290,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ignore.c xchat-wdk/src/c #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inbound.c xchat-wdk/src/common/inbound.c --- xchat-wdk.orig/src/common/inbound.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/inbound.c 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/inbound.c 2010-10-08 04:16:18 +0200 @@ -21,7 +21,6 @@ #include #include @@ -301,7 +301,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inbound.c xchat-wdk/src/ #define WANTARPA diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inet.h xchat-wdk/src/common/inet.h --- xchat-wdk.orig/src/common/inet.h 2005-09-03 12:57:48 +0200 -+++ xchat-wdk/src/common/inet.h 2010-10-07 21:25:43 +0200 ++++ xchat-wdk/src/common/inet.h 2010-10-08 04:16:18 +0200 @@ -24,9 +24,8 @@ #ifdef USE_IPV6 #include @@ -315,7 +315,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/inet.h xchat-wdk/src/com #define set_blocking(sok) { \ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/msproxy.c xchat-wdk/src/common/msproxy.c --- xchat-wdk.orig/src/common/msproxy.c 2006-04-16 17:32:17 +0200 -+++ xchat-wdk/src/common/msproxy.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/msproxy.c 2010-10-08 04:16:18 +0200 @@ -26,7 +26,6 @@ #include #include @@ -326,7 +326,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/msproxy.c xchat-wdk/src/ #define WANTSOCKET diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/network.c xchat-wdk/src/common/network.c --- xchat-wdk.orig/src/common/network.c 2006-04-16 10:11:26 +0200 -+++ xchat-wdk/src/common/network.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/network.c 2010-10-08 04:16:18 +0200 @@ -21,7 +21,6 @@ #include #include @@ -337,7 +337,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/network.c xchat-wdk/src/ #include "../../config.h" /* grab USE_IPV6 and LOOKUPD defines */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/notify.c xchat-wdk/src/common/notify.c --- xchat-wdk.orig/src/common/notify.c 2008-06-08 09:58:58 +0200 -+++ xchat-wdk/src/common/notify.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/notify.c 2010-10-08 04:16:18 +0200 @@ -22,7 +22,6 @@ #include #include @@ -348,7 +348,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/notify.c xchat-wdk/src/c #include "xchat.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/outbound.c xchat-wdk/src/common/outbound.c --- xchat-wdk.orig/src/common/outbound.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/outbound.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/outbound.c 2010-10-09 02:06:49 +0200 @@ -32,7 +32,6 @@ #include #endif @@ -359,7 +359,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/outbound.c xchat-wdk/src #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin-timer.c xchat-wdk/src/common/plugin-timer.c --- xchat-wdk.orig/src/common/plugin-timer.c 2005-02-02 11:03:51 +0100 -+++ xchat-wdk/src/common/plugin-timer.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/plugin-timer.c 2010-10-08 04:16:18 +0200 @@ -1,7 +1,7 @@ #include #include @@ -371,7 +371,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin-timer.c xchat-wdk #define strcasecmp stricmp diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin.c xchat-wdk/src/common/plugin.c --- xchat-wdk.orig/src/common/plugin.c 2010-08-14 03:46:21 +0200 -+++ xchat-wdk/src/common/plugin.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/plugin.c 2010-10-08 04:16:18 +0200 @@ -34,7 +34,7 @@ #include "text.h" #define PLUGIN_C @@ -392,7 +392,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/plugin.c xchat-wdk/src/c { diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/src/common/proto-irc.c --- xchat-wdk.orig/src/common/proto-irc.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/proto-irc.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/proto-irc.c 2010-10-08 04:16:18 +0200 @@ -18,7 +18,6 @@ /* IRC RFC1459(+commonly used extensions) protocol implementation */ @@ -403,7 +403,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/proto-irc.c xchat-wdk/sr #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/common/server.c --- xchat-wdk.orig/src/common/server.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/server.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/server.c 2010-10-08 04:16:18 +0200 @@ -26,7 +26,6 @@ #include #include @@ -436,7 +436,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/server.c xchat-wdk/src/c diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/servlist.c xchat-wdk/src/common/servlist.c --- xchat-wdk.orig/src/common/servlist.c 2010-05-16 09:43:49 +0200 -+++ xchat-wdk/src/common/servlist.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/servlist.c 2010-10-08 04:16:18 +0200 @@ -21,7 +21,6 @@ #include #include @@ -447,7 +447,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/servlist.c xchat-wdk/src #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/common/ssl.c --- xchat-wdk.orig/src/common/ssl.c 2007-03-28 10:35:06 +0200 -+++ xchat-wdk/src/common/ssl.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/ssl.c 2010-10-08 04:16:18 +0200 @@ -17,12 +17,12 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -464,7 +464,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/comm #ifndef HAVE_SNPRINTF diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/common/text.c --- xchat-wdk.orig/src/common/text.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/text.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/text.c 2010-10-08 04:16:18 +0200 @@ -19,13 +19,11 @@ #include #include @@ -542,7 +542,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/com diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/common/util.c --- xchat-wdk.orig/src/common/util.c 2008-02-07 02:50:37 +0100 -+++ xchat-wdk/src/common/util.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/util.c 2010-10-08 04:16:18 +0200 @@ -16,11 +16,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -628,7 +628,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/common/xchat.c --- xchat-wdk.orig/src/common/xchat.c 2008-06-08 09:58:58 +0200 -+++ xchat-wdk/src/common/xchat.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/xchat.c 2010-10-08 04:16:18 +0200 @@ -22,7 +22,6 @@ #include #include @@ -656,7 +656,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/co "NAME LEAVE\n" "CMD part &2\n\n"\ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/common/xchat.h --- xchat-wdk.orig/src/common/xchat.h 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/common/xchat.h 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/common/xchat.h 2010-10-08 04:16:18 +0200 @@ -12,12 +12,14 @@ #include "history.h" @@ -694,7 +694,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/co unsigned int ctcp_time_limit; /*seconds of floods */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe-gtk/about.c --- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 09:43:49 +0200 -+++ xchat-wdk/src/fe-gtk/about.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/about.c 2010-10-08 04:16:18 +0200 @@ -39,6 +39,7 @@ #include "../common/xchat.h" @@ -770,7 +770,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/fe-gtk/banlist.c --- xchat-wdk.orig/src/fe-gtk/banlist.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/banlist.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/banlist.c 2010-10-08 04:16:18 +0200 @@ -19,7 +19,6 @@ #include #include @@ -781,7 +781,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/banlist.c xchat-wdk/src/ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanlist.c xchat-wdk/src/fe-gtk/chanlist.c --- xchat-wdk.orig/src/fe-gtk/chanlist.c 2008-02-24 04:46:02 +0100 -+++ xchat-wdk/src/fe-gtk/chanlist.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/chanlist.c 2010-10-08 04:16:18 +0200 @@ -19,7 +19,6 @@ #include #include @@ -792,7 +792,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanlist.c xchat-wdk/src diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanview-tabs.c xchat-wdk/src/fe-gtk/chanview-tabs.c --- xchat-wdk.orig/src/fe-gtk/chanview-tabs.c 2005-11-21 06:25:39 +0100 -+++ xchat-wdk/src/fe-gtk/chanview-tabs.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/chanview-tabs.c 2010-10-08 04:16:18 +0200 @@ -144,8 +144,8 @@ for (i = adj->value; ((i > new_value) && (tab_left_is_moving)); i -= 0.1) { @@ -817,7 +817,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/chanview-tabs.c xchat-wd gtk_adjustment_set_value (adj, new_value); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/editlist.c xchat-wdk/src/fe-gtk/editlist.c --- xchat-wdk.orig/src/fe-gtk/editlist.c 2006-03-13 09:33:45 +0100 -+++ xchat-wdk/src/fe-gtk/editlist.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/editlist.c 2010-10-08 04:16:18 +0200 @@ -19,7 +19,6 @@ #include #include @@ -828,7 +828,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/editlist.c xchat-wdk/src #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.c xchat-wdk/src/fe-gtk/fe-gtk.c --- xchat-wdk.orig/src/fe-gtk/fe-gtk.c 2010-08-14 03:46:21 +0200 -+++ xchat-wdk/src/fe-gtk/fe-gtk.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/fe-gtk.c 2010-10-08 04:16:18 +0200 @@ -19,7 +19,6 @@ #include #include @@ -865,7 +865,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.c xchat-wdk/src/f sess = find_dialog (serv_list->data, "(warnings)"); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.h xchat-wdk/src/fe-gtk/fe-gtk.h --- xchat-wdk.orig/src/fe-gtk/fe-gtk.h 2010-05-30 08:31:29 +0200 -+++ xchat-wdk/src/fe-gtk/fe-gtk.h 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/fe-gtk.h 2010-10-08 04:16:18 +0200 @@ -4,7 +4,7 @@ /* If you're compiling this for Windows, your release is un-official * and not condoned. Please don't use the XChat name. Make up your @@ -877,7 +877,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fe-gtk.h xchat-wdk/src/f #endif diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fkeys.c xchat-wdk/src/fe-gtk/fkeys.c --- xchat-wdk.orig/src/fe-gtk/fkeys.c 2008-02-24 06:09:34 +0100 -+++ xchat-wdk/src/fe-gtk/fkeys.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/fkeys.c 2010-10-08 04:16:18 +0200 @@ -20,7 +20,6 @@ #include #include @@ -888,7 +888,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/fkeys.c xchat-wdk/src/fe #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/gtkutil.c xchat-wdk/src/fe-gtk/gtkutil.c --- xchat-wdk.orig/src/fe-gtk/gtkutil.c 2009-07-18 14:38:10 +0200 -+++ xchat-wdk/src/fe-gtk/gtkutil.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/gtkutil.c 2010-10-08 04:16:18 +0200 @@ -22,7 +22,6 @@ #include #include @@ -899,7 +899,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/gtkutil.c xchat-wdk/src/ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe-gtk/joind.c --- xchat-wdk.orig/src/fe-gtk/joind.c 2006-12-26 05:56:55 +0100 -+++ xchat-wdk/src/fe-gtk/joind.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/joind.c 2010-10-08 04:16:18 +0200 @@ -9,7 +9,6 @@ #include @@ -910,7 +910,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/joind.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/fe-gtk/maingui.c --- xchat-wdk.orig/src/fe-gtk/maingui.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/maingui.c 2010-10-08 04:16:18 +0200 @@ -214,60 +214,10 @@ away_list = mg_attr_list_create (&colors[COL_AWAY], FALSE); } @@ -1052,7 +1052,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/maingui.c xchat-wdk/src/ } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/menu.c xchat-wdk/src/fe-gtk/menu.c --- xchat-wdk.orig/src/fe-gtk/menu.c 2010-05-16 06:24:24 +0200 -+++ xchat-wdk/src/fe-gtk/menu.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/menu.c 2010-10-08 04:16:18 +0200 @@ -20,7 +20,6 @@ #include #include @@ -1063,7 +1063,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/menu.c xchat-wdk/src/fe- #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/palette.c xchat-wdk/src/fe-gtk/palette.c --- xchat-wdk.orig/src/fe-gtk/palette.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/palette.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/palette.c 2010-10-08 04:16:18 +0200 @@ -18,7 +18,6 @@ #include @@ -1074,7 +1074,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/palette.c xchat-wdk/src/ #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugin-tray.c xchat-wdk/src/fe-gtk/plugin-tray.c --- xchat-wdk.orig/src/fe-gtk/plugin-tray.c 2010-08-14 03:46:21 +0200 -+++ xchat-wdk/src/fe-gtk/plugin-tray.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/plugin-tray.c 2010-10-08 04:16:18 +0200 @@ -1,8 +1,7 @@ /* Copyright (C) 2006-2007 Peter Zelezny. */ @@ -1201,7 +1201,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugin-tray.c xchat-wdk/ return 1; /* return 1 for success */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugingui.c xchat-wdk/src/fe-gtk/plugingui.c --- xchat-wdk.orig/src/fe-gtk/plugingui.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/plugingui.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/plugingui.c 2010-10-08 04:16:18 +0200 @@ -35,7 +35,7 @@ #include "../common/xchat.h" #define PLUGIN_C @@ -1213,7 +1213,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/plugingui.c xchat-wdk/sr #include "../common/outbound.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/rawlog.c xchat-wdk/src/fe-gtk/rawlog.c --- xchat-wdk.orig/src/fe-gtk/rawlog.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/rawlog.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/rawlog.c 2010-10-08 04:16:18 +0200 @@ -19,7 +19,6 @@ #include #include @@ -1224,7 +1224,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/rawlog.c xchat-wdk/src/f #include "fe-gtk.h" diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/search.c xchat-wdk/src/fe-gtk/search.c --- xchat-wdk.orig/src/fe-gtk/search.c 2010-05-16 05:20:22 +0200 -+++ xchat-wdk/src/fe-gtk/search.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/search.c 2010-10-08 04:16:18 +0200 @@ -153,7 +153,7 @@ _("_Find")); g_object_set_data (G_OBJECT (wid), "e", entry); @@ -1236,7 +1236,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/search.c xchat-wdk/src/f } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/servlistgui.c xchat-wdk/src/fe-gtk/servlistgui.c --- xchat-wdk.orig/src/fe-gtk/servlistgui.c 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/fe-gtk/servlistgui.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/servlistgui.c 2010-10-08 04:16:18 +0200 @@ -1782,7 +1782,7 @@ gtk_container_add (GTK_CONTAINER (hbox), checkbutton_fav); g_signal_connect (G_OBJECT (checkbutton_fav), "toggled", @@ -1248,7 +1248,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/servlistgui.c xchat-wdk/ gtk_box_set_spacing (GTK_BOX (vbuttonbox2), 3); diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe-gtk/setup.c --- xchat-wdk.orig/src/fe-gtk/setup.c 2008-02-08 10:04:45 +0100 -+++ xchat-wdk/src/fe-gtk/setup.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/setup.c 2010-10-08 04:16:18 +0200 @@ -109,13 +109,13 @@ N_("Give each person on IRC a different color"),0,0}, {ST_TOGGLR, N_("Indent nick names"), P_OFFINTNL(indent_nicks), @@ -1302,7 +1302,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/setup.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat-wdk/src/fe-gtk/sexy-spell-entry.c --- xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c 2006-07-17 07:51:02 +0200 -+++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/sexy-spell-entry.c 2010-10-08 04:16:18 +0200 @@ -31,6 +31,8 @@ /*#include "gtkspell-iso-codes.h" #include "sexy-marshal.h"*/ @@ -1329,7 +1329,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/sexy-spell-entry.c xchat have_enchant = TRUE; diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/xtext.c xchat-wdk/src/fe-gtk/xtext.c --- xchat-wdk.orig/src/fe-gtk/xtext.c 2008-08-29 13:24:17 +0200 -+++ xchat-wdk/src/fe-gtk/xtext.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-gtk/xtext.c 2010-10-08 04:16:18 +0200 @@ -42,7 +42,6 @@ #include #include @@ -1349,7 +1349,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/xtext.c xchat-wdk/src/fe diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-text/fe-text.c xchat-wdk/src/fe-text/fe-text.c --- xchat-wdk.orig/src/fe-text/fe-text.c 2008-08-29 13:24:17 +0200 -+++ xchat-wdk/src/fe-text/fe-text.c 2010-10-07 21:25:44 +0200 ++++ xchat-wdk/src/fe-text/fe-text.c 2010-10-08 04:16:18 +0200 @@ -22,9 +22,13 @@ #ifdef HAVE_STRINGS_H #include -- cgit 1.4.1 From 55bc4b8ea6310b8e9d599e96bbb71765eb2d2501 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Sat, 9 Oct 2010 04:49:08 +0200 Subject: disable dcc fast send as it doesn't work --- xchat-wdk.patch | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index dfe326cf..60789836 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -140,7 +140,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/plugins/xdcc/xdcc.c xchat-wdk/plugi diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src/common/cfgfiles.c --- xchat-wdk.orig/src/common/cfgfiles.c 2010-08-07 09:14:45 +0200 -+++ xchat-wdk/src/common/cfgfiles.c 2010-10-09 04:47:38 +0200 ++++ xchat-wdk/src/common/cfgfiles.c 2010-10-09 04:48:33 +0200 @@ -17,7 +17,6 @@ */ @@ -187,6 +187,15 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src } return xdir_fs; } +@@ -393,7 +398,7 @@ + {"dcc_blocksize", P_OFFINT (dcc_blocksize), TYPE_INT}, + {"dcc_completed_dir", P_OFFSET (dcc_completed_dir), TYPE_STR}, + {"dcc_dir", P_OFFSET (dccdir), TYPE_STR}, +- {"dcc_fast_send", P_OFFINT (fastdccsend), TYPE_BOOL}, ++ /* {"dcc_fast_send", P_OFFINT (fastdccsend), TYPE_BOOL}, */ + {"dcc_global_max_get_cps", P_OFFINT (dcc_global_max_get_cps), TYPE_INT}, + {"dcc_global_max_send_cps", P_OFFINT (dcc_global_max_send_cps), TYPE_INT}, + {"dcc_ip", P_OFFSET (dcc_ip_str), TYPE_STR}, @@ -536,6 +541,7 @@ {"tab_chans", P_OFFINT (tabchannels), TYPE_BOOL}, @@ -216,6 +225,15 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/cfgfiles.c xchat-wdk/src {"text_wordwrap", P_OFFINT (wordwrap), TYPE_BOOL}, {0, 0, 0}, +@@ -624,7 +632,7 @@ + prefs.indent_nicks = 1; + prefs.thin_separator = 1; + prefs._tabs_position = 2; /* 2 = left */ +- prefs.fastdccsend = 1; ++ /* prefs.fastdccsend = 1; */ + prefs.wordwrap = 1; + prefs.autosave = 1; + prefs.autodialog = 1; @@ -648,6 +656,7 @@ prefs.dialog_height = 256; prefs.gui_join_dialog = 1; -- cgit 1.4.1 From aab6eb03fcb2157ce771e9cbadc0044c518ca11e Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Sat, 9 Oct 2010 05:18:25 +0200 Subject: fix sending of files bigger than 2GB --- xchat-wdk.patch | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 60789836..7898136a 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -275,7 +275,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/com } diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/common/dcc.c --- xchat-wdk.orig/src/common/dcc.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/dcc.c 2010-10-08 04:16:18 +0200 ++++ xchat-wdk/src/common/dcc.c 2010-10-09 05:17:54 +0200 @@ -31,7 +31,6 @@ #include #include @@ -284,7 +284,15 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/dcc.c xchat-wdk/src/comm #include #define WANTSOCKET -@@ -1983,9 +1982,7 @@ +@@ -57,6 +56,7 @@ + + #ifdef USE_DCC64 + #define BIG_STR_TO_INT(x) strtoull(x,NULL,10) ++#define stat _stat64 + #else + #define BIG_STR_TO_INT(x) strtoul(x,NULL,10) + #endif +@@ -1983,9 +1983,7 @@ return TRUE; /* now handle case-insensitive Filesystems: HFS+, FAT */ -- cgit 1.4.1 From 1a1caa29fefc0c0f15223c7792238f6cd358528e Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Sat, 9 Oct 2010 10:55:05 +0200 Subject: nicer windows version string --- xchat-wdk.patch | 86 +++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 75 insertions(+), 11 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 7898136a..4a0d6c31 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -568,7 +568,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/com diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/common/util.c --- xchat-wdk.orig/src/common/util.c 2008-02-07 02:50:37 +0100 -+++ xchat-wdk/src/common/util.c 2010-10-08 04:16:18 +0200 ++++ xchat-wdk/src/common/util.c 2010-10-09 10:48:59 +0200 @@ -16,11 +16,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -615,16 +615,76 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com #ifdef USE_DEBUG -@@ -631,22 +632,32 @@ - OSVERSIONINFO osvi; +@@ -628,26 +629,91 @@ + get_cpu_str (void) + { + static char verbuf[64]; +- OSVERSIONINFO osvi; ++ static char winver[28]; ++ OSVERSIONINFOEX osvi; SYSTEM_INFO si; double mhz; + int cpu_arch; - osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFO); +- osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFO); ++ osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEX); GetVersionEx (&osvi); GetSystemInfo (&si); ++ switch (osvi.dwMajorVersion) ++ { ++ case 5: ++ switch (osvi.dwMinorVersion) ++ { ++ case 1: ++ strcpy (winver, "XP"); ++ break; ++ case 2: ++ if (osvi.wProductType == VER_NT_WORKSTATION) ++ { ++ strcpy (winver, "XP x64 Edition"); ++ } ++ else ++ { ++ if (GetSystemMetrics(SM_SERVERR2) == 0) ++ { ++ strcpy (winver, "Server 2003"); ++ } ++ else ++ { ++ strcpy (winver, "Server 2003 R2"); ++ } ++ } ++ break; ++ } ++ break; ++ case 6: ++ switch (osvi.dwMinorVersion) ++ { ++ case 0: ++ if (osvi.wProductType == VER_NT_WORKSTATION) ++ { ++ strcpy (winver, "Vista"); ++ } ++ else ++ { ++ strcpy (winver, "Server 2008"); ++ } ++ break; ++ case 1: ++ if (osvi.wProductType == VER_NT_WORKSTATION) ++ { ++ strcpy (winver, "7"); ++ } ++ else ++ { ++ strcpy (winver, "Server 2008 R2"); ++ } ++ break; ++ } ++ break; ++ } ++ + if (si.wProcessorArchitecture == 9) + { + cpu_arch = 64; @@ -641,17 +701,21 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com const char *cpuspeedstr = ( mhz > 1000 ) ? "GHz" : "MHz"; - sprintf (verbuf, "Windows %ld.%ld [i%d86/%.2f%s]", - osvi.dwMajorVersion, osvi.dwMinorVersion, si.wProcessorLevel, -+ sprintf (verbuf, "Windows %ld.%ld [x%d/%.2f%s]", -+ osvi.dwMajorVersion, osvi.dwMinorVersion, cpu_arch, - cpuspeed, cpuspeedstr); - } else +- cpuspeed, cpuspeedstr); +- } else - sprintf (verbuf, "Windows %ld.%ld [i%d86]", - osvi.dwMajorVersion, osvi.dwMinorVersion, si.wProcessorLevel); -+ sprintf (verbuf, "Windows %ld.%ld [x%d]", -+ osvi.dwMajorVersion, osvi.dwMinorVersion, cpu_arch); - +- ++ sprintf (verbuf, "Windows %s [x%d/%.2f%s]", winver, cpu_arch, cpuspeed, cpuspeedstr); ++ } ++ else ++ { ++ sprintf (verbuf, "Windows %s [x%d]", winver, cpu_arch); ++ } ++ return verbuf; } + diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.c xchat-wdk/src/common/xchat.c --- xchat-wdk.orig/src/common/xchat.c 2008-06-08 09:58:58 +0200 +++ xchat-wdk/src/common/xchat.c 2010-10-08 04:16:18 +0200 -- cgit 1.4.1 From f2fc869629491d6afecc843d62ff8e3dc21ebb92 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Sat, 9 Oct 2010 11:13:40 +0200 Subject: polish version info further --- xchat-wdk.patch | 63 ++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 25 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 4a0d6c31..512a3385 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -568,7 +568,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/com diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/common/util.c --- xchat-wdk.orig/src/common/util.c 2008-02-07 02:50:37 +0100 -+++ xchat-wdk/src/common/util.c 2010-10-09 10:48:59 +0200 ++++ xchat-wdk/src/common/util.c 2010-10-09 11:07:53 +0200 @@ -16,11 +16,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ @@ -615,22 +615,21 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com #ifdef USE_DEBUG -@@ -628,26 +629,91 @@ +@@ -628,26 +629,79 @@ get_cpu_str (void) { static char verbuf[64]; - OSVERSIONINFO osvi; -+ static char winver[28]; +- SYSTEM_INFO si; ++ static char winver[20]; + OSVERSIONINFOEX osvi; - SYSTEM_INFO si; double mhz; -+ int cpu_arch; - osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFO); + osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEX); GetVersionEx (&osvi); - GetSystemInfo (&si); - +- GetSystemInfo (&si); ++ + switch (osvi.dwMajorVersion) + { + case 5: @@ -684,16 +683,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com + } + break; + } -+ -+ if (si.wProcessorArchitecture == 9) -+ { -+ cpu_arch = 64; -+ } -+ else -+ { -+ cpu_arch = 86; -+ } -+ + mhz = get_mhz (); if (mhz) { @@ -706,11 +696,11 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/util.c xchat-wdk/src/com - sprintf (verbuf, "Windows %ld.%ld [i%d86]", - osvi.dwMajorVersion, osvi.dwMinorVersion, si.wProcessorLevel); - -+ sprintf (verbuf, "Windows %s [x%d/%.2f%s]", winver, cpu_arch, cpuspeed, cpuspeedstr); ++ sprintf (verbuf, "Windows %s [%.2f%s]", winver, cpuspeed, cpuspeedstr); + } + else + { -+ sprintf (verbuf, "Windows %s [x%d]", winver, cpu_arch); ++ sprintf (verbuf, "Windows %s", winver); + } + return verbuf; @@ -784,7 +774,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/co unsigned int ctcp_time_limit; /*seconds of floods */ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe-gtk/about.c --- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 09:43:49 +0200 -+++ xchat-wdk/src/fe-gtk/about.c 2010-10-08 04:16:18 +0200 ++++ xchat-wdk/src/fe-gtk/about.c 2010-10-09 11:11:53 +0200 @@ -39,6 +39,7 @@ #include "../common/xchat.h" @@ -793,7 +783,27 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe #include "palette.h" #include "pixmaps.h" #include "gtkutil.h" -@@ -95,7 +96,7 @@ +@@ -87,6 +88,19 @@ + char buf[512]; + const char *locale = NULL; + extern GtkWindow *parent_window; /* maingui.c */ ++ SYSTEM_INFO si; ++ unsigned short int cpu_arch; ++ ++ GetSystemInfo (&si); ++ ++ if (si.wProcessorArchitecture == 9) ++ { ++ cpu_arch = 64; ++ } ++ else ++ { ++ cpu_arch = 86; ++ } + + if (about) + { +@@ -95,7 +109,7 @@ } about = gtk_dialog_new (); @@ -802,7 +812,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe gtk_window_set_resizable (GTK_WINDOW (about), FALSE); gtk_window_set_title (GTK_WINDOW (about), _("About "DISPLAY_NAME)); if (parent_window) -@@ -114,35 +115,38 @@ +@@ -114,35 +128,40 @@ g_get_charset (&locale); (snprintf) (buf, sizeof (buf), ""DISPLAY_NAME" "PACKAGE_VERSION"\n\n" @@ -811,13 +821,15 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe - /* leave this message to avoid time wasting bug reports! */ - "This version is unofficial and comes with no support.\n\n" -#endif +- "%s\n" + "XChat Base: 2.8.8\n\n" - "%s\n" ++ "OS: %s\n" "Charset: %s " -#ifdef WIN32 "GTK+: %i.%i.%i\n" + "Compiled: "__DATE__"\n" -+ "Portable Mode: %s\n\n" ++ "Portable Mode: %s\n" ++ "Build Type: x%d\n\n" + "This version is unofficial and comes with no support.\n" + "\302\251 1998-2010 Peter \305\275elezn\303\275 <zed@xchat.org>", + get_cpu_str (), @@ -825,7 +837,8 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe + gtk_major_version, + gtk_minor_version, + gtk_micro_version, -+ (portable_mode () ? "Yes" : "No") ++ (portable_mode () ? "Yes" : "No"), ++ cpu_arch #else + "%s\n\n" + "%s\n" -- cgit 1.4.1 From 0c54593493d7bc6d5c1eb27eda6c250c4caa8422 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Sat, 9 Oct 2010 11:41:05 +0200 Subject: nicer version info for ctcp too --- xchat-wdk.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xchat-wdk.patch') diff --git a/xchat-wdk.patch b/xchat-wdk.patch index 512a3385..c06bb6c2 100644 --- a/xchat-wdk.patch +++ b/xchat-wdk.patch @@ -255,7 +255,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/chanopt.c xchat-wdk/src/ #include diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/common/ctcp.c --- xchat-wdk.orig/src/common/ctcp.c 2010-05-30 04:28:04 +0200 -+++ xchat-wdk/src/common/ctcp.c 2010-10-08 04:16:18 +0200 ++++ xchat-wdk/src/common/ctcp.c 2010-10-09 11:36:58 +0200 @@ -18,7 +18,6 @@ #include @@ -269,7 +269,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ctcp.c xchat-wdk/src/com if (!strcasecmp (msg, "VERSION") && !prefs.hidever) { - snprintf (outbuf, sizeof (outbuf), "VERSION xchat "PACKAGE_VERSION" %s", -+ snprintf (outbuf, sizeof (outbuf), "VERSION xchat-wdk "PACKAGE_VERSION" ("PACKAGE_TARNAME") %s", ++ snprintf (outbuf, sizeof (outbuf), "VERSION XChat-WDK "PACKAGE_VERSION" / %s", get_cpu_str ()); serv->p_nctcp (serv, nick, outbuf); } -- cgit 1.4.1