ba8f55d7c1
- Disable unit-tests which are enabled by default if cmocka is found:
222e691739
- Drop --enable-iproute2 to enable netlink(3) support (and so drop
IFCONFIG, IPROUTE and ROUTE environment variables and keep NETSTAT
even if it is only used by tests/t_client.sh.in).
netlink is much faster than calling ifconfig or route and also enables
OpenVPN to run with less privileges.
- Update indentation in hash file (two spaces)
https://github.com/OpenVPN/openvpn/blob/release/2.5/Changes.rst
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
83 lines
2.0 KiB
Makefile
83 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# openvpn
|
|
#
|
|
################################################################################
|
|
|
|
OPENVPN_VERSION = 2.5.0
|
|
OPENVPN_SOURCE = openvpn-$(OPENVPN_VERSION).tar.xz
|
|
OPENVPN_SITE = http://swupdate.openvpn.net/community/releases
|
|
OPENVPN_DEPENDENCIES = host-pkgconf
|
|
OPENVPN_LICENSE = GPL-2.0
|
|
OPENVPN_LICENSE_FILES = COPYRIGHT.GPL
|
|
OPENVPN_CONF_OPTS = \
|
|
--disable-unit-tests \
|
|
$(if $(BR2_STATIC_LIBS),--disable-plugins)
|
|
OPENVPN_CONF_ENV = NETSTAT=/bin/netstat
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENVPN_SMALL),y)
|
|
OPENVPN_CONF_OPTS += \
|
|
--enable-small \
|
|
--disable-plugins
|
|
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
|
|
OPENVPN_CONF_OPTS += --disable-lzo
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
OPENVPN_DEPENDENCIES += libselinux
|
|
OPENVPN_CONF_OPTS += --enable-selinux
|
|
else
|
|
OPENVPN_CONF_OPTS += --disable-selinux
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
|
OPENVPN_DEPENDENCIES += linux-pam
|
|
OPENVPN_CONF_OPTS += --enable-plugin-auth-pam
|
|
else
|
|
OPENVPN_CONF_OPTS += --disable-plugin-auth-pam
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPENVPN_DEPENDENCIES += openssl
|
|
OPENVPN_CONF_OPTS += --with-crypto-library=openssl
|
|
else ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
|
OPENVPN_DEPENDENCIES += mbedtls
|
|
OPENVPN_CONF_OPTS += --with-crypto-library=mbedtls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PKCS11_HELPER),y)
|
|
OPENVPN_DEPENDENCIES += pkcs11-helper
|
|
OPENVPN_CONF_OPTS += --enable-pkcs11
|
|
else
|
|
OPENVPN_CONF_OPTS += --disable-pkcs11
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
OPENVPN_DEPENDENCIES += systemd
|
|
OPENVPN_CONF_OPTS += --enable-systemd
|
|
else
|
|
OPENVPN_CONF_OPTS += --disable-systemd
|
|
endif
|
|
|
|
define OPENVPN_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 $(@D)/src/openvpn/openvpn \
|
|
$(TARGET_DIR)/usr/sbin/openvpn
|
|
endef
|
|
|
|
define OPENVPN_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/openvpn/S60openvpn \
|
|
$(TARGET_DIR)/etc/init.d/S60openvpn
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|