diff options
author | zuntum <zuntum@pkgsrc.org> | 2005-06-25 14:48:45 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2005-06-25 14:48:45 +0000 |
commit | 96c7aaa94bf3b6fe853ea35232acd83447204fe0 (patch) | |
tree | a9327ac65aad63969f8c9b56668d168d009eaf7d /chat/bnc/Makefile | |
parent | 89aded8dec71b937fe192ac808a69136ab800ebd (diff) | |
download | pkgsrc-96c7aaa94bf3b6fe853ea35232acd83447204fe0.tar.gz |
Update chat/bnc to version 2.9.4
Changes:
2.9.4
(1) SSL support can now be used incoming.
(2) Added three new configuration entries to handle new features:
listenex [--ssl][--limit <maxusers>][--localhost <hostname>] <port>
privatekey <filename>
publickey <filename>
2.9.3
(1) SECURITY FIX: FD_SETSIZE overflow DOS
(2) SSL support can now be used if configured with --with-ssl
SSL connection is done by passing -s
ex. /quote conn -s ircs.server
Note: this is only partially secure since SSL is only supported
outgoing.
2.9.2
(1) Added flush to logging
(2) General code changes to fix compiling on some compilers
(3) Fixed problems binding to listening address
2.9.1
(1) SECURITY FIX: password check, was only letting incorrect passwords in
(2) Fixed IP binding on listen
2.9.0
(1) Added trailing newlines to log records
(2) Added extra error handling on accepting connections
(3) Fixed buffer overflow in getnickuserhost (reported by Leon Juranic)
(4) Added extra check for gethostbyname2
(5) Made password check more thorough
(6) Fixed ipv6 dns resolving to random ipv4
2.8.9
(1) Fixed backspace security flaw (reported by Yak)
(2) Fixed compile errors related to compound statements
(3) Rewrote logic of /vip command
(4) Rewrote docked session listing code
2.8.8
(1) Added support for setting a specific IP to listen on
(listen <[host:]port> [maxusers])
(2) Enhanced bncsetup to use new conf format and new question to handle
specific host entering.
(3) Changed the Makefile to list libraries last, some crypt libraries
predefined their own main function which prevented compiling.
(4) Reorganized the connection code to fix a bug where a user gets
disconnected while connecting to an irc server.
(5) Socket length was not being set before accept. (Thanks chris)
(6) Removed old hack code for systems that do not support snprintf.
(7) Increased error checking in recv code.
(8) Better parsing of messages
(9) Server buffers always cleared when connecting to a new server.
(10) Initial IPv6 support. Added -6 option to the CONN command
(i.e. CONN -6 irc.ipv6.org) which is only necessary on ambigious
addresses or when connecting via dns.
(11) Listen host can be specified in conf as an ipv6 address by putting
the address in []'s (i.e. LISTEN [2000:610:0:23::]:6669)
Requested by Peter Avalos <pavalos@theshell.com> in private e-mail.
Diffstat (limited to 'chat/bnc/Makefile')
-rw-r--r-- | chat/bnc/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chat/bnc/Makefile b/chat/bnc/Makefile index 4053a5a763b..bb6ccfb5a7b 100644 --- a/chat/bnc/Makefile +++ b/chat/bnc/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.11 2005/06/16 06:57:41 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2005/06/25 14:48:45 zuntum Exp $ -DISTNAME= bnc2.8.6 +DISTNAME= bnc2.9.4 PKGNAME= ${DISTNAME:S/bnc/&-/} -PKGREVISION= 1 CATEGORIES= chat -MASTER_SITES= http://www.gotbnc.com/files/ \ +MASTER_SITES= http://www.gotbnc.com/ \ ftp://ftp.ircadmin.net/bnc/ MAINTAINER= zuntum@NetBSD.org @@ -15,6 +14,8 @@ DEPENDS+= dialog-[0-9]*:../../misc/dialog GNU_CONFIGURE= YES +CONFIGURE_ARGS= --with-ssl + INSTALLATION_DIRS= bin post-patch: @@ -34,4 +35,5 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/example.conf \ ${PREFIX}/share/examples/bnc/bnc.conf +.include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |