diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-04-18 09:28:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-04-18 09:28:55 +0000 |
commit | 1ee7f92ce4da92337cb284cb19d4c73a4d5fc8eb (patch) | |
tree | e88e0933d301b62cffec4d6c6d343c714a287cd5 /curl-config.in | |
parent | 3fd65fb7d83a8e3e6acd1a40c48b46088ebd536f (diff) | |
download | curl-1ee7f92ce4da92337cb284cb19d4c73a4d5fc8eb.tar.gz |
configure sets variables that curl-config uses to display what features
that have been built-in
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/curl-config.in b/curl-config.in index 1f396fa2a..d2d984212 100644 --- a/curl-config.in +++ b/curl-config.in @@ -14,13 +14,14 @@ usage() cat <<EOF Usage: curl-config [OPTION] -Available values for OPTION are: +Available values for OPTION include: - --prefix curl install prefix - --libs library linking information - --cflags pre-processor and compiler flags - --help display this help and exit - --version output version information + --cflags pre-processor and compiler flags + --feature newline separated list of enabled features + --help display this help and exit + --libs library linking information + --prefix curl install prefix + --version output version information EOF exit $1 @@ -44,6 +45,18 @@ while test $# -gt 0; do echo $prefix ;; + --feature) + if test "@OPENSSL_ENABLED@" = "1"; then + echo "SSL" + fi + if test "@KRB4_ENABLED@" = "1"; then + echo "KRB4" + fi + if test "@IPV6_ENABLED@" = "1"; then + echo "IPv6" + fi + ;; + --version) echo libcurl @VERSION@ exit 0 @@ -54,7 +67,7 @@ while test $# -gt 0; do ;; --cflags) - echo @CPPFLAGS@ @CFLAGS@ + echo @CPPFLAGS@ ;; --libs) |