скомпилировал код в ubuntu - все работает.
скомпилировал код в винде (Windows XP, CodeBlocks) - "protocol https not supported or disabled in libcurl "
вот участок кода, в котором используется libcurl:
int GetContent(const char * s)
{
char errorBuffer[CURL_ERROR_SIZE];
CURL *curl;
CURLcode result;
curl = curl_easy_init();
if (curl)
{
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorBuffer);
curl_easy_setopt(curl, CURLOPT_URL, s);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writer);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer);
result = curl_easy_perform(curl);
if (result == CURLE_OK)
cout << buffer << "\n";
else
cout << "Ошибка! " << errorBuffer << endl;
}
curl_easy_cleanup(curl);
return 0;
}