From 7e312cb875c98eee7640f1afd9aa3907c85a04f6 Mon Sep 17 00:00:00 2001 From: Arkadiusz Bokowy Date: Wed, 25 Jan 2023 19:21:27 +0100 Subject: [PATCH] Compile libwebsockets with intptr_t support enabled (#24643) If intptr_t support is not available (should be detected by the configuration script which is not run in our setup) the libwebsockets projects falls back to "unsigned long long" which is not right for 32-bit platforms (e.g. Tizen armv7). All modern toolchains should support intptr_t typedef. --- third_party/libwebsockets/lws_config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/libwebsockets/lws_config.h b/third_party/libwebsockets/lws_config.h index cbf0383352b2b0..4cb03e73fdab39 100644 --- a/third_party/libwebsockets/lws_config.h +++ b/third_party/libwebsockets/lws_config.h @@ -50,6 +50,7 @@ // // Implied Options // +#define LWS_HAS_INTPTR_T #define LWS_WITH_POLL #define LWS_MAX_SMP 1