mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 03:35:40 +00:00
Merge remote-tracking branch 'public/pr/1712' into mbedtls-2.1
This commit is contained in:
commit
7505ef255b
|
@ -12,6 +12,8 @@ Bugfix
|
|||
TrinityTonic. #1359.
|
||||
* Fix an issue with MicroBlaze support in bn_mul.h which was causing the
|
||||
build to fail. Found by zv-io. Fixes #1651.
|
||||
* Fix for redefinition of _WIN32_WINNT to avoid overriding a definition
|
||||
used by user applications. Found and fixed by Fabio Alessandrelli.
|
||||
|
||||
Changes
|
||||
* Support TLS testing in out-of-source builds using cmake.
|
||||
|
|
|
@ -34,11 +34,12 @@
|
|||
#if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(EFIX64) && \
|
||||
!defined(EFI32)
|
||||
|
||||
#ifdef _WIN32_WINNT
|
||||
#if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0501)
|
||||
#undef _WIN32_WINNT
|
||||
#endif
|
||||
/* Enables getaddrinfo() & Co */
|
||||
#define _WIN32_WINNT 0x0501
|
||||
#endif
|
||||
|
||||
#include <ws2tcpip.h>
|
||||
|
||||
#include <winsock2.h>
|
||||
|
|
Loading…
Reference in a new issue