openvpn: Add explicit support for external lz4

2.4.0 added lz4 support. Make that choice explicit or the bundled compat-lz4
"stub" will be used.

Signed-off-by: Jeroen Roovers <jer@airfi.aero>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Jeroen Roovers 2017-03-24 08:12:03 +01:00 committed by Thomas Petazzoni
parent 9ecbe727aa
commit 65e6f6ff2a
2 changed files with 13 additions and 0 deletions

View file

@ -14,6 +14,13 @@ config BR2_PACKAGE_OPENVPN
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

View file

@ -35,6 +35,12 @@ else
OPENVPN_CONF_ENV += IPROUTE=/sbin/ip
endif
ifeq ($(BR2_PACKAGE_OPENVPN_LZ4),y)
OPENVPN_DEPENDENCIES += lz4
else
OPENVPN_CONF_OPTS += --disable-lz4
endif
ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
OPENVPN_DEPENDENCIES += lzo
else