--ca shows ca bundle path
authorDaniel Stenberg <daniel@haxx.se>
Fri, 30 Aug 2002 11:00:54 +0000 (11:00 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 30 Aug 2002 11:00:54 +0000 (11:00 +0000)
curl-config.in

index 1eba2e0..f1b7de2 100644 (file)
@@ -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@
        ;;