mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-14 13:50:56 +00:00
- 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
15 lines
280 B
Diff
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
|
|
|
|
/***********************************************/
|