diff options
author | adrianp <adrianp> | 2006-02-19 15:47:35 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2006-02-19 15:47:35 +0000 |
commit | aaaca5858122db4ed0513d5fea8cffc6ca060091 (patch) | |
tree | 30e72fa5707160795d94fccf7a6a43e235c8d681 /chat/dircproxy-devel/patches | |
parent | ee51b747028b2f5c7620e2cf8e8eb105c81a8d66 (diff) | |
download | pkgsrc-aaaca5858122db4ed0513d5fea8cffc6ca060091.tar.gz |
Update to 1.2.0 development version
* Nickserv support
* Binding to a local IP
* a new /dircproxy RELOAD to reload the config
* Add DCC Resume
* Add 005 Support
* Can be build with SSL support (experimental)
* Support for IPV6 (experimental)
* a new /dircproxy NOTIFY command
* Support for MD5 password
Diffstat (limited to 'chat/dircproxy-devel/patches')
-rw-r--r-- | chat/dircproxy-devel/patches/patch-aa | 14 | ||||
-rw-r--r-- | chat/dircproxy-devel/patches/patch-ab | 8 | ||||
-rw-r--r-- | chat/dircproxy-devel/patches/patch-ac | 10 |
3 files changed, 16 insertions, 16 deletions
diff --git a/chat/dircproxy-devel/patches/patch-aa b/chat/dircproxy-devel/patches/patch-aa index cfcba4a19eb..1c98c4923b9 100644 --- a/chat/dircproxy-devel/patches/patch-aa +++ b/chat/dircproxy-devel/patches/patch-aa @@ -1,11 +1,11 @@ -$NetBSD: patch-aa,v 1.1.1.1 2005/04/03 14:18:02 adrianp Exp $ +$NetBSD: patch-aa,v 1.2 2006/02/19 15:47:35 adrianp Exp $ ---- conf/Makefile.in 2002-08-18 02:41:15.000000000 +0100 -+++ conf/Makefile.in.orig -@@ -33,7 +33,7 @@ infodir = @infodir@ - mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include +--- conf/Makefile.in.orig 2006-02-18 22:39:32.000000000 +0000 ++++ conf/Makefile.in +@@ -17,7 +17,7 @@ + srcdir = @srcdir@ + top_srcdir = @top_srcdir@ + VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ +pkgdatadir = $(datadir)/examples/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ diff --git a/chat/dircproxy-devel/patches/patch-ab b/chat/dircproxy-devel/patches/patch-ab index 0a7073317b1..b9628d15a42 100644 --- a/chat/dircproxy-devel/patches/patch-ab +++ b/chat/dircproxy-devel/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.1.1.1 2005/04/03 14:18:02 adrianp Exp $ +$NetBSD: patch-ab,v 1.2 2006/02/19 15:47:35 adrianp Exp $ ---- src/irc_net.h.orig 2002-02-06 05:07:42.000000000 -0500 +--- src/irc_net.h.orig 2006-02-18 22:39:32.000000000 +0000 +++ src/irc_net.h -@@ -21,6 +21,10 @@ +@@ -23,6 +23,10 @@ #include <arpa/inet.h> #include <time.h> @@ -12,4 +12,4 @@ $NetBSD: patch-ab,v 1.1.1.1 2005/04/03 14:18:02 adrianp Exp $ + #include "irc_prot.h" #include "stringex.h" - + #include "net.h" diff --git a/chat/dircproxy-devel/patches/patch-ac b/chat/dircproxy-devel/patches/patch-ac index 2798eed3967..c8ce05660cd 100644 --- a/chat/dircproxy-devel/patches/patch-ac +++ b/chat/dircproxy-devel/patches/patch-ac @@ -1,15 +1,15 @@ -$NetBSD: patch-ac,v 1.1 2005/07/30 21:18:33 rillig Exp $ +$NetBSD: patch-ac,v 1.2 2006/02/19 15:47:35 adrianp Exp $ Conditional lvalues aren't portable enough for IRIX 6.5. ---- src/irc_server.c.orig Sat Aug 17 23:48:03 2002 -+++ src/irc_server.c Sat Jul 30 23:14:18 2005 -@@ -699,7 +699,7 @@ static int _ircserver_gotmsg(struct ircp +--- src/irc_server.c.orig 2006-02-18 22:39:32.000000000 +0000 ++++ src/irc_server.c +@@ -788,7 +788,7 @@ static int _ircserver_gotmsg(struct ircp free(s); /* Was in the squelch list, so remove it and stop looking */ - s = (l ? l->next : p->squelch_modes) = n; -+ s = *(l ? &(l->next) : &(p->squelch_modes)) = n; ++ s = *(l ? &(l->next) : &(p->squelch_modes)) = n; squelch = 1; break; } else { |