-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[curl] Add support of different features. (#2862)
* [curl] Add support of different features. Default-Features: openssl, http2, ssh (as in previous builds) Feature: curl Description: Builds curl executable (placed in the /tools directory) Feature: http-only Description: Disables all protocols except HTTP/HTTPS/HTTP2 Feature: http2 Build-Depends: nghttp2, openssl Description: HTTP2 support (requires openssl) Feature: openssl Build-Depends: openssl Description: SSL support via OpenSSL Feature: winssl Description: SSL support via Schannel Feature: ssh Build-Depends: libssh2 Description: SSH support via libssh2 * [cpr] Add features of the curl library. * [cpr] Remove transitive features * [curl] Remove http2 from default features. Remove winssl feature. Rename "curl" feature to "tool". * [curl] Fixup curl -> tool renaming * [curl] Further refactoring of WINSSL/Openssl -- use single ssl feature.
- Loading branch information
1 parent
fd08d14
commit f272a87
Showing
3 changed files
with
83 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: cpr | ||
Version: 1.3.0-1 | ||
Version: 1.3.0-3 | ||
Description: C++ Requests is a simple wrapper around libcurl inspired by the excellent Python Requests project. | ||
Build-Depends: curl | ||
Build-Depends: curl[core] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
Source: curl | ||
Version: 7.58.0-1 | ||
Build-Depends: zlib, openssl, libssh2, nghttp2 | ||
Version: 7.58.0-4 | ||
Build-Depends: zlib | ||
Description: A library for transferring data with URLs | ||
# For WINSSL create target triplet which contains set(CURL_USE_WINSSL ON) | ||
Default-Features: ssl | ||
# For WINSSL add set(CURL_USE_WINSSL ON) to your triplet file | ||
|
||
Feature: tool | ||
Description: Builds curl executable | ||
|
||
Feature: non-http | ||
Description: Enables protocols beyond HTTP/HTTPS/HTTP2 | ||
|
||
Feature: http2 | ||
Build-Depends: nghttp2, ssl | ||
Description: HTTP2 support | ||
|
||
Feature: ssl | ||
Build-Depends: openssl | ||
Description: SSL support | ||
|
||
Feature: ssh | ||
Build-Depends: libssh2, curl[non-http] | ||
Description: SSH support via libssh2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters