This part of code seems to be wrong in eb.h:
#ifndef CURLE_PEER_FAILED_VERIFICATION
#define CURLE_PEER_FAILED_VERIFICATION -1
#endif
#ifndef CURLE_REMOTE_ACCESS_DENIED
#define CURLE_REMOTE_ACCESS_DENIED -2
#endif
Since in curl/curl.h, those are enumerations, not macro constants:
typedef enum {
CURLE_OK = 0,
CURLE_REMOTE_ACCESS_DENIED, /* 9 ...*/
Ifndef will be always true in this case, creating new macros.
--
Paul Onyschuk
_______________________________________________
Edbrowse-dev mailing list
[email protected]
http://lists.the-brannons.com/mailman/listinfo/edbrowse-dev