summaryrefslogtreecommitdiff
path: root/security/stunnel/patches
diff options
context:
space:
mode:
authormartti <martti>2001-10-31 10:00:23 +0000
committermartti <martti>2001-10-31 10:00:23 +0000
commit70d0d3f35d7d025828c485b182a210c19e9d7bfa (patch)
treeeb965178ebcc6799417af12ac2be49c6922b4a3e /security/stunnel/patches
parentc34e5dc360bfc3429e0ba71974c37637b8da4836 (diff)
downloadpkgsrc-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.
Diffstat (limited to 'security/stunnel/patches')
-rw-r--r--security/stunnel/patches/patch-aa18
1 files changed, 9 insertions, 9 deletions
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)