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