curl: move to core packages
[openwrt/svn-archive/archive.git] / package / network / utils / curl / Config.in
1 menu "Configuration"
2 depends on PACKAGE_libcurl
3
4 choice
5 prompt "SSL library"
6 default LIBCURL_POLARSSL
7
8 config LIBCURL_POLARSSL
9 bool "PolarSSL"
10
11 config LIBCURL_CYASSL
12 bool "CyaSSL"
13
14 config LIBCURL_AXTLS
15 bool "axTLS"
16
17 config LIBCURL_OPENSSL
18 bool "OpenSSL"
19
20 config LIBCURL_GNUTLS
21 bool "GNUTLS"
22
23 config LIBCURL_NOSSL
24 bool "No SSL support"
25
26 endchoice
27
28 config LIBCURL_COOKIES
29 bool "Enable cookies support"
30 default y
31
32 config LIBCURL_CRYPTO_AUTH
33 bool "Enable cryptographic authentication"
34 default n
35
36 config LIBCURL_DICT
37 bool "Enable DICT support"
38 default n
39
40 config LIBCURL_FILE
41 bool "Enable FILE support"
42 default y
43
44 config LIBCURL_FTP
45 bool "Enable FTP support"
46 default y
47
48 config LIBCURL_GOPHER
49 bool "Enable Gopher support"
50 default n
51
52 config LIBCURL_HTTP
53 bool "Enable HTTP support"
54 default y
55
56 config LIBCURL_IMAP
57 bool "Enable IMAP support"
58 default n
59
60 config LIBCURL_LDAP
61 bool "Enable LDAP support"
62 default n
63
64 config LIBCURL_LDAPS
65 bool "Enable LDAPS support"
66 default n
67
68 config LIBCURL_LIBCURL_OPTION
69 bool "Enable --libcurl C code generation support"
70 default n
71
72 config LIBCURL_POP3
73 bool "Enable POP3 support"
74 default n
75
76 config LIBCURL_PROXY
77 bool "Enable proxy support"
78 default n
79
80 config LIBCURL_RTSP
81 bool "Enable RTSP support"
82 default n
83
84 config LIBCURL_SMTP
85 bool "Enable SMTP support"
86 default n
87
88 config LIBCURL_SSPI
89 bool "Enable SSPI"
90 default n
91
92 config LIBCURL_TELNET
93 bool "Enable TELNET support"
94 default n
95
96 config LIBCURL_TFTP
97 bool "Enable TFTP support"
98 default n
99
100 config LIBCURL_THREADED_RESOLVER
101 bool "Enable threaded resolver"
102 default n
103
104 config LIBCURL_TLS-SRP
105 bool "Enable TLS-SRP authentication"
106 default n
107
108 config LIBCURL_ZLIB
109 bool "Use zlib"
110 default n
111
112 endmenu