diff options
author | sketch <sketch@pkgsrc.org> | 2010-08-10 20:26:36 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2010-08-10 20:26:36 +0000 |
commit | ad5609664887154b490f9b08123ae85ad0f54723 (patch) | |
tree | e63c80a9b553c7da6b095fb5e7d096be42df8743 /chat/irssi-icb/patches/patch-an | |
parent | 6b522a9bac75c183b1b2f50e10d0ed827c7070a8 (diff) | |
download | pkgsrc-ad5609664887154b490f9b08123ae85ad0f54723.tar.gz |
Add another bunch of patches, including:
- implement commands via irssi signals
- detect /topic on join
- support /names, including on join
- build correctly as .so on OSX
Diffstat (limited to 'chat/irssi-icb/patches/patch-an')
-rw-r--r-- | chat/irssi-icb/patches/patch-an | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/chat/irssi-icb/patches/patch-an b/chat/irssi-icb/patches/patch-an new file mode 100644 index 00000000000..331c543ef13 --- /dev/null +++ b/chat/irssi-icb/patches/patch-an @@ -0,0 +1,38 @@ +$NetBSD: patch-an,v 1.1 2010/08/10 20:26:36 sketch Exp $ + +--- /dev/null 2009-11-03 03:54:19.098165668 +0100 ++++ src/core/icb-nicklist.h 2010-05-21 13:03:14.236221682 +0200 +@@ -0,0 +1,33 @@ ++/* ++ icb-nicklist.h : irssi ++ ++ Copyright (C) 2010 Jonathan Perkin ++ ++ This program is free software; you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 2 of the License, or ++ (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, write to the Free Software ++ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ++*/ ++ ++#ifndef __ICB_NICKLIST_H ++#define __ICB_NICKLIST_H ++ ++#include "nicklist.h" ++ ++/* Add new nick to list */ ++NICK_REC *icb_nicklist_insert(ICB_CHANNEL_REC *channel, const char *nick, ++ int mod); ++ ++void icb_nicklist_init(void); ++void icb_nicklist_deinit(void); ++ ++#endif |