summaryrefslogtreecommitdiff
path: root/chat/ircII/patches
diff options
context:
space:
mode:
authormrg <mrg>2000-12-31 06:45:17 +0000
committermrg <mrg>2000-12-31 06:45:17 +0000
commita27a848f0b7e9dab44ab26b0e5bbabbc1e7f440c (patch)
treeb6b9c27c84c329340c4bf1c8a02baeca08dedab8 /chat/ircII/patches
parentd3d552df7fe00fee7f4301da5bfc7a780c304133 (diff)
downloadpkgsrc-a27a848f0b7e9dab44ab26b0e5bbabbc1e7f440c.tar.gz
update to 20001231. changes include:
- new -t/-T (already in pkgsrc version) - cygwin termcap support - severel new core dumps fixed - support for ICB groups called, eg, "/quit" - better mIRC colour support
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r--chat/ircII/patches/patch-ab12
-rw-r--r--chat/ircII/patches/patch-ad34
-rw-r--r--chat/ircII/patches/patch-ae35
-rw-r--r--chat/ircII/patches/patch-af34
4 files changed, 0 insertions, 115 deletions
diff --git a/chat/ircII/patches/patch-ab b/chat/ircII/patches/patch-ab
deleted file mode 100644
index 9e7c73449be..00000000000
--- a/chat/ircII/patches/patch-ab
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2000/12/15 00:36:32 wiz Exp $
-
---- include/irc.h.orig Tue Jul 18 19:12:16 2000
-+++ include/irc.h Mon Sep 18 00:12:27 2000
-@@ -334,6 +334,7 @@
- extern int current_numeric;
- extern int qflag;
- extern int bflag;
-+extern int tflag;
- extern struct in_addr local_ip_address;
- extern int client_default_icb;
-
diff --git a/chat/ircII/patches/patch-ad b/chat/ircII/patches/patch-ad
deleted file mode 100644
index 5ebfe693f18..00000000000
--- a/chat/ircII/patches/patch-ad
+++ /dev/null
@@ -1,34 +0,0 @@
-$NetBSD: patch-ad,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
-
---- source/irc.c.orig Thu Aug 31 13:52:49 2000
-+++ source/irc.c Mon Sep 18 00:12:27 2000
-@@ -154,6 +154,7 @@
- * message anywhere */
- int qflag; /* set if we ignore .ircrc */
- int bflag; /* set if we load .ircrc before connecting */
-+int tflag; /* don't use termcap ti/te sequences */
- time_t idle_time; /* last time the user hit a key */
- time_t start_time; /* epoch time we started */
-
-@@ -207,6 +208,8 @@
- -b\t\tload .ircrc before connecting to a server\n\
- -l <file>\tloads <file> in place of your .ircrc\n\
- -I <file>\tloads <file> in place of your .ircquick\n\
-+ -t\t\tdo not use termcap ti and te sequences at startup\n\
-+ -T\t\tuse termcap ti and te sequences at startup (default)\n\
- -icb\t\tuse ICB connections by default\n\
- -irc\t\tuse IRC connections by default\n\
- icb [same switches] (default to -icb)\n";
-@@ -538,6 +541,12 @@
- break;
- case 'S':
- using_server_process = 1;
-+ break;
-+ case 't':
-+ tflag = 1;
-+ break;
-+ case 'T':
-+ tflag = 0;
- break;
- case 'q':
- if (bflag)
diff --git a/chat/ircII/patches/patch-ae b/chat/ircII/patches/patch-ae
deleted file mode 100644
index cc3a26b187a..00000000000
--- a/chat/ircII/patches/patch-ae
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
-
---- source/term.c.orig Sun Jun 11 09:04:56 2000
-+++ source/term.c Mon Sep 18 00:12:27 2000
-@@ -339,7 +339,7 @@
-
- if (CS)
- tputs_x(tgoto(CS, LI - 1, 0));
-- if (TE)
-+ if (!tflag && TE)
- tputs_x(TE);
- term_move_cursor(0, LI - 1);
- term_reset_flag = 1;
-@@ -381,7 +381,7 @@
- # endif /* mips */
- #endif /* SIGSTOP && SIGTSTP */
-
-- if (TI)
-+ if (!tflag && TI)
- tputs_x(TI);
- }
-
-@@ -461,10 +461,10 @@
- term_clear_to_eol = term_null_function;
-
- TE = tgetstr("te", &ptr);
-- if (TE && (TI = tgetstr("ti", &ptr)) != (char *) 0)
-+ if (!tflag && TE && (TI = tgetstr("ti", &ptr)) != (char *) 0 )
- tputs_x(TI);
- else
-- TI = (char *) 0;
-+ TE = TI = (char *) 0;
-
- /* if ((ND = tgetstr("nd", &ptr)) || (ND = tgetstr("kr", &ptr))) */
- if ((ND = tgetstr("nd", &ptr)) != NULL)
diff --git a/chat/ircII/patches/patch-af b/chat/ircII/patches/patch-af
deleted file mode 100644
index c90d635108d..00000000000
--- a/chat/ircII/patches/patch-af
+++ /dev/null
@@ -1,34 +0,0 @@
-$NetBSD: patch-af,v 1.1.1.1 2000/12/15 00:36:33 wiz Exp $
-
---- doc/ircII.1.orig Thu Jul 13 06:57:30 2000
-+++ doc/ircII.1 Mon Sep 18 16:41:29 2000
-@@ -14,6 +14,8 @@
- .RB [ \-F ]
- .RB [ \-s ]
- .RB [ \-S ]
-+.RB [ \-t ]
-+.RB [ \-T ]
- .RB [ \-d ]
- .IR [ nickname
- .IR [ "server list" ]]
-@@ -76,6 +78,20 @@
- Start up the ircio process to connect to the
- .I IRC
- server.
-+.TP
-+.B \-t
-+Don't use the termcap
-+.I ti
-+and
-+.I te
-+sequences when starting and exiting.
-+.TP
-+.B \-T
-+Do use the termcap
-+.I ti
-+and
-+.I te
-+sequences when starting and exiting if they exist (default).
- .TP
- .B \-d
- Start in "dumb" mode.