summaryrefslogtreecommitdiff
path: root/curl-config.in
diff options
context:
space:
mode:
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>2010-08-12 08:18:31 +0530
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>2010-08-12 08:18:31 +0530
commitb9a2332a084c545f599aaed672d78ece201d4fa0 (patch)
tree256596af025cb4b4ef8cbfcabecc546fe68fb8f3 /curl-config.in
parente4319638fc5e1b95f8edbc7caf96fec6ba6dbfde (diff)
Imported Upstream version 7.21.1
Diffstat (limited to 'curl-config.in')
-rw-r--r--curl-config.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/curl-config.in b/curl-config.in
index ebda1299..27b9f7ff 100644
--- a/curl-config.in
+++ b/curl-config.in
@@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 2001 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 2001 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -32,6 +32,7 @@ Usage: curl-config [OPTION]
Available values for OPTION include:
+ --built-shared says 'yes' if libcurl was built shared
--ca ca bundle install path
--cc compiler
--cflags pre-processor and compiler flags
@@ -64,6 +65,10 @@ while test $# -gt 0; do
esac
case "$1" in
+ --built-shared)
+ echo @ENABLE_SHARED@
+ ;;
+
--ca)
echo "@CURL_CA_BUNDLE@"
;;
@@ -87,6 +92,7 @@ while test $# -gt 0; do
echo "$protocol"
done
;;
+
--version)
echo libcurl @VERSION@
exit 0