Update to 0.96:

- Makefile's error messages now correct if output is
	  redirected (patch from Ilya Zakharevich).
	- Non-blocking connects/accepts now work (Problem found by
	  Uri Guttman).
	- new_from_fd() now works.
	- getline() and <> in scalar context now return undef
	  instead of '' when the read failed.  (Problem found by
	  Christian Gilmore).
	- Broken pipe signals are now ignored during socket close
	  to prevent a SSL shutdown message from killing the parent
	  program.  (Problem found by Christian Gilmore).
	- Tests should proceed much more quickly, and a semi-race was
	  fixed, meaning that on slow machines the tests should be
	  more reliable.
	- Check for Scalar::Util and Weakref now uses default
	  $SIG{__DIE__} instead of a potentially user-altered one
	  (suggestion from Olaf Schneider).  This only applies to Perl 5.6.0 & above.
	- Session caching support (patch from Marko Asplund).
	- set_default_context() added to alter the behavior of
	  modules that use IO::Socket::SSL from the main program.
	- get_ssl_object() renamed to _get_ssl_object() to reflect
	  the fact that it's only supposed to be used internally
	  (not that you should have cared, of course).
	- Added patch for Net::SSLeay to take advantage of
	  client-side session caching. (i.e. use 1.26 of Net-SSLeay)
This commit is contained in:
wiz 2005-02-18 13:12:12 +00:00
parent 4065c34022
commit b0cc900624
2 changed files with 6 additions and 7 deletions

View file

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.14 2004/12/20 11:31:08 grant Exp $
# $NetBSD: Makefile,v 1.15 2005/02/18 13:12:12 wiz Exp $
DISTNAME= IO-Socket-SSL-0.95
DISTNAME= IO-Socket-SSL-0.96
PKGNAME= p5-${DISTNAME}
PKGREVISION= 2
SVR4_PKGNAME= p5iss
CATEGORIES= security net perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/}
@ -11,7 +10,7 @@ MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/IO-Socket-SSL/
COMMENT= Perl5 SSL socket interface class
DEPENDS+= p5-Net-SSLeay-[0-9]*:../../security/p5-Net-SSLeay
DEPENDS+= p5-Net-SSLeay>=1.26:../../security/p5-Net-SSLeay
PKG_INSTALLATION_TYPES= overwrite pkgviews

View file

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.5 2003/09/13 12:24:20 jlam Exp $
$NetBSD: distinfo,v 1.6 2005/02/18 13:12:12 wiz Exp $
SHA1 (IO-Socket-SSL-0.95.tar.gz) = 7d20885f0cd55adefcdf80e83a9079d7f4a599b6
Size (IO-Socket-SSL-0.95.tar.gz) = 26345 bytes
SHA1 (IO-Socket-SSL-0.96.tar.gz) = 681b0fa2130fe2b4535669b2e2fe145707fbe92a
Size (IO-Socket-SSL-0.96.tar.gz) = 31914 bytes