Files
termux-packages/packages/nodejs/deps-uvwasi-src-uvwasi.c.patch
termux-pacman-bot a7f58b5398 fix(main/nodejs): test failures for test-wasi-pthread
This relies on fd_write, which seems to be not made available for
Android for reasons I am not aware of. But the uvwasi does not seem to
rely on platform specific code, but relies on libuv which should be
platform depenedent.
2025-10-02 21:34:57 +00:00

14 lines
345 B
Diff

diff --git a/deps/uvwasi/src/uvwasi.c b/deps/uvwasi/src/uvwasi.c
index c33f5c4dee9..908c8c14959 100644
--- a/deps/uvwasi/src/uvwasi.c
+++ b/deps/uvwasi/src/uvwasi.c
@@ -15,7 +15,7 @@
#define UVWASI__READDIR_NUM_ENTRIES 1
-#if !defined(_WIN32) && !defined(__ANDROID__)
+#if !defined(_WIN32)
# define UVWASI_FD_READDIR_SUPPORTED 1
#endif