From 1406ace4d2e6a8fc7180dc080c431077fdc6e7cf Mon Sep 17 00:00:00 2001 From: SuperIlu Date: Sun, 1 Dec 2024 10:16:36 +0100 Subject: [PATCH] Added changelog Signed-off-by: SuperIlu --- ChangeLog.d/fix-compilation-with-djgpp.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ChangeLog.d/fix-compilation-with-djgpp.txt diff --git a/ChangeLog.d/fix-compilation-with-djgpp.txt b/ChangeLog.d/fix-compilation-with-djgpp.txt new file mode 100644 index 0000000000..45c565957e --- /dev/null +++ b/ChangeLog.d/fix-compilation-with-djgpp.txt @@ -0,0 +1,5 @@ +Bugfix: + * DJGPP does not provide `suseconds_t`, but defines `__unix__` + * `net_sockets.c` uses it for `mbedtls_net_usleep()` + * This fix makes use of the alternate codepath w/o `suseconds_t` if `__DJGPP__` is defined +