xref: /OK3568_Linux_fs/buildroot/package/openvpn/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_OPENVPN
2	bool "openvpn"
3	depends on BR2_USE_MMU # fork()
4	select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS
5	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
6	help
7	  OpenVPN is a full-featured SSL VPN solution which can
8	  accomodate a wide range of configurations, including road
9	  warrior access, home/office/campus telecommuting, WiFi
10	  security, secure branch office linking, and enterprise-scale
11	  remote access solutions with load balancing, failover, and
12	  fine-grained access-controls.
13
14	  http://openvpn.net/
15
16if BR2_PACKAGE_OPENVPN
17
18config BR2_PACKAGE_OPENVPN_LZ4
19	bool "LZ4 compression"
20	default y
21	select BR2_PACKAGE_LZ4
22	help
23	  Enable LZ4 compression.
24
25config BR2_PACKAGE_OPENVPN_LZO
26	bool "LZO compression"
27	default y
28	select BR2_PACKAGE_LZO
29	help
30	  Enable LZO compression.
31
32config BR2_PACKAGE_OPENVPN_SMALL
33	bool "Optimize for small size"
34	help
35	  Make OpenVPN as small as possible.
36	  You loose eurephia, debugging info, help messages and more.
37	  It saves around 100 KiB in binary file size.
38
39endif
40