summaryrefslogtreecommitdiffstats
path: root/rules/libcurl.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-05-26 12:28:49 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-05-26 12:28:49 +0000
commit13637473a52bc37c318e89eb21d36b15b3f671aa (patch)
tree6c52bfbd5af9f80968beb722154ac9f8d6c00ec1 /rules/libcurl.in
parent1238f3e69f5bf4edf74d28ad701dcdff7b246889 (diff)
downloadptxdist-13637473a52bc37c318e89eb21d36b15b3f671aa.tar.gz
ptxdist-13637473a52bc37c318e89eb21d36b15b3f671aa.tar.xz
* libcurl.in, libcurl.make:
added libcurl, patch by Daniel Schnell cleanups git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8245 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libcurl.in')
-rw-r--r--rules/libcurl.in47
1 files changed, 47 insertions, 0 deletions
diff --git a/rules/libcurl.in b/rules/libcurl.in
new file mode 100644
index 000000000..bc26bdd50
--- /dev/null
+++ b/rules/libcurl.in
@@ -0,0 +1,47 @@
+menuconfig LIBCURL
+ bool "libcurl "
+ select OPENSSL if LIBCURL__SSL
+ select ZLIB
+ help
+ curl is a command line tool for transferring files with URL syntax, supporting
+ FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE.
+ curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading,
+ HTTP form based upload, proxies, cookies, user+password authentication
+ (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume,
+ proxy tunneling and a busload of other useful tricks.
+
+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