summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-dns/knot/files/knot-2.1.0-nettle.patch')
-rw-r--r--net-dns/knot/files/knot-2.1.0-nettle.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/net-dns/knot/files/knot-2.1.0-nettle.patch b/net-dns/knot/files/knot-2.1.0-nettle.patch
deleted file mode 100644
index 8f89ae85067f..000000000000
--- a/net-dns/knot/files/knot-2.1.0-nettle.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/dnssec/lib/binary.c b/src/dnssec/lib/binary.c
-index 454dc5a..8d642be 100644
---- a/src/dnssec/lib/binary.c
-+++ b/src/dnssec/lib/binary.c
-@@ -15,16 +15,18 @@
- */
-
- #include <assert.h>
--#include <nettle/base64.h>
- #include <string.h>
-+#include <nettle/base64.h>
-+#ifdef HAVE_NETTLE_VERSION_H
-+#include <nettle/version.h>
-+#endif
-
- #include "binary.h"
- #include "error.h"
- #include "shared.h"
-
- typedef
--#ifdef HAVE_NETTLE_VERSION_H
-- #include <nettle/version.h>
-+#ifdef NETTLE_VERSION_MAJOR
- #if NETTLE_VERSION_MAJOR >= 3
- size_t
- #else