diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2019-02-22 13:40:33 +0100 |
---|---|---|
committer | Hein-Pieter van Braam <hp@tmm.cx> | 2019-02-24 00:11:35 +0000 |
commit | e33e0a5ea70567ff1a88ab60281b891cdcb095a9 (patch) | |
tree | 40b1f1a15107e00c2f3e720ee03275c82991531c /thirdparty/mbedtls/include | |
parent | bfa9be85d38ad935bd4b8198767db3fe1ab1dcda (diff) |
Disable support for VIA Padlock
This code defines a symbol 'unsupported' which is also in a newer
version of libwebsockets. To fix 32bit linux builds just disable
padlock support. Processors that support this are rare and old.
Diffstat (limited to 'thirdparty/mbedtls/include')
-rw-r--r-- | thirdparty/mbedtls/include/mbedtls/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/thirdparty/mbedtls/include/mbedtls/config.h b/thirdparty/mbedtls/include/mbedtls/config.h index 91cc5bddf8..51d66291a5 100644 --- a/thirdparty/mbedtls/include/mbedtls/config.h +++ b/thirdparty/mbedtls/include/mbedtls/config.h @@ -2477,7 +2477,9 @@ * * This modules adds support for the VIA PadLock on x86. */ -#define MBEDTLS_PADLOCK_C +// -- GODOT start -- +// #define MBEDTLS_PADLOCK_C +// -- GODOT end -- /** * \def MBEDTLS_PEM_PARSE_C |