summaryrefslogtreecommitdiff
path: root/chat/xchat/patches
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2005-06-06 11:35:39 +0000
committertron <tron@pkgsrc.org>2005-06-06 11:35:39 +0000
commita2f951795fce24b0f2f3f70c1d88acfe86cd0c27 (patch)
tree9b1d1a1df33030c75a7afe0664d77a53f36368cc /chat/xchat/patches
parent704acedc8fd18b94380fd2724b67a0f6669d4b3c (diff)
downloadpkgsrc-a2f951795fce24b0f2f3f70c1d88acfe86cd0c27.tar.gz
Replace the outdated "xchat" package (version 1.8.11) with the
"xchat2" package (version 2.4.3).
Diffstat (limited to 'chat/xchat/patches')
-rw-r--r--chat/xchat/patches/patch-aa22
-rw-r--r--chat/xchat/patches/patch-ad13
-rw-r--r--chat/xchat/patches/patch-ae178
3 files changed, 0 insertions, 213 deletions
diff --git a/chat/xchat/patches/patch-aa b/chat/xchat/patches/patch-aa
deleted file mode 100644
index 9ef97e40edf..00000000000
--- a/chat/xchat/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.8 2004/04/14 21:27:25 tron Exp $
-
---- src/common/server.c.orig Tue Dec 3 08:06:31 2002
-+++ src/common/server.c Wed Apr 14 23:18:45 2004
-@@ -837,7 +837,7 @@
- struct sock5_connect1 sc1;
- unsigned char *sc2;
- unsigned int packetlen, addrlen;
-- unsigned char buf[10];
-+ unsigned char buf[260];
-
- sc1.version = 5;
- sc1.nmethods = 1;
-@@ -878,7 +878,7 @@
- {
- if (recv (sok, buf, 1, 0) != 1)
- return 1;
-- packetlen = buf[0] + 2;
-+ packetlen = buf[0] + 2; /* can't exceed 260 */
- if (recv (sok, buf, packetlen, 0) != packetlen)
- return 1;
- }
diff --git a/chat/xchat/patches/patch-ad b/chat/xchat/patches/patch-ad
deleted file mode 100644
index 8240a707f05..00000000000
--- a/chat/xchat/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.6 2003/01/12 21:49:07 tron Exp $
-
---- Makefile.in.orig Sun Jan 12 00:53:53 2003
-+++ Makefile.in Sun Jan 12 00:54:15 2003
-@@ -131,7 +131,7 @@
- icondir = $(datadir)/pixmaps
-
- util_DATA = xchat.desktop
--utildir = $(sysconfdir)/X11/applnk/Internet
-+utildir = $(datadir)/gnome/apps/Internet
- subdir = .
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
diff --git a/chat/xchat/patches/patch-ae b/chat/xchat/patches/patch-ae
deleted file mode 100644
index 95e0cf344bf..00000000000
--- a/chat/xchat/patches/patch-ae
+++ /dev/null
@@ -1,178 +0,0 @@
-$NetBSD: patch-ae,v 1.3 2002/07/19 05:22:52 mycroft Exp $
-
---- src/common/perl.c.orig Fri Jul 19 05:14:48 2002
-+++ src/common/perl.c Fri Jul 19 05:15:59 2002
-@@ -256,7 +256,8 @@
- execute_perl (char *function, char *args)
- {
- char *perl_args[2] = { args, NULL }, buf[512];
-- int count, ret_value = 1;
-+ int ret_value = 1;
-+ STRLEN count;
- SV *sv;
-
- dSP;
-@@ -273,7 +274,7 @@
- POPs;
- } else if (count != 1) {
- snprintf(buf, 512, "Perl error: expected 1 value from %s, "
-- "got: %d\n", function, count);
-+ "got: %ld\n", function, (long)count);
- PrintText(perl_sess, buf);
- } else {
- ret_value = POPi;
-@@ -656,7 +657,7 @@
- static XS (XS_IRC_register)
- {
- char *name, *ver, *callback, *unused;
-- int junk;
-+ STRLEN junk;
- struct perlscript *scp;
- dXSARGS;
-
-@@ -680,7 +681,7 @@
- /* IRC::main_print(output) */
- static XS (XS_IRC_print)
- {
-- int junk;
-+ STRLEN junk;
- int i;
- char *output;
- dXSARGS;
-@@ -706,7 +707,7 @@
-
- static XS (XS_IRC_print_with_channel)
- {
-- int junk;
-+ STRLEN junk;
- char *output;
- struct session *sess;
- GSList *list = sess_list;
-@@ -784,7 +785,7 @@
- /* IRC::get_prefs(var) */
- static XS (XS_IRC_get_prefs)
- {
-- int junk;
-+ STRLEN junk;
- char *var;
- int i = 0;
- dXSARGS;
-@@ -827,7 +828,7 @@
- /* IRC::add_message_handler(message_type, handler_name) */
- static XS (XS_IRC_add_message_handler)
- {
-- int junk;
-+ STRLEN junk;
- struct _perl_inbound_handlers *handler;
- dXSARGS;
-
-@@ -842,7 +843,7 @@
- /* IRC::add_command_handler(command_name, handler_name) */
- static XS (XS_IRC_add_command_handler)
- {
-- int junk;
-+ STRLEN junk;
- struct _perl_command_handlers *handler;
- dXSARGS;
-
-@@ -857,7 +858,7 @@
- /* IRC::add_print_handler(print_name, handler_name) */
- static XS (XS_IRC_add_print_handler)
- {
-- int junk;
-+ STRLEN junk;
- struct _perl_print_handlers *handler;
- dXSARGS;
-
-@@ -870,7 +871,7 @@
-
- static XS (XS_IRC_add_timeout_handler)
- {
-- int junk;
-+ STRLEN junk;
- struct _perl_timeout_handlers *handler;
- dXSARGS;
-
-@@ -886,7 +887,7 @@
- static XS (XS_IRC_send_raw)
- {
- char *data;
-- int junk;
-+ STRLEN junk;
- dXSARGS;
-
- if (perl_sess)
-@@ -1033,7 +1034,7 @@
-
- static XS (XS_IRC_user_info)
- {
-- int junk;
-+ STRLEN junk;
- struct User *user;
- char *nick;
- dXSARGS;
-@@ -1065,7 +1066,7 @@
- */
- static XS (XS_IRC_add_user_list)
- {
-- int junk;
-+ STRLEN junk;
- char *ul_channel;
- char *ul_server;
- char *nick;
-@@ -1104,7 +1105,7 @@
- */
- static XS (XS_IRC_sub_user_list)
- {
-- int junk;
-+ STRLEN junk;
- char *channel;
- char *server;
- char *nick;
-@@ -1135,7 +1136,7 @@
- */
- static XS (XS_IRC_clear_user_list)
- {
-- int junk;
-+ STRLEN junk;
- char *channel, *server;
- struct session *sess;
- GSList *list = sess_list;
-@@ -1170,7 +1171,8 @@
- struct session *sess;
- char *channel, *server;
- GSList *list = sess_list;
-- int i = 0, junk;
-+ int i = 0;
-+ STRLEN junk;
- int MinStk = 10;
- dXSARGS;
-
-@@ -1267,7 +1269,7 @@
- static XS (XS_IRC_command)
- {
- char *command;
-- int junk;
-+ STRLEN junk;
- dXSARGS;
-
- if (perl_sess)
-@@ -1284,7 +1286,7 @@
- GSList *list = serv_list;
- struct server *serv;
- char *server, *command;
-- int junk;
-+ STRLEN junk;
- dXSARGS;
-
- server = strdup (SvPV (ST (1), junk));
-@@ -1338,7 +1340,8 @@
- struct session *sess;
- char *channel, *server;
- GSList *list = sess_list;
-- int i = 0, junk;
-+ int i = 0;
-+ STRLEN junk;
- int MinStk = 10;
- dXSARGS;
-