Skip to content

Commit

Permalink
Compile libwebsockets with intptr_t support enabled (#24643)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
arkq authored and pull[bot] committed Oct 20, 2023
1 parent b04b594 commit 2305811
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions third_party/libwebsockets/lws_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
//
// Implied Options
//
#define LWS_HAS_INTPTR_T
#define LWS_WITH_POLL
#define LWS_MAX_SMP 1

Expand Down

0 comments on commit 2305811

Please sign in to comment.