1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-01 16:38:31 +00:00

mbedtls: Update to upstream version 2.28.8

(cherry picked from commit 915ca4dd45)
This commit is contained in:
Rémi Verschelde
2024-04-04 18:05:30 +02:00
parent 16bc127e00
commit eb281cc342
22 changed files with 263 additions and 120 deletions

View File

@@ -5,7 +5,7 @@
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
*/
#if defined(__linux__) && !defined(_GNU_SOURCE)
#if defined(__linux__) || defined(__midipix__) && !defined(_GNU_SOURCE)
/* Ensure that syscall() is available even when compiling with -std=c99 */
#define _GNU_SOURCE
#endif