gnupg, bump version (#2035)

This commit is contained in:
Schrijvers Luc
2018-01-02 15:25:47 +01:00
committed by fbrosson
parent 4bd6610df0
commit 29c1308336
5 changed files with 176 additions and 24 deletions

View File

@@ -1,11 +1,11 @@
From 3fb03d8c66fe9e28012f87822fd84c89b06df2b4 Mon Sep 17 00:00:00 2001
From fce1e481c1fcab3066ef605d22d1858553fb80a6 Mon Sep 17 00:00:00 2001
From: fbrosson <fbrosson@localhost>
Date: Thu, 18 Feb 2016 22:55:30 +0000
Subject: Fix detection of libnetwork
diff --git a/configure.ac b/configure.ac
index 8133537..7c90d45 100644
index f6ed9c2..cc7861d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -686,10 +686,12 @@ dnl for ldap, for example. If ldap libs are static (or dynamic and without
@@ -37,5 +37,35 @@ index 8133537..7c90d45 100644
AC_SEARCH_LIBS(__dn_expand,resolv bind socket,,have_resolver=no))
AC_SEARCH_LIBS(dn_skipname,resolv bind socket,,
--
2.9.2
2.15.1
From ca1a66a94465160bd40f337f3cc5032f304df501 Mon Sep 17 00:00:00 2001
From: begasus <begasus@gmail.com>
Date: Tue, 2 Jan 2018 10:35:34 +0100
Subject: gcc2, parse error fix
diff --git a/cipher/rsa.c b/cipher/rsa.c
index 51b7640..d076b8c 100644
--- a/cipher/rsa.c
+++ b/cipher/rsa.c
@@ -326,6 +326,7 @@ secret(MPI output, MPI input, RSA_secret_key *skey )
# endif /* USE_BLINDING */
/* RSA secret operation: */
+ {
MPI D_blind = mpi_alloc_secure (nlimbs);
MPI rr;
unsigned int rr_nbits;
@@ -386,6 +387,7 @@ secret(MPI output, MPI input, RSA_secret_key *skey )
mpi_free ( m1 );
mpi_free ( m2 );
#endif
+ }
}
--
2.15.1