jonathanleang / ios-static-libraries

Automatically exported from code.google.com/p/ios-static-libraries
0 stars 0 forks source link

cUrl without ssl? #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
libCurl is build without ssl support.
You can check it like this:

    curl_version_info_data *vinfo = curl_version_info( CURLVERSION_NOW );
    if( vinfo->features & CURL_VERSION_SSL )
    {
        NSLog("LIBCURL: SSL Support Enabled\n");
    }

Original issue reported on code.google.com by roman72s...@googlemail.com on 20 Sep 2011 at 12:52