[git] GCRYPT - branch, LIBGCRYPT-1-7-BRANCH, updated. libgcrypt-1.7.4-4-g4dc4748

by Werner Koch cvs at cvs.gnupg.org
Thu Dec 15 09:47:31 CET 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU crypto library".

The branch, LIBGCRYPT-1-7-BRANCH has been updated
       via  4dc4748bb6de79cb89c4cd39052b56de3a7b8227 (commit)
       via  89ec6c103739d41624bb5b899926efc26b215dda (commit)
       via  b4d1ab824172b8221011680cda00d7623de5c9f5 (commit)
      from  acb7003a9a6faf5d3c0e7961a6d36e351910bd97 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4dc4748bb6de79cb89c4cd39052b56de3a7b8227
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Dec 15 09:29:33 2016 +0100

    Post release updates.
    
    --

diff --git a/NEWS b/NEWS
index 34e02b4..ccb04f5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+Noteworthy changes in version 1.7.6 (unreleased)  [C21/A1/R_]
+------------------------------------------------
+
+
 Noteworthy changes in version 1.7.5 (2016-12-15)  [C21/A1/R5]
 ------------------------------------------------
 
diff --git a/configure.ac b/configure.ac
index be30027..7dfbd60 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,7 +30,7 @@ min_automake_version="1.14"
 # for the LT versions.
 m4_define(mym4_version_major, [1])
 m4_define(mym4_version_minor, [7])
-m4_define(mym4_version_micro, [5])
+m4_define(mym4_version_micro, [6])
 
 # Below is m4 magic to extract and compute the revision number, the
 # decimalized short revision number, a beta version string, and a flag

commit 89ec6c103739d41624bb5b899926efc26b215dda
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Dec 15 09:18:02 2016 +0100

    Release 1.7.5.
    
    * configure.ac: Set LT version to C21/A1/R5.
    
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/NEWS b/NEWS
index ecfa180..34e02b4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
-Noteworthy changes in version 1.7.5 (unreleased)  [C21/A1/R_]
+Noteworthy changes in version 1.7.5 (2016-12-15)  [C21/A1/R5]
 ------------------------------------------------
 
+ * Bug fixes:
+
+   - Fix regression in mlock detection [bug#2870].
+
 
 Noteworthy changes in version 1.7.4 (2016-12-09)  [C21/A1/R4]
 ------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 267438a..be30027 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,7 +56,7 @@ AC_INIT([libgcrypt],[mym4_full_version],[http://bugs.gnupg.org])
 #   (No interfaces changed:                   REVISION++)
 LIBGCRYPT_LT_CURRENT=21
 LIBGCRYPT_LT_AGE=1
-LIBGCRYPT_LT_REVISION=4
+LIBGCRYPT_LT_REVISION=5
 
 
 # If the API is changed in an incompatible way: increment the next counter.

commit b4d1ab824172b8221011680cda00d7623de5c9f5
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Dec 15 08:50:40 2016 +0100

    Fix regression in broken mlock detection.
    
    * acinclude.m4 (GNUPG_CHECK_MLOCK): Fix typo EGAIN->EAGAIN.
    --
    
    GnuPG-bug-id: 2870
    Fixes-commit: 618b8978f46f4011c11512fd5f30c15e01652e2e
    Co-authored-by: Nicolas Porcel <nicolasporcel06 at gmail.com>
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/acinclude.m4 b/acinclude.m4
index 90b3cb9..dcdadfd 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -242,7 +242,7 @@ int main()
     pool += (pgsize - ((long int)pool % pgsize));
 
     err = mlock( pool, 4096 );
-    if( !err || errno == EPERM || errno == EGAIN)
+    if( !err || errno == EPERM || errno == EAGAIN)
         return 0; /* okay */
 
     return 1;  /* hmmm */

-----------------------------------------------------------------------

Summary of changes:
 NEWS         | 10 +++++++++-
 acinclude.m4 |  2 +-
 configure.ac |  4 ++--
 3 files changed, 12 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
The GNU crypto library
http://git.gnupg.org




More information about the Gnupg-commits mailing list