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>
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
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