Skip to content

Commit

Permalink
[mbedtls] stop checking configuration explicitly (#2293)
Browse files Browse the repository at this point in the history
This commit removes configuration sanity check for MbedTLS versions
higher or equal to 3.0.0.

Signed-off-by: Łukasz Duda <lukasz.duda@nordicsemi.no>
  • Loading branch information
LuDuda committed May 22, 2024
1 parent 25d200d commit 611cc86
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion third_party/openthread/mbedtls-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@

#define MBEDTLS_SSL_CIPHERSUITES MBEDTLS_TLS_ECJPAKE_WITH_AES_128_CCM_8

#include "mbedtls/check_config.h"
#include "mbedtls/version.h"
#if (MBEDTLS_VERSION_NUMBER < 0x03000000)
// Configuration sanity check. Done automatically in Mbed TLS >= 3.0.
#include "mbedtls/check_config.h"
#endif

#endif // OTBR_MBEDTLS_CONFIG_H_

0 comments on commit 611cc86

Please sign in to comment.