reorganize/rationalize/format package menuconfig,
[10.03/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         select BR2_PACKAGE_LIBOPENSSL
9         help
10           Open Source VPN solution using SSL
11           
12           http://openvpn.net/
13           
14           Depends: kmod-tun, libpthread, openssl
15
16 config BR2_COMPILE_OPENVPN_WITH_SERVER
17         prompt "Enable server support"
18         bool
19         default y
20         depends BR2_PACKAGE_OPENVPN
21
22 config BR2_COMPILE_OPENVPN_WITH_HTTP
23         prompt "Enable http proxy support"
24         bool
25         default y
26         depends BR2_PACKAGE_OPENVPN
27
28 config BR2_COMPILE_OPENVPN_WITH_LZO
29         prompt "Enable transparent compression (lzo)"
30         bool
31         default y
32         depends BR2_PACKAGE_OPENVPN
33         select BR2_PACKAGE_LIBLZO
34
35 endmenu