aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2015-04-20 20:47:42 +0000
committerSteven Barth <steven@midlink.org>2015-04-20 20:47:42 +0000
commit204e157668a940fabbcfba928a4decd556942898 (patch)
tree676185ac2ed5add43f06ebe8b17bd2a9626fda36 /package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch
parent7fb761548a9c7a494b775a19d4ccc28fdcbec79b (diff)
downloadmaster-187ad058-204e157668a940fabbcfba928a4decd556942898.tar.gz
master-187ad058-204e157668a940fabbcfba928a4decd556942898.tar.bz2
master-187ad058-204e157668a940fabbcfba928a4decd556942898.zip
nettle: bump to 3.1
Signed-off-by: Steven Barth <steven@midlink.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45526 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch')
-rw-r--r--package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch b/package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch
deleted file mode 100644
index 3a87254955..0000000000
--- a/package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From d71b3138cbdc3852c96a2639995f2d7f44b1c76c Mon Sep 17 00:00:00 2001
-From: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-Date: Sat, 29 Mar 2014 09:12:41 +0100
-Subject: [PATCH 5/5] allow der-iterator to be used with mini-gmp
-
----
- der-iterator.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/der-iterator.c b/der-iterator.c
-index 2e6efd5..5ab15b9 100644
---- a/der-iterator.c
-+++ b/der-iterator.c
-@@ -30,7 +30,7 @@
- #include <assert.h>
- #include <stdlib.h>
-
--#if HAVE_LIBGMP
-+#if defined(HAVE_LIBGMP) || defined(USE_MINI_GMP)
- #include "bignum.h"
- #endif
-
-@@ -246,7 +246,7 @@ asn1_der_get_uint32(struct asn1_der_iterator *i,
- return 1;
- }
-
--#if HAVE_LIBGMP
-+#if defined(HAVE_LIBGMP) || defined(USE_MINI_GMP)
- int
- asn1_der_get_bignum(struct asn1_der_iterator *i,
- mpz_t x, unsigned max_bits)
---
-1.9.2
-