diff options
author | martti <martti> | 2001-10-31 10:00:23 +0000 |
---|---|---|
committer | martti <martti> | 2001-10-31 10:00:23 +0000 |
commit | 70d0d3f35d7d025828c485b182a210c19e9d7bfa (patch) | |
tree | eb965178ebcc6799417af12ac2be49c6922b4a3e | |
parent | c34e5dc360bfc3429e0ba71974c37637b8da4836 (diff) | |
download | pkgsrc-70d0d3f35d7d025828c485b182a210c19e9d7bfa.tar.gz |
Changelog for version 3.21, 2001.10.31, urgency: MEDIUM:
* Problem with errno and posix threads fixed.
* It is assumed that system has getopt() if it has getopt.h header file.
* SSL_CLIENT_DN and SSL_CLIENT_I_DN environment variables set in local mode
(-l) process. This feature doesn't work if
client mode (-c) or protocol negotiation (-n) is used.
* Winsock error descriptions hardcoded (English version only).
* SetConsoleCtrlHandler() used to handle CTRL+C, logoff and shutdown on Win32.
* Stunnel always requests peer certificate with -v 0.
* sysconf()/getrlimit() used to calculate number of clients allowed.
* SSL mode changed for OpenSSL >= 0.9.6.
* close-on-exec option used to avoid socket inheriting.
* Buffer size increased from 8KB to 16KB.
* fdscanf()/fdprintf() changes:
- non-blocking socket support,
- timeout after 1 minute of inactivity.
* auth_user() redesigned to force 1 minute timeout.
* Some source arrangement towards 4.x architecture.
* No need for "goto" any more.
* New Makefile "test" rule. It performs basic test of
standalone/inetd, remote/local and server/client mode.
* pop3 server mode support added.
-rw-r--r-- | security/stunnel/Makefile | 4 | ||||
-rw-r--r-- | security/stunnel/distinfo | 8 | ||||
-rw-r--r-- | security/stunnel/patches/patch-aa | 18 |
3 files changed, 15 insertions, 15 deletions
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index 32725dd3a69..7109d66076b 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2001/08/27 14:35:13 tron Exp $ +# $NetBSD: Makefile,v 1.24 2001/10/31 10:00:23 martti Exp $ -DISTNAME= stunnel-3.20 +DISTNAME= stunnel-3.21 CATEGORIES= security MASTER_SITES= ftp://ftp.fu-berlin.de/pub/unix/security/stunnel/ \ ftp://stunnel.mirt.net/stunnel/ \ diff --git a/security/stunnel/distinfo b/security/stunnel/distinfo index 3fdb03c8c21..d92e8557af9 100644 --- a/security/stunnel/distinfo +++ b/security/stunnel/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2001/08/19 16:26:07 martin Exp $ +$NetBSD: distinfo,v 1.8 2001/10/31 10:00:23 martti Exp $ -SHA1 (stunnel-3.20.tar.gz) = 5548dcb434837e490818c300a3ff90a0a91a389a -Size (stunnel-3.20.tar.gz) = 126539 bytes -SHA1 (patch-aa) = c7e26158d70ada1024f5c09b9fbba4bd5280c0dd +SHA1 (stunnel-3.21.tar.gz) = 47d809271b60ca0e70e79105550dde0c7d52a9ce +Size (stunnel-3.21.tar.gz) = 181299 bytes +SHA1 (patch-aa) = 3f881e1bcee219a0256dbf9f84fbd218befeb099 SHA1 (patch-ab) = fb989cc7f46ac07f5c904e8561163c4b597c3160 diff --git a/security/stunnel/patches/patch-aa b/security/stunnel/patches/patch-aa index f69021e2782..238eb19868f 100644 --- a/security/stunnel/patches/patch-aa +++ b/security/stunnel/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.9 2001/08/19 16:26:08 martin Exp $ +$NetBSD: patch-aa,v 1.10 2001/10/31 10:00:24 martti Exp $ ---- Makefile.in.orig Sun Aug 12 21:52:10 2001 -+++ Makefile.in Thu Aug 16 09:02:37 2001 +--- Makefile.in.orig Tue Oct 30 22:38:38 2001 ++++ Makefile.in Wed Oct 31 09:02:39 2001 @@ -9,7 +9,7 @@ sbindir=@sbindir@ libdir=@libdir@ @@ -11,16 +11,16 @@ $NetBSD: patch-aa,v 1.9 2001/08/19 16:26:08 martin Exp $ ssldir=@ssldir@ PEM_DIR=@PEM_DIR@ @SET_MAKE@ -@@ -20,7 +20,7 @@ - CFLAGS=@CFLAGS@ @DEFS@ -Dlibdir=\"$(libdir)\" -DPIDDIR=\"$(piddir)\" +@@ -21,7 +21,7 @@ LIBS=@LIBS@ - OBJS=stunnel.o ssl.o client.o protocol.o sthreads.o pty.o log.o options.o + HEADERS=common.h prototypes.h client.h + OBJS=client.o stunnel.o ssl.o protocol.o sthreads.o pty.o log.o options.o -DESTFILES=$(sbindir)/stunnel $(libdir)/stunnel.so $(man8dir)/stunnel.8 $(PEM_DIR)/stunnel.pem +DESTFILES=$(sbindir)/stunnel $(libdir)/stunnel.so $(man8dir)/stunnel.8 WINGCC=i386-mingw32msvc-gcc - WINCFLAGS=-O2 -Wall -DUSE_WIN32 -DHAVE_OPENSSL -DVERSION=\"@VERSION@\" -I../openssl-0.9.6/outinc -@@ -29,7 +29,7 @@ + WINCFLAGS=-O2 -Wall -DUSE_WIN32=1 -DHAVE_OPENSSL=1 -DFD_SETSIZE=4096 -DVERSION=\"@VERSION@\" -I../openssl-0.9.6/outinc +@@ -30,7 +30,7 @@ # standard external rules @@ -29,7 +29,7 @@ $NetBSD: patch-aa,v 1.9 2001/08/19 16:26:08 martin Exp $ install: all installdirs $(DESTFILES) -@@ -57,7 +57,6 @@ +@@ -59,7 +59,6 @@ installdirs: mkinstalldirs ./mkinstalldirs $(sbindir) $(libdir) $(man8dir) $(PEM_DIR) $(piddir) |