summaryrefslogtreecommitdiffstats
path: root/rules/libcurl.in
diff options
context:
space:
mode:
authorHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
committerHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
commit17df9f2c792259af0074adf384745903c2b972a4 (patch)
tree9b233de816eef1a7b52ba2735962f7b559d66406 /rules/libcurl.in
parente77d46edfa498ea6b9e482eed2f9a4783fb8d66d (diff)
downloadptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.gz
ptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.xz
* change bool to tristate .in Files from H to M
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8312 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libcurl.in')
-rw-r--r--rules/libcurl.in15
1 files changed, 6 insertions, 9 deletions
diff --git a/rules/libcurl.in b/rules/libcurl.in
index bc26bdd50..a4c50872d 100644
--- a/rules/libcurl.in
+++ b/rules/libcurl.in
@@ -1,5 +1,6 @@
menuconfig LIBCURL
- bool "libcurl "
+ tristate
+ prompt "libcurl "
select OPENSSL if LIBCURL__SSL
select ZLIB
help
@@ -10,38 +11,34 @@ menuconfig LIBCURL
(Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume,
proxy tunneling and a busload of other useful tricks.
+if LIBCURL
+
config LIBCURL__CURL
bool "install curl program"
- depends on LIBCURL
config LIBCURL__HTTP
bool "http"
- depends on LIBCURL
default y
config LIBCURL__COOKIES
bool "cookies support"
- depends on LIBCURL
depends on LIBCURL__HTTP
config LIBCURL__FTP
bool "ftpt"
- depends on LIBCURL
default y
config LIBCURL__FILE
bool "file"
- depends on LIBCURL
config LIBCURL__SSL
bool "ssl"
- depends on LIBCURL
depends on BROKEN
config LIBCURL__CRYPTO_AUTH
bool "cryptographic authentication"
- depends on LIBCURL
config LIBCURL__IPV6
bool "ipv6"
- depends on LIBCURL
+
+endif