summaryrefslogtreecommitdiff
path: root/chat/ircII/patches
diff options
context:
space:
mode:
authormrg <mrg@pkgsrc.org>2002-03-21 15:29:50 +0000
committermrg <mrg@pkgsrc.org>2002-03-21 15:29:50 +0000
commit8b40b6ab47d8984876a6598c99d0a7550099d83a (patch)
treeeb2b392b86769f58588581f431acd9213802315a /chat/ircII/patches
parentb951b0bb7ba9dc81104a778e4258adc510c3ad13 (diff)
downloadpkgsrc-8b40b6ab47d8984876a6598c99d0a7550099d83a.tar.gz
update to ircII 20020321. from the NEWS file:
o /save -all works properly now o new server server groups can be listed in $IRCSERVER by prefixing :group: to the server name, eg, IRC/:lamenet:irc.lamenet.org:666 o fix /set status_voice o add /server -group, allowing proper multi-network configuration o fix tabkey for people who join channels o fix many $functions() to work properly in multi-server context, and no longer use the current window o enhance $ignored() o add missing docs for /set tab, decrypt_program, show_stars and iso2022_support o new /on window_list for /window list output hookery o /window create now takes -xterm and -screen flags to force either a xterm or screen window to be created, rather than forcing the choice o /on flood support for ICB
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r--chat/ircII/patches/patch-ad55
1 files changed, 0 insertions, 55 deletions
diff --git a/chat/ircII/patches/patch-ad b/chat/ircII/patches/patch-ad
deleted file mode 100644
index ad3d16fbe7c..00000000000
--- a/chat/ircII/patches/patch-ad
+++ /dev/null
@@ -1,55 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2002/03/10 14:06:43 mrg Exp $
-
-Index: source/icb.c
-===================================================================
-RCS file: /home/cvs/ircii/source/icb.c,v
-retrieving revision 2.47
-diff -p -r2.47 icb.c
-*** source/icb.c 2002/02/05 18:14:45 2.47
---- source/icb.c 2002/03/10 14:00:50
-*************** IRCII_RCSID("@(#)$eterna: icb.c,v 2.47 2
-*** 62,67 ****
---- 62,68 ----
- #include "icb.h"
- #include "hook.h"
- #include "ignore.h"
-+ #include "flood.h"
-
- /* sender functions */
- static void icb_put_login _((u_char *, u_char *, u_char *, u_char *, u_char *));
-*************** icb_got_public(line)
-*** 154,160 ****
- break;
- }
-
-! if (do_hook(PUBLIC_LIST, "%s %s %s", ap[0], get_server_icbgroup(parsing_server_index), ap[1]))
- put_it("%s<%s>%s %s", high, ap[0], high, ap[1]);
- out:
- set_lastlog_msg_level(level);
---- 155,162 ----
- break;
- }
-
-! if (check_flooding(ap[0], PUBLIC_FLOOD, ap[1]) &&
-! do_hook(PUBLIC_LIST, "%s %s %s", ap[0], get_server_icbgroup(parsing_server_index), ap[1]))
- put_it("%s<%s>%s %s", high, ap[0], high, ap[1]);
- out:
- set_lastlog_msg_level(level);
-*************** icb_got_msg(line)
-*** 192,198 ****
- break;
- }
-
-! if (do_hook(MSG_LIST, "%s %s", ap[0], ap[1]))
- {
- if (away_set)
- {
---- 194,201 ----
- break;
- }
-
-! if (check_flooding(ap[0], MSG_FLOOD, ap[1]) &&
-! do_hook(MSG_LIST, "%s %s", ap[0], ap[1]))
- {
- if (away_set)
- {