Open sternenseemann opened 1 year ago
Seems like the new gcc-typechecker.h
is the culprit. A simple patch such as
diff --git a/curlc.c b/curlc.c
index d185008..7a80551 100644
--- a/curlc.c
+++ b/curlc.c
@@ -7,6 +7,9 @@
* (c) 2007-2009, Galois, Inc.
*
*/
+
+// The curl gcc cpp getinfo typechecker doesn't cope well with our wrappers
+#define CURL_DISABLE_TYPECHECK
#include <curl/curl.h>
int curl_easy_getinfo_long(void *curl, long tg, long *pl)
solves the issue.
This is blocking me too.
After upgrading to curl 7.87.0 we started seeing the following build failure: