summaryrefslogtreecommitdiffstats
path: root/package/network/utils/curl/Config.in
blob: 87e5f99f577d83c62087c7b9009b40ed1e904c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
if PACKAGE_libcurl

choice
	prompt "SSL library"
	default LIBCURL_POLARSSL

config LIBCURL_POLARSSL
	bool "PolarSSL"

config LIBCURL_CYASSL
	bool "CyaSSL"

config LIBCURL_AXTLS
	bool "axTLS"

config LIBCURL_OPENSSL
	bool "OpenSSL"

config LIBCURL_GNUTLS
	bool "GNUTLS"

config LIBCURL_NOSSL
	bool "No SSL support"

endchoice

config LIBCURL_COOKIES
	bool "Enable cookies support"
	default y

config LIBCURL_CRYPTO_AUTH
	bool "Enable cryptographic authentication"
	default n

config LIBCURL_DICT
	bool "Enable DICT support"
	default n

config LIBCURL_FILE
	bool "Enable FILE support"
	default y

config LIBCURL_FTP
	bool "Enable FTP support"
	default y

config LIBCURL_GOPHER
	bool "Enable Gopher support"
	default n

config LIBCURL_HTTP
	bool "Enable HTTP support"
	default y

config LIBCURL_IMAP
	bool "Enable IMAP support"
	default n

config LIBCURL_LDAP
	bool "Enable LDAP support"
	default n

config LIBCURL_LDAPS
	bool "Enable LDAPS support"
	default n

config LIBCURL_LIBCURL_OPTION
	bool "Enable --libcurl C code generation support"
	default n

config LIBCURL_POP3
	bool "Enable POP3 support"
	default n

config LIBCURL_PROXY
	bool "Enable proxy support"
	default y

config LIBCURL_RTSP
	bool "Enable RTSP support"
	default n

config LIBCURL_SMTP
	bool "Enable SMTP support"
	default n

config LIBCURL_SSPI
	bool "Enable SSPI"
	default n

config LIBCURL_TELNET
	bool "Enable TELNET support"
	default n

config LIBCURL_TFTP
	bool "Enable TFTP support"
	default n

config LIBCURL_THREADED_RESOLVER
	bool "Enable threaded resolver"
	default n

config LIBCURL_TLS-SRP
	bool "Enable TLS-SRP authentication"
	default n

config LIBCURL_ZLIB
	bool "Use zlib"
	default n

endif