From 58efe6184ecc32f4fb7f99df45fe99da15a087e2 Mon Sep 17 00:00:00 2001 From: Tom Cosgrove Date: Mon, 15 Nov 2021 09:59:53 +0000 Subject: [PATCH 1/2] Fix builds when config.h only defines MBEDTLS_BIGNUM_C Fixes #4929 Signed-off-by: Tom Cosgrove --- include/mbedtls/entropy.h | 2 +- library/bignum.c | 1 + programs/fuzz/common.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/mbedtls/entropy.h b/include/mbedtls/entropy.h index d6ad8e73e..deb3c5030 100644 --- a/include/mbedtls/entropy.h +++ b/include/mbedtls/entropy.h @@ -130,7 +130,7 @@ typedef struct mbedtls_entropy_context * -1 after free. */ #if defined(MBEDTLS_ENTROPY_SHA512_ACCUMULATOR) mbedtls_sha512_context accumulator; -#else +#elif defined(MBEDTLS_ENTROPY_SHA256_ACCUMULATOR) mbedtls_sha256_context accumulator; #endif int source_count; /* Number of entries used in source. */ diff --git a/library/bignum.c b/library/bignum.c index 364332664..b7718e217 100644 --- a/library/bignum.c +++ b/library/bignum.c @@ -42,6 +42,7 @@ #include "mbedtls/platform_util.h" #include "mbedtls/error.h" +#include #include #if defined(MBEDTLS_PLATFORM_C) diff --git a/programs/fuzz/common.c b/programs/fuzz/common.c index ac39ee22f..e12ee3b8a 100644 --- a/programs/fuzz/common.c +++ b/programs/fuzz/common.c @@ -1,4 +1,5 @@ #include "common.h" +#include #include #include #include From ad47e6d1608178f7ba8365b030a8c02b39eaee49 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 6 Dec 2021 20:56:55 +0100 Subject: [PATCH 2/2] Add changelog entry for build error fixes Signed-off-by: Gilles Peskine --- ChangeLog.d/build-without-sha.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ChangeLog.d/build-without-sha.txt diff --git a/ChangeLog.d/build-without-sha.txt b/ChangeLog.d/build-without-sha.txt new file mode 100644 index 000000000..78ba27694 --- /dev/null +++ b/ChangeLog.d/build-without-sha.txt @@ -0,0 +1,3 @@ +Bugfix + * Fix the build when no SHA2 module is included. Fixes #4930. + * Fix the build when only the bignum module is included. Fixes #4929.