mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
a46ac23465
Changelog: https://github.com/OpenVPN/openvpn/blob/release/2.6/ChangeLog https://github.com/OpenVPN/openvpn/blob/release/2.6/Changes.rst Added mandatory dependency to libcap-ng due to upstream commit2e359a0882
Added optional dependency to libnl due to upstream commitf63c9b1edb
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_OPENVPN
|
|
bool "openvpn"
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_LIBCAP_NG
|
|
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
|
help
|
|
OpenVPN is a full-featured SSL VPN solution which can
|
|
accomodate a wide range of configurations, including road
|
|
warrior access, home/office/campus telecommuting, WiFi
|
|
security, secure branch office linking, and enterprise-scale
|
|
remote access solutions with load balancing, failover, and
|
|
fine-grained access-controls.
|
|
|
|
http://openvpn.net/
|
|
|
|
if BR2_PACKAGE_OPENVPN
|
|
|
|
config BR2_PACKAGE_OPENVPN_LZ4
|
|
bool "LZ4 compression"
|
|
default y
|
|
select BR2_PACKAGE_LZ4
|
|
help
|
|
Enable LZ4 compression.
|
|
|
|
config BR2_PACKAGE_OPENVPN_LZO
|
|
bool "LZO compression"
|
|
default y
|
|
select BR2_PACKAGE_LZO
|
|
help
|
|
Enable LZO compression.
|
|
|
|
config BR2_PACKAGE_OPENVPN_SMALL
|
|
bool "Optimize for small size"
|
|
help
|
|
Make OpenVPN as small as possible.
|
|
You loose eurephia, debugging info, help messages and more.
|
|
It saves around 100 KiB in binary file size.
|
|
|
|
endif
|