mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-02 07:34:24 +01:00
Merge branch 'mbedtls-1.3' into mbedtls-1.3-restricted
This commit is contained in:
commit
c5cf89e1cc
@ -33,6 +33,7 @@ Bugfix
|
|||||||
* Fix out-of-memory problem when parsing 4096-bit PKCS8-encrypted RSA keys.
|
* Fix out-of-memory problem when parsing 4096-bit PKCS8-encrypted RSA keys.
|
||||||
Found independently by Florian in the mbed TLS forum and by Mishamax.
|
Found independently by Florian in the mbed TLS forum and by Mishamax.
|
||||||
#878, #1019.
|
#878, #1019.
|
||||||
|
* Fix build problems on Windows. Contributed by Nicholas Wilson.
|
||||||
|
|
||||||
= mbed TLS 1.3.21 branch released 2017-08-10
|
= mbed TLS 1.3.21 branch released 2017-08-10
|
||||||
|
|
||||||
|
@ -10,6 +10,11 @@ if(ENABLE_ZLIB_SUPPORT)
|
|||||||
set(libs ${libs} ${ZLIB_LIBRARIES})
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
||||||
endif(ENABLE_ZLIB_SUPPORT)
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
|
find_package(Perl)
|
||||||
|
if(NOT PERL_FOUND)
|
||||||
|
message(FATAL_ERROR "Cannot build test suites without Perl")
|
||||||
|
endif()
|
||||||
|
|
||||||
function(add_test_suite suite_name)
|
function(add_test_suite suite_name)
|
||||||
if(ARGV1)
|
if(ARGV1)
|
||||||
set(data_name ${ARGV1})
|
set(data_name ${ARGV1})
|
||||||
@ -19,7 +24,7 @@ function(add_test_suite suite_name)
|
|||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT test_suite_${data_name}.c
|
OUTPUT test_suite_${data_name}.c
|
||||||
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_code.pl ${CMAKE_CURRENT_SOURCE_DIR}/suites test_suite_${suite_name} test_suite_${data_name}
|
COMMAND ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_code.pl ${CMAKE_CURRENT_SOURCE_DIR}/suites test_suite_${suite_name} test_suite_${data_name}
|
||||||
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_code.pl mbedtls suites/helpers.function suites/main_test.function suites/test_suite_${suite_name}.function suites/test_suite_${data_name}.data
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_code.pl mbedtls suites/helpers.function suites/main_test.function suites/test_suite_${suite_name}.function suites/test_suite_${data_name}.data
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#include <basetsd.h>
|
#include <basetsd.h>
|
||||||
typedef UINT32 uint32_t;
|
typedef UINT32 uint32_t;
|
||||||
|
#define strncasecmp _strnicmp
|
||||||
|
#define strcasecmp _stricmp
|
||||||
#else
|
#else
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user