let ipkg fail when a package file to be installed is not found
[openwrt/staging/wigyori.git] / openwrt / 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_PACKAGE_OPENVPN_EASY_RSA
16 prompt "openvpn-easy-rsa................ simple shell scripts to manage a Certificate Authority"
17 tristate
18 default m if CONFIG_DEVEL
19 select BR2_PACKAGE_OPENSSL_UTIL
20 depends on BR2_PACKAGE_OPENVPN
21 help
22 collection of shell scripts to manage a simple CA infrastructure
23
24 Depends: openpvn, openssl-util
25
26 config BR2_COMPILE_OPENVPN_WITH_SERVER
27 prompt "Enable server support"
28 bool
29 default y
30 depends BR2_PACKAGE_OPENVPN
31
32 config BR2_COMPILE_OPENVPN_WITH_HTTP
33 prompt "Enable http proxy support"
34 bool
35 default y
36 depends BR2_PACKAGE_OPENVPN
37
38 config BR2_COMPILE_OPENVPN_WITH_OPENSSL
39 prompt "Enable openssl support"
40 bool
41 default y
42 depends BR2_PACKAGE_OPENVPN
43 select BR2_PACKAGE_LIBOPENSSL
44
45 config BR2_COMPILE_OPENVPN_WITH_LZO
46 prompt "Enable transparent compression (lzo)"
47 bool
48 default y
49 depends BR2_PACKAGE_OPENVPN
50 select BR2_PACKAGE_LIBLZO
51
52 config BR2_COMPILE_OPENVPN_WITH_PASSWORD_SAVE
53 prompt "Enable password saving"
54 bool
55 default y
56 depends BR2_PACKAGE_OPENVPN
57
58 config BR2_COMPILE_OPENVPN_WITH_SMALL
59 prompt "Enable smaller executable size (disable OCC, usage message, and verb 4 parm list)"
60 bool
61 default n
62 depends BR2_PACKAGE_OPENVPN
63
64 endmenu