mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-23 01:42:41 +00:00
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.
14 lines
345 B
Diff
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
|
|
|