This repository has been archived by the owner on Sep 26, 2020. It is now read-only.
forked from curl/curl
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lists all SSL backends that were enabled at build-time. Suggested-by: Oleg Pudeyev Fixes curl#2128
- Loading branch information
Showing
3 changed files
with
13 additions
and
2 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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# | (__| |_| | _ <| |___ | ||
# \___|\___/|_| \_\_____| | ||
# | ||
# Copyright (C) 2001 - 2012, Daniel Stenberg, <[email protected]>, et al. | ||
# Copyright (C) 2001 - 2017, Daniel Stenberg, <[email protected]>, et al. | ||
# | ||
# This software is licensed as described in the file COPYING, which | ||
# you should have received as part of this distribution. The terms | ||
|
@@ -44,6 +44,7 @@ Available values for OPTION include: | |
--libs library linking information | ||
--prefix curl install prefix | ||
--protocols newline separated list of enabled protocols | ||
--ssl-backends output the SSL backends libcurl was built to support | ||
--static-libs static libcurl library linking information | ||
--version output version information | ||
--vernum output the version information as a number (hexadecimal) | ||
|
@@ -153,6 +154,9 @@ while test $# -gt 0; do | |
echo ${CURLLIBDIR}-lcurl | ||
fi | ||
;; | ||
--ssl-backends) | ||
echo "@SSL_BACKENDS@" | ||
;; | ||
|
||
--static-libs) | ||
if test "X@ENABLE_STATIC@" != "Xno" ; then | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
.\" * | (__| |_| | _ <| |___ | ||
.\" * \___|\___/|_| \_\_____| | ||
.\" * | ||
.\" * Copyright (C) 1998 - 2012, Daniel Stenberg, <[email protected]>, et al. | ||
.\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <[email protected]>, et al. | ||
.\" * | ||
.\" * This software is licensed as described in the file COPYING, which | ||
.\" * you should have received as part of this distribution. The terms | ||
|
@@ -63,6 +63,10 @@ the time of writing, this list may include HTTP, HTTPS, FTP, FTPS, FILE, | |
TELNET, LDAP, DICT. Do not assume any particular order. The protocols will | ||
be listed using uppercase and are separated by newlines. There may be none, | ||
one, or several protocols in the list. (Added in 7.13.0) | ||
.IP "--ssl-backends" | ||
Lists the SSL backends that were enabled when libcurl was built. It might be | ||
no, one or several names. If more than one name, they will appear | ||
comma-separated. (Added in 7.58.0) | ||
.IP "--static-libs" | ||
Shows the complete set of libs and other linker options you will need in order | ||
to link your application with libcurl statically. (Added in 7.17.1) | ||
|