Why to not change

#ifdef CURLOPT_COOKIELIST
   typedef cURLpp::OptionTrait< std::string, CURLOPT_COOKIELIST > 
CookieList;
#else
#ifdef CURLPP_ALLOW_NOT_AVAILABLE
   typedef cURLpp::NotAvailableOptionTrait< std::string > CookieList;
#endif
#endif

with

#if LIBCURL_VERSION_NUM >= 0x070e01
   typedef cURLpp::OptionTrait< std::string, CURLOPT_COOKIELIST > 
CookieList;
#else
#ifdef CURLPP_ALLOW_NOT_AVAILABLE
   typedef cURLpp::NotAvailableOptionTrait< std::string > CookieList;
#endif
#endif

-- 
Regards,
Igor Mironchick,
Intervale ©
#ICQ 492-597-570

_______________________________________________
cURLpp mailing list
[email protected]
http://www.rrette.com/mailman/listinfo/curlpp

Reply via email to