[git] GCRYPT - branch, LIBGCRYPT-1-6-BRANCH, updated. libgcrypt-1.6.1-9-ge438beb

by Werner Koch cvs at cvs.gnupg.org
Wed May 7 10:32:43 CEST 2014


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-6-BRANCH has been updated
       via  e438beb82565dc777406ef4b847dcca33e0ad2d8 (commit)
       via  75c1db9d12ccd28b167a9cd8dc1ace6240e20d02 (commit)
      from  06b4192efdd93fa59d76bf731da9829f01b04294 (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 e438beb82565dc777406ef4b847dcca33e0ad2d8
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    Support building using the latest mingw-w64 toolchain.
    
    * acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Change mingw detection.
    --
    
    This patch is related to Debian-bug-id 730271 for GnuPG 1.4:
    
       From: Stephen Kitt <skitt at debian.org>
    
          All MinGW targets require underscores when linking. This patch fixes
          acinclude.m4 and the resulting configure so they don't limit the use
          of underscores to the old mingw32msvc targets.
    
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/acinclude.m4 b/acinclude.m4
index fdb2d17..0791b84 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -101,7 +101,7 @@ AC_DEFUN([GNUPG_CHECK_GNUMAKE],
 AC_DEFUN([GNUPG_SYS_SYMBOL_UNDERSCORE],
 [tmp_do_check="no"
 case "${host}" in
-    *-mingw32msvc*)
+    *-mingw32*)
         ac_cv_sys_symbol_underscore=yes
         ;;
     i386-emx-os2 | i[3456]86-pc-os2*emx | i386-pc-msdosdjgpp)

commit 75c1db9d12ccd28b167a9cd8dc1ace6240e20d02
Author: Werner Koch <wk at gnupg.org>
Date:   Thu Jan 9 19:14:09 2014 +0100

    Use internal malloc function in fips.c
    
    * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
    --
    
    This fixes a build problem with ENABLE_HMAC_BINARY_CHECK.
    
    Reported-by: Michal Vyskocil.

diff --git a/src/fips.c b/src/fips.c
index 8148dcd..3ab33f9 100644
--- a/src/fips.c
+++ b/src/fips.c
@@ -602,7 +602,7 @@ check_binary_integrity (void)
         err = gpg_error (GPG_ERR_INTERNAL);
       else
         {
-          fname = gcry_malloc (strlen (info.dli_fname) + 1 + 5 + 1 );
+          fname = xtrymalloc (strlen (info.dli_fname) + 1 + 5 + 1 );
           if (!fname)
             err = gpg_error_from_syserror ();
           else

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

Summary of changes:
 acinclude.m4 |    2 +-
 src/fips.c   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


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




More information about the Gnupg-commits mailing list