[git] GCRYPT - branch, LIBGCRYPT-1-6-BRANCH, updated. libgcrypt-1.6.1-16-g2285a1e

by Werner Koch cvs at cvs.gnupg.org
Tue Aug 5 12:29:24 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  2285a1e3666488c5bba2c5fa3e51541541b2d23e (commit)
       via  d844616213bd064edd99bac180d8104b52b0a933 (commit)
       via  f0f57bdd9be2473311542ffb91a843240cee0c35 (commit)
      from  a015063c118d4367b4b1cb4770361c519a17e9de (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 2285a1e3666488c5bba2c5fa3e51541541b2d23e
Author: Werner Koch <wk at gnupg.org>
Date:   Tue Aug 5 12:26:36 2014 +0200

    mpi: Fix regression for powerpc-apple-darwin detection.
    
    * mpi/config.links: Add separate entry for powerpc-apple-darwin.
    --
    
    GnuPG-bug-id: 1616

diff --git a/mpi/config.links b/mpi/config.links
index 4f35ea2..f44299d 100644
--- a/mpi/config.links
+++ b/mpi/config.links
@@ -44,7 +44,6 @@ echo '/* created by config.links - do not edit */' >./mpi/asm-syntax.h
 echo "/* Host: ${host} */" >>./mpi/asm-syntax.h
 
 case "${host}" in
-    powerpc-apple-darwin*          | \
     i[34567]86*-*-openbsd[12]*     | \
     i[34567]86*-*-openbsd3.[0123]*)
        echo '/* No working assembler modules available */' >>./mpi/asm-syntax.h
@@ -284,6 +283,12 @@ case "${host}" in
         mpi_cpu_arch="m68k"
 	;;
 
+    powerpc-apple-darwin*)
+       echo '/* No working assembler modules available */' >>./mpi/asm-syntax.h
+       path=""
+       mpi_cpu_arch="ppc"
+       ;;
+
     powerpc*-*-netbsd* | powerpc*-*-openbsd*)
        echo '/* configured {Open,Net}BSD on powerpc */' >>./mpi/asm-syntax.h
        echo '#define ELF_SYNTAX'                 >>./mpi/asm-syntax.h

commit d844616213bd064edd99bac180d8104b52b0a933
Author: Werner Koch <wk at gnupg.org>
Date:   Tue Aug 5 12:15:26 2014 +0200

    Fix bug inhibiting the use of the sentinel attribute.
    
    * src/gcrypt.h.in: Fix typo in macro.
    --
    
    Reported-by: Rafaël Carré <funman at videolan.org>

diff --git a/src/gcrypt.h.in b/src/gcrypt.h.in
index dbf48e3..81c2128 100644
--- a/src/gcrypt.h.in
+++ b/src/gcrypt.h.in
@@ -102,7 +102,7 @@ extern "C" {
 
 #define _GCRY_GCC_ATTR_PRINTF(f,a)  __attribute__ ((format (printf,f,a)))
 
-#if _GCRT_GCC_VERSION >= 40000
+#if _GCRY_GCC_VERSION >= 40000
 #define _GCRY_GCC_ATTR_SENTINEL(a) __attribute__ ((sentinel(a)))
 #endif
 

commit f0f57bdd9be2473311542ffb91a843240cee0c35
Author: Werner Koch <wk at gnupg.org>
Date:   Tue Aug 5 12:12:52 2014 +0200

    mpi: Use BSD syntax for x86_64-apple-darwin
    
    * mpi/config.links: Add case for x86_64-apple-darwin.
    --
    
    Suggested by gniibe on 2014-04-24.

diff --git a/mpi/config.links b/mpi/config.links
index 0217d35..4f35ea2 100644
--- a/mpi/config.links
+++ b/mpi/config.links
@@ -127,6 +127,12 @@ case "${host}" in
 	path="i586 i386"
         mpi_cpu_arch="x86"
 	;;
+    x86_64-apple-darwin*)
+	echo '#define BSD_SYNTAX' >>./mpi/asm-syntax.h
+	cat  $srcdir/mpi/i386/syntax.h	    >>./mpi/asm-syntax.h
+	path="amd64"
+        mpi_cpu_arch="x86"
+	;;
     x86_64-*-*)
 	echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h
 	cat  $srcdir/mpi/i386/syntax.h	    >>./mpi/asm-syntax.h

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

Summary of changes:
 mpi/config.links |   13 ++++++++++++-
 src/gcrypt.h.in  |    2 +-
 2 files changed, 13 insertions(+), 2 deletions(-)


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




More information about the Gnupg-commits mailing list