pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/proxytunnel proxytunnel: Fix build with OpenSSL 1.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0ad732f8bab7
branches:  trunk
changeset: 423982:0ad732f8bab7
user:      nia <nia%pkgsrc.org@localhost>
date:      Sun Mar 01 18:20:33 2020 +0000

description:
proxytunnel: Fix build with OpenSSL 1.1

bump PKGREVISION

diffstat:

 net/proxytunnel/Makefile                 |   4 ++--
 net/proxytunnel/distinfo                 |   3 ++-
 net/proxytunnel/patches/patch-ptstream.c |  15 +++++++++++++++
 3 files changed, 19 insertions(+), 3 deletions(-)

diffs (47 lines):

diff -r 79b6381121cb -r 0ad732f8bab7 net/proxytunnel/Makefile
--- a/net/proxytunnel/Makefile  Sun Mar 01 18:07:51 2020 +0000
+++ b/net/proxytunnel/Makefile  Sun Mar 01 18:20:33 2020 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.12 2020/01/26 05:26:25 rillig Exp $
+# $NetBSD: Makefile,v 1.13 2020/03/01 18:20:33 nia Exp $
 #
 
 DISTNAME=      proxytunnel-1.9.0
-PKGREVISION=   5
+PKGREVISION=   6
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=proxytunnel/}
 EXTRACT_SUFX=  .tgz
diff -r 79b6381121cb -r 0ad732f8bab7 net/proxytunnel/distinfo
--- a/net/proxytunnel/distinfo  Sun Mar 01 18:07:51 2020 +0000
+++ b/net/proxytunnel/distinfo  Sun Mar 01 18:20:33 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2015/11/04 00:35:29 agc Exp $
+$NetBSD: distinfo,v 1.3 2020/03/01 18:20:33 nia Exp $
 
 SHA1 (proxytunnel-1.9.0.tgz) = 51d816125bb9e9bca267d35f861000eb0fa9d80b
 RMD160 (proxytunnel-1.9.0.tgz) = 5444861031fa256a5e0d2d83be297afc70137e8b
@@ -7,3 +7,4 @@
 SHA1 (patch-Makefile) = 21c7112f5b856916369038a91f597d30af6b5ff5
 SHA1 (patch-cmdline.c) = 6d56e2d307a2225cdd4ddb732dd64c6d9a7f48cc
 SHA1 (patch-proxytunnel.1) = 0556f23e769f2e52ef50cf952bacb9318b420228
+SHA1 (patch-ptstream.c) = e8cbc6265798afded7442d2d3f4e094b0fb03252
diff -r 79b6381121cb -r 0ad732f8bab7 net/proxytunnel/patches/patch-ptstream.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/proxytunnel/patches/patch-ptstream.c  Sun Mar 01 18:20:33 2020 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ptstream.c,v 1.1 2020/03/01 18:20:34 nia Exp $
+
+Migrate from SSLv3
+
+--- ptstream.c.orig    2008-02-26 23:27:27.000000000 +0000
++++ ptstream.c
+@@ -151,7 +151,7 @@ int stream_enable_ssl(PTSTREAM *pts) {
+       
+       /* Initialise the connection */
+       SSLeay_add_ssl_algorithms();
+-      meth = SSLv3_client_method();
++      meth = SSLv23_client_method();
+       SSL_load_error_strings();
+ 
+       ctx = SSL_CTX_new (meth);



Home | Main Index | Thread Index | Old Index