summaryrefslogtreecommitdiff
path: root/chat/irssi/patches
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2014-06-07 23:49:47 +0000
committerryoon <ryoon@pkgsrc.org>2014-06-07 23:49:47 +0000
commitafeb10b35952151142f523f2db11c315b4e97f75 (patch)
tree25dd728a4845e8140ea5222314b22bd0ab01c820 /chat/irssi/patches
parent8690d6322c3d60d70e6bb17b6400a0afcc42448f (diff)
downloadpkgsrc-afeb10b35952151142f523f2db11c315b4e97f75.tar.gz
Update chat/irssi to 0.8.16.
PR pkg/48866 from Leonardo Taccari Changes (from http://www.irssi.org/news/ChangeLog ): Features: * Add -noautosendcmd to /SERVER and /CONNECT. Passing this option will force Irssi to not execute the content of the autosendcmd chatnet-setting upon connect. * Accept names replies with nick!user@host instead of just nick, if they are enabled (see bug #805). * Set window binds for channel items as sticky when re-creating window binds as part of /layout save. This fixes the bug where previously saved channel windows forgets their window number upon reconnect. * Add experimental support for DNSSEC DANE validation of certificates. * Strip the argument for boolean options (see bug #769). * Freenode have been readded to the list of networks in the default configuration file. * Disabled support for the insecure SSLv2 protocol. * Various documentation enhancements. * Add -ssl_pass to /connect and /server (see bug #305). Bugfixes: * Fix crashing bug that can happen if the terminal height decreases before the first window is created. * Fixed minor compiler warnings. * Fixed possible crashing bug when processing an octal escape sequence. * Fixed the /ignore -network option (see bug #748). * Fixed signal handling for /exec'd commands. Irssi now sends the signal to the process group id instead of the process id. * Fixed segfault generated by SSL disconnections (see bug #752). * Fix compilation when build with -Werror=format-security. Patch by Jaroslav Skarvada.
Diffstat (limited to 'chat/irssi/patches')
-rw-r--r--chat/irssi/patches/patch-ae15
1 files changed, 0 insertions, 15 deletions
diff --git a/chat/irssi/patches/patch-ae b/chat/irssi/patches/patch-ae
deleted file mode 100644
index 980f8d607d0..00000000000
--- a/chat/irssi/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.6 2009/07/27 12:59:44 obache Exp $
-
-Accept ENOTCONN as indicating socket is not ready for write.
-
---- src/core/network.c.orig 2005-11-19 23:45:08.000000000 +0100
-+++ src/core/network.c
-@@ -373,7 +373,7 @@ int net_transmit(GIOChannel *handle, con
-
- err = g_io_channel_write(handle, (char *) data, len, &ret);
- if (err == G_IO_ERROR_AGAIN ||
-- (err != 0 && (errno == EINTR || errno == EPIPE)))
-+ (err != 0 && (errno == EINTR || errno == EPIPE || errno == ENOTCONN)))
- return 0;
-
- return err == 0 ? (int)ret : -1;