copy trunk to buildroot-ng branch
[openwrt.git] / package / openvpn / Config.in
1 menu "openvpn........................... Open source VPN solution using SSL"
2
3 config BR2_PACKAGE_OPENVPN
4         prompt "openvpn........................... Open source VPN solution using SSL"
5         tristate
6         default m if CONFIG_DEVEL
7         select BR2_PACKAGE_KMOD_TUN
8         help
9           Open Source VPN solution using SSL
10           
11           http://openvpn.net/
12           
13           Depends: kmod-tun, libpthread
14
15 config BR2_COMPILE_OPENVPN_WITH_SERVER
16         prompt "Enable server support"
17         bool
18         default y
19         depends BR2_PACKAGE_OPENVPN
20
21 config BR2_COMPILE_OPENVPN_WITH_HTTP
22         prompt "Enable http proxy support"
23         bool
24         default y
25         depends BR2_PACKAGE_OPENVPN
26
27 config BR2_COMPILE_OPENVPN_WITH_OPENSSL
28         prompt "Enable openssl support"
29         bool
30         default y
31         depends BR2_PACKAGE_OPENVPN
32         select BR2_PACKAGE_LIBOPENSSL
33
34 config BR2_COMPILE_OPENVPN_WITH_LZO
35         prompt "Enable transparent compression (lzo)"
36         bool
37         default y
38         depends BR2_PACKAGE_OPENVPN
39         select BR2_PACKAGE_LIBLZO
40
41 config BR2_COMPILE_OPENVPN_WITH_PASSWORD_SAVE
42         prompt "Enable password saving"
43         bool
44         default y
45         depends BR2_PACKAGE_OPENVPN
46
47 config BR2_COMPILE_OPENVPN_WITH_SMALL
48         prompt "Enable smaller executable size (disable OCC, usage message, and verb 4 parm list)"
49         bool
50         default n
51         depends BR2_PACKAGE_OPENVPN
52
53 endmenu