Closed triplef closed 1 year ago
libcurl/lib/formdata.c:796:10: error: call to undeclared function 'fseeko'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] return fseeko(stream, (off_t)offset, whence); ^
This error was also discussed in https://github.com/curl/curl/issues/12086.
Fixed by updating Android target SDK to 24, which has fseeko available on armeabi-v7a.
Here's the fix for Android < 24: https://github.com/curl/curl/pull/13264, in case someone hits the same issue.
This error was also discussed in https://github.com/curl/curl/issues/12086.