Files
termux-packages/x11-packages/tinyemu/005-fix-curl-include.patch
termux-pacman-bot 9ef20704bc fix(x11/tinyemu): fix include of libcurl
- Progress on https://github.com/termux/termux-packages/issues/23492

- Fixes `curl/multi.h:429:23: error: expected identifier or '('`
  - it seems like `curl.h` should be included, which then includes `multi.h`, because including `multi.h` directly results in the error
2026-01-03 08:06:38 +00:00

15 lines
280 B
Diff

Fixes:
curl/multi.h:429:23: error: expected identifier or '('
--- a/fs_wget.c
+++ b/fs_wget.c
@@ -39,7 +39,7 @@
#if defined(EMSCRIPTEN)
#include <emscripten.h>
#else
-#include <curl/multi.h>
+#include <curl/curl.h>
#endif
/***********************************************/