From: Daniel Stenberg <daniel@haxx.se>
Date: Fri, 30 Aug 2002 11:00:54 +0000 (+0000)
Subject: --ca shows ca bundle path
X-Git-Tag: curl-7_10~71
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98e1605b170153dc4281d623dd8df6e50590ca80;p=curl

--ca shows ca bundle path
---

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@
 	;;