Update to knot-1.6.5

knot-1.* will be LTS releases.  knot-2 is a newer version that needs
TLS (__thread) support and lmdb (broken on OpenBSD).
This commit is contained in:
jca 2015-09-29 21:01:55 +00:00
parent 193bfc669e
commit d313936408
4 changed files with 4 additions and 37 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.4 2015/04/27 11:06:22 jca Exp $
# $OpenBSD: Makefile,v 1.5 2015/09/29 21:01:55 jca Exp $
COMMENT = authoritative DNS server
DISTNAME = knot-1.6.3
DISTNAME = knot-1.6.5
SHARED_LIBS += zscanner 0.0 # .0.1
SHARED_LIBS += knot 0.0 # .0.1

View File

@ -1,2 +1,2 @@
SHA256 (knot-1.6.3.tar.xz) = SNpgjinCwe9ZN+tpL47wRi67UPp9EoR4oj4Kl4hTPoY=
SIZE (knot-1.6.3.tar.xz) = 785052
SHA256 (knot-1.6.5.tar.xz) = YSYXkWz/wlPT6VyyWf3dsMnMaXWXDUHf5xfMjaja+Nk=
SIZE (knot-1.6.5.tar.xz) = 788136

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-src_libknot_dnssec_config_h,v 1.1.1.1 2015/04/12 16:07:13 jca Exp $
Disable use of the GOST *engine*, not in LibreSSL.
--- src/libknot/dnssec/config.h.orig Thu Feb 19 09:43:56 2015
+++ src/libknot/dnssec/config.h Fri Apr 3 02:52:00 2015
@@ -40,10 +40,6 @@
#undef KNOT_ENABLE_ECDSA
#endif
-#if !defined(OPENSSL_NO_GOST) && OPENSSL_VERSION_NUMBER >= 0x1000001fL
- #define KNOT_ENABLE_GOST 1
-#else
- #undef KNOT_ENABLE_GOST
-#endif
+#undef KNOT_ENABLE_GOST
/*! @} */

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-src_libknot_util_endian_h,v 1.1.1.1 2015/04/12 16:07:13 jca Exp $
--- src/libknot/util/endian.h.orig Thu Feb 19 09:43:56 2015
+++ src/libknot/util/endian.h Fri Apr 3 02:42:16 2015
@@ -32,10 +32,7 @@
#elif defined(__FreeBSD__) || defined(__NetBSD__)
# include <sys/endian.h>
#elif defined(__OpenBSD__)
-# include <sys/types.h>
-# define be16toh(x) betoh16(x)
-# define be32toh(x) betoh32(x)
-# define be64toh(x) betoh64(x)
+# include <endian.h>
#elif defined(__APPLE__)
# include <libkern/OSByteOrder.h>
# define be16toh(x) OSSwapBigToHostInt16(x)