shaka-packager/packager/third_party/curl
KongQun Yang 70d055c16c Fix SSL CA cert issue on CentOS
Fix "Problem with the SSL CA cert" issue @
https://github.com/google/edash-packager/issues/6. On Ubuntu, CURL_CA_BUNDLE
is located at "/etc/ssl/certs/ca-certificates.crt" while on CentOs, it is
located at "/etc/ssl/certs/ca-bundle.crt".

With this change, GYP scans the common appearing locations for SSL CA cert.

Change-Id: I838bae3954ec51f1430c900d1e82596d45a4db84
2015-01-05 20:00:17 +00:00
..
config Fix SSL CA cert issue on CentOS 2015-01-05 20:00:17 +00:00
README.packager Move source code into packager directory 2014-10-02 12:32:14 -07:00
curl.gyp Fix SSL CA cert issue on CentOS 2015-01-05 20:00:17 +00: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/buildconf on
        linux platform, with a few features disabled to build correctly on a
        fresh linux box.

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

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