summaryrefslogtreecommitdiff
path: root/security/hitch
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2017-06-14 13:28:57 +0000
committerfhajny <fhajny@pkgsrc.org>2017-06-14 13:28:57 +0000
commite28e1a73d3d57f54e843970b896a78292f8bc300 (patch)
treefc31e03389b777b1723ea7911024123ee76e680a /security/hitch
parent6684027528a1816a6e0f133cd9954b7da1df399a (diff)
downloadpkgsrc-e28e1a73d3d57f54e843970b896a78292f8bc300.tar.gz
Update security/hitch to 1.4.6.
Update security/hitch to 1.4.6. hitch-1.4.6 (2017-06-06) - Fix a problem that broke mock-based builds for el6/el7 hitch-1.4.5 (2017-05-31) - Set SSL_OP_SINGLE_ECDH_USE to force a fresh ECDH key pair per handshake - Fix a bug where we ended up leaking a zombie process on reload - Fix a bug where the management process could not find its configuration files after a reload when chroot was configured - Output the offending line on a configuration file parsing error - Fix build for non-C99/C11 compilers - Fix the shared cache code to make it work also with OpenSSL 1.1.0 - Fix an unchecked loop situation that could occur when running with shared cache enabled - Various autotools configuration fixes - A few minor doc fixes
Diffstat (limited to 'security/hitch')
-rw-r--r--security/hitch/Makefile4
-rw-r--r--security/hitch/distinfo11
-rw-r--r--security/hitch/patches/patch-src_hitch.c17
3 files changed, 7 insertions, 25 deletions
diff --git a/security/hitch/Makefile b/security/hitch/Makefile
index 281aad85b37..dc63e0d4566 100644
--- a/security/hitch/Makefile
+++ b/security/hitch/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2017/01/09 13:02:20 fhajny Exp $
+# $NetBSD: Makefile,v 1.6 2017/06/14 13:28:57 fhajny Exp $
-DISTNAME= hitch-1.4.4
+DISTNAME= hitch-1.4.6
CATEGORIES= security
MASTER_SITES= https://hitch-tls.org/source/
diff --git a/security/hitch/distinfo b/security/hitch/distinfo
index 66574e8ebde..0e3a8b978b9 100644
--- a/security/hitch/distinfo
+++ b/security/hitch/distinfo
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.5 2017/01/09 13:02:20 fhajny Exp $
+$NetBSD: distinfo,v 1.6 2017/06/14 13:28:57 fhajny Exp $
-SHA1 (hitch-1.4.4.tar.gz) = 6c836d24fce74892dc97217eb733dffa7c91109c
-RMD160 (hitch-1.4.4.tar.gz) = fe48092f9e5ba674db2ac04228fccd3c108aeaba
-SHA512 (hitch-1.4.4.tar.gz) = 33037c6ba2882575d9d4a63adcbef7db9a0294e8fdc2eee5a5cc8a45656d9c9620952e49f71abbfbc94c6d1781911ad1b76237a058d3dda3eaaf2f220d15cd18
-Size (hitch-1.4.4.tar.gz) = 300494 bytes
+SHA1 (hitch-1.4.6.tar.gz) = 4dbf533706129bfd7a45f6dff020e2ba281a4abc
+RMD160 (hitch-1.4.6.tar.gz) = eb576b1b878d7184c3dc143c8b4d954e52ec03c3
+SHA512 (hitch-1.4.6.tar.gz) = e1dbbbeda4cfcd2d8afeba94f48bc7094e767aa9d18c778cee994c9bf5508cd503a99dc23cbe327df0e042e86d57d8d60f36143f9c1545f2f98ba5b9d6511842
+Size (hitch-1.4.6.tar.gz) = 308210 bytes
SHA1 (patch-hitch.conf.example) = 1c922c2e294362ef009ff60bfe43f746de596087
SHA1 (patch-src_configuration.c) = ba89c7c987159f66b1694435613aa89a6f9574de
-SHA1 (patch-src_hitch.c) = 7d92f2d83b302e3ca8a2acebc6c4697c1da184b2
diff --git a/security/hitch/patches/patch-src_hitch.c b/security/hitch/patches/patch-src_hitch.c
deleted file mode 100644
index 62c2ba52327..00000000000
--- a/security/hitch/patches/patch-src_hitch.c
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_hitch.c,v 1.2 2017/01/09 13:02:20 fhajny Exp $
-
-Need sys/filio on SunOS for FIONBIO.
-
---- src/hitch.c.orig 2016-11-11 13:10:38.000000000 +0000
-+++ src/hitch.c
-@@ -62,6 +62,10 @@
- #include <sys/prctl.h>
- #endif
-
-+#ifdef __sun
-+#include <sys/filio.h>
-+#endif
-+
- #include "config.h"
- #include "configuration.h"
- #include "hitch.h"