diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-30 11:00:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-30 11:00:54 +0000 |
commit | 98e1605b170153dc4281d623dd8df6e50590ca80 (patch) | |
tree | 11bca14f584777186339309f56ef095811604435 /curl-config.in | |
parent | 73f0e32d1a2e0a2b3e9845281197baf8471d96ed (diff) | |
download | curl-98e1605b170153dc4281d623dd8df6e50590ca80.tar.gz |
--ca shows ca bundle path
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/curl-config.in b/curl-config.in index 1eba2e00e..f1b7de2a2 100644 --- a/curl-config.in +++ b/curl-config.in @@ -16,6 +16,7 @@ Usage: curl-config [OPTION] Available values for OPTION include: + --ca ca bundle install path --cc compiler --cflags pre-processor and compiler flags --feature newline separated list of enabled features @@ -43,6 +44,10 @@ while test $# -gt 0; do esac case "$1" in + --ca) + echo @CURL_CA_BUNDLE@ + ;; + --cc) echo @CC@ ;; |