shaka-packager/packager/third_party/curl
Thomas Inskip 224747db0b libcurl build for Windows
Change-Id: Ie14613d36509b3f45220092c5c196b14fd4b0a10
2016-08-03 16:05:40 -07:00
..
config MacOSX: Configure curl for MacOSX 2016-01-22 18:50:05 -08:00
README.packager Switch to boringssl. Also update curl accordingly. 2015-10-16 20:10:38 +00:00
curl.gyp libcurl build for Windows 2016-08-03 16:05:40 -07:00

README.packager

Name: curl
URL: http://curl.haxx.se/dev/
License: MIT/X
License File: source/COPYING
Local Modifications: None

Description:
libcurl is a free and easy-to-use client-side URL transfer library. libcurl
supports SSL certificates, HTTP GET, HTTP POST, HTTP PUT, and various other
transfer protocols.

**************************************************************************
Description of source tree.

1) config/
    Directory containing configuration files, which are required to build
    libcurl and curl correctly. On linux platform, an *auto-generated*
    configuration file "config/linux/curl_config.h" is used; the library uses
    the configuration files coming with libcurl distribution
    "source/lib/config-*.h" on other platforms.

    config/curl/curlbuild.h
        Curl build file renamed from source/include/curl/curlbuild.h.dist

    config/dummy_tool_hugehelp.c
        A dummy manual required to build curl command line tool.

    config/linux/curl_config.h
        An *auto-generated* configuration file by running "source/configure
        --with-ssl --without-ca-bundle --without-ca-path --without-zlib
        --without-libidn --without-librtmp" on linux platform, with a few
        features disabled to build correctly on a fresh linux box.

    config/linux/find_curl_ca_bundle.sh
        A script used to find the path to curl_ca_bundle in the target system.

2) curl.gyp
    A gyp build file for the library. Manually maintained.

3) source/
    Directory containing curl source codes from github without modification.