You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In curl.6.67.0 version following definition is missing in curl.h.
#define STRINGPOINT CURLOPTTYPE_OBJECTPOINT
#define SLISTPOINT CURLOPTTYPE_OBJECTPOINT
This results in compilation failure on AIX with IBM xlc 13.1.3 compiler.
This is because in else condition for CURL_ISOCPP, these definitions are missing in curl.h.
Adding them resolves the issue.
The text was updated successfully, but these errors were encountered:
In curl.6.67.0 version following definition is missing in curl.h.
#define STRINGPOINT CURLOPTTYPE_OBJECTPOINT
#define SLISTPOINT CURLOPTTYPE_OBJECTPOINT
This results in compilation failure on AIX with IBM xlc 13.1.3 compiler.
This is because in else condition for CURL_ISOCPP, these definitions are missing in curl.h.
Adding them resolves the issue.
The text was updated successfully, but these errors were encountered: