Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 863f841

Browse files
committed
project: Update for 1.8.5 merge.
1 parent 2ba4613 commit 863f841

4 files changed

Lines changed: 27 additions & 14 deletions

File tree

SMP/SMP.patch

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ index 7b6e330d..3ca6d801 100644
9292

9393
_gcry_md_block_write (context, NULL, 0); /* flush */ ;
9494
diff --git a/mpi/ec.c b/mpi/ec.c
95-
index 89077cd9..9beeba21 100644
95+
index adb02600..faba8452 100644
9696
--- a/mpi/ec.c
9797
+++ b/mpi/ec.c
9898
@@ -30,6 +30,12 @@
@@ -525,6 +525,19 @@ index af3fe2c6..096ee3bc 100644
525525

526526
#include "g10lib.h"
527527
#include "cipher-proto.h"
528+
diff --git a/src/gcrypt.h.in b/src/gcrypt.h.in
529+
index 75c49a0d..98fd2035 100644
530+
--- a/src/gcrypt.h.in
531+
+++ b/src/gcrypt.h.in
532+
@@ -36,7 +36,7 @@
533+
# include <ws2tcpip.h>
534+
# include <time.h>
535+
# ifndef __GNUC__
536+
- typedef long ssize_t;
537+
+ typedef SSIZE_T ssize_t;
538+
typedef int pid_t;
539+
# endif /*!__GNUC__*/
540+
#else
528541
diff --git a/src/global.c b/src/global.c
529542
index cd3d9d90..d445348a 100644
530543
--- a/src/global.c

SMP/gcrypt.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
# include <ws2tcpip.h>
3737
# include <time.h>
3838
# ifndef __GNUC__
39-
typedef SSIZE_T ssize_t;
39+
typedef long ssize_t;
4040
typedef int pid_t;
4141
# endif /*!__GNUC__*/
4242
#else
@@ -62,11 +62,11 @@ extern "C" {
6262
return the same version. The purpose of this macro is to let
6363
autoconf (using the AM_PATH_GCRYPT macro) check that this header
6464
matches the installed library. */
65-
#define GCRYPT_VERSION "1.8.4"
65+
#define GCRYPT_VERSION "1.8.5"
6666

6767
/* The version number of this header. It may be used to handle minor
6868
API incompatibilities. */
69-
#define GCRYPT_VERSION_NUMBER 0x010804
69+
#define GCRYPT_VERSION_NUMBER 0x010805
7070

7171

7272
/* Internal: We can't use the convenience macros for the multi

SMP/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/* Define to the version of this package. */
2-
#define PACKAGE_VERSION "1.8.4"
2+
#define PACKAGE_VERSION "1.8.5"
33

44
/* Version of this package */
5-
#define VERSION "1.8.4"
5+
#define VERSION "1.8.5"
66

77
/* GIT commit id revision used to build this package */
8-
#define BUILD_REVISION "9377517"
8+
#define BUILD_REVISION "5660633"
99

1010
/* The time this package was configured for a build */
11-
#define BUILD_TIMESTAMP "2018-11-10T10:56+0000"
11+
#define BUILD_TIMESTAMP "2019-09-07T14:09+0000"

SMP/versioninfo.rc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919

2020
VS_VERSION_INFO VERSIONINFO
21-
FILEVERSION 1,8,4,37751
22-
PRODUCTVERSION 1,8,4,37751
21+
FILEVERSION 1,8,5,22112
22+
PRODUCTVERSION 1,8,5,22112
2323
FILEFLAGSMASK 0x3fL
2424
#ifdef _DEBUG
2525
FILEFLAGS 0x21L
@@ -37,15 +37,15 @@ BEGIN
3737
VALUE "Comments", "Provided under the terms of the GNU Lesser General Public License (LGPLv2.1+).\0"
3838
VALUE "CompanyName", "g10 Code GmbH\0"
3939
VALUE "FileDescription", "Libgcrypt - The GNU Crypto Library\0"
40-
VALUE "FileVersion", "22.2.4.9377517\0"
40+
VALUE "FileVersion", "22.2.5.5660633\0"
4141
VALUE "InternalName", "libgcrypt\0"
42-
VALUE "LegalCopyright", "Copyright � 2018 Free Software Foundation, Inc.\0"
42+
VALUE "LegalCopyright", "Copyright � 2019 Free Software Foundation, Inc.\0"
4343
VALUE "LegalTrademarks", "\0"
4444
VALUE "OriginalFilename", "libgcrypt.dll\0"
4545
VALUE "PrivateBuild", "\0"
4646
VALUE "ProductName", "libgcrypt\0"
47-
VALUE "ProductVersion", "1.8.4\0"
48-
VALUE "SpecialBuild", "2018-11-10T10:56+0000\0"
47+
VALUE "ProductVersion", "1.8.5\0"
48+
VALUE "SpecialBuild", "2019-09-07T14:09+0000\0"
4949
END
5050
END
5151
END

0 commit comments

Comments
 (0)