diff options
author | hauke <hauke@pkgsrc.org> | 2008-05-30 14:45:45 +0000 |
---|---|---|
committer | hauke <hauke@pkgsrc.org> | 2008-05-30 14:45:45 +0000 |
commit | 4a6b3dbc1f59650bb8a4f515c59466a95ac9eeea (patch) | |
tree | 8c24b30802ad70bf095b628dfaca96e36ad430ec /sysutils | |
parent | 05322832443f21695ee609a5ea144e1a02dd0f31 (diff) | |
download | pkgsrc-4a6b3dbc1f59650bb8a4f515c59466a95ac9eeea.tar.gz |
Radmind update to 1.11.1
This release of Radmind includes the following changes:
* Fixed port failover on Mac OS X 10.5 clients.
* Exclude patterns now support escape sequences [ Bug 1856125 ]. Thanks
to Scott Hannahs for the report.
* fsdiff manpage: clarification of exclude behavior.
Major changes since 1.10.0:
- Support for exclude patterns.
- The default server port is now the IANA-registered 6222. Clients now
try to connect to port 6222 by default, failing over to the legacy port
if necessary.
- USE_ASCII defined on Mac OS X to improve case-insensitive fsdiff
performance.
Minor changes and fixes:
- lcksum -a works again. Thanks to Geoff Franks for the report.
- Minor cleanup of port selection code.
- Set correct paths for TLS related files. Thanks to Linc Davis for
reporting the problem.
- ra.sh up is now shorthand for ra.sh update.
- Allow directories to have 5 or 6 arguments on all platforms. This
fixes a bug preventing twhich from parsing apple transcripts on
non-apple hardware.
- twhich now trims trailing slashes from paths passed in from the
command line.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/radmind/Makefile | 5 | ||||
-rw-r--r-- | sysutils/radmind/distinfo | 9 | ||||
-rw-r--r-- | sysutils/radmind/patches/patch-ad | 20 |
3 files changed, 6 insertions, 28 deletions
diff --git a/sysutils/radmind/Makefile b/sysutils/radmind/Makefile index 65b1ca21d18..d402caabf86 100644 --- a/sysutils/radmind/Makefile +++ b/sysutils/radmind/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2008/01/18 05:09:45 tnn Exp $ +# $NetBSD: Makefile,v 1.18 2008/05/30 14:45:45 hauke Exp $ # -DISTNAME= radmind-1.10.0 -PKGREVISION= 1 +DISTNAME= radmind-1.11.1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=radmind/} diff --git a/sysutils/radmind/distinfo b/sysutils/radmind/distinfo index 3474be36d3a..f64ade67a89 100644 --- a/sysutils/radmind/distinfo +++ b/sysutils/radmind/distinfo @@ -1,10 +1,9 @@ -$NetBSD: distinfo,v 1.13 2007/09/04 11:55:44 hauke Exp $ +$NetBSD: distinfo,v 1.14 2008/05/30 14:45:45 hauke Exp $ -SHA1 (radmind-1.10.0.tar.gz) = 02c3d1a38228e2d4ec4e1e28b9892081358bcecd -RMD160 (radmind-1.10.0.tar.gz) = a60e7ad73f7dff19f67ae8e08e7e87b08a978c41 -Size (radmind-1.10.0.tar.gz) = 397065 bytes +SHA1 (radmind-1.11.1.tar.gz) = 65a88fa98307b84a72c6a2de60e431b2308b5296 +RMD160 (radmind-1.11.1.tar.gz) = 19245d33875841058fddb6a037dabd5e8fca65de +Size (radmind-1.11.1.tar.gz) = 390810 bytes SHA1 (patch-aa) = e82fdc59bfc79f736ca135af9ed9923c09de488f SHA1 (patch-ab) = 0b397d1838ed8687927f5503589f91f1faec366b SHA1 (patch-ac) = c1ea9930b9c2fee94a0b0d43e8aeec1925e454e7 -SHA1 (patch-ad) = 40974d0b41be44c2ebd0d29dca31bcc42837328a SHA1 (patch-ae) = c42712bbc9494cc6cbb1300abadfa0b5a05f03f9 diff --git a/sysutils/radmind/patches/patch-ad b/sysutils/radmind/patches/patch-ad deleted file mode 100644 index 5e22410718c..00000000000 --- a/sysutils/radmind/patches/patch-ad +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-ad,v 1.2 2006/07/17 17:59:05 wiz Exp $ - ---- connect.c.orig 2006-03-03 15:29:20.000000000 +0100 -+++ connect.c -@@ -11,6 +11,7 @@ - #include <netinet/in.h> - #include <netinet/tcp.h> - #include <arpa/inet.h> -+#include <errno.h> - #include <netdb.h> - #include <stdio.h> - #include <stdlib.h> -@@ -36,7 +37,6 @@ - extern void (*logger)( char * ); - extern int verbose; - struct timeval timeout = { 60, 0 }; --extern int errno; - extern SSL_CTX *ctx; - - #ifdef HAVE_ZLIB |