diff options
author | Steven Barth <cyrus@openwrt.org> | 2014-06-18 10:04:43 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2014-06-18 10:04:43 +0000 |
commit | a0e19ec2f9aa8162bcb84659a5dbf5119cefb4b4 (patch) | |
tree | 93746eaaea56f8e90d2ff11051d928431f6ccfd4 /package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch | |
parent | 335529e207b9d3a694f9626803b17dc87f851625 (diff) | |
download | upstream-a0e19ec2f9aa8162bcb84659a5dbf5119cefb4b4.tar.gz upstream-a0e19ec2f9aa8162bcb84659a5dbf5119cefb4b4.tar.bz2 upstream-a0e19ec2f9aa8162bcb84659a5dbf5119cefb4b4.zip |
nettle: import from packages, update to 3.0
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 41248
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.patch | 29 |
1 files changed, 29 insertions, 0 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 new file mode 100644 index 0000000000..ef282623f6 --- /dev/null +++ b/package/libs/nettle/patches/0005-allow-der-iterator-to-be-used-with-mini-gmp.patch @@ -0,0 +1,29 @@ +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(-) + +--- a/der-iterator.c ++++ b/der-iterator.c +@@ -38,7 +38,7 @@ + #include <assert.h> + #include <stdlib.h> + +-#if HAVE_LIBGMP ++#if defined(HAVE_LIBGMP) || defined(USE_MINI_GMP) + #include "bignum.h" + #endif + +@@ -254,7 +254,7 @@ asn1_der_get_uint32(struct asn1_der_iter + 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) |