mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -4,14 +4,13 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPENVPN_VERSION = 2.4.7
|
||||
OPENVPN_VERSION = 2.4.9
|
||||
OPENVPN_SOURCE = openvpn-$(OPENVPN_VERSION).tar.xz
|
||||
OPENVPN_SITE = http://swupdate.openvpn.net/community/releases
|
||||
OPENVPN_DEPENDENCIES = host-pkgconf openssl
|
||||
OPENVPN_LICENSE = GPL-2.0
|
||||
OPENVPN_LICENSE_FILES = COPYRIGHT.GPL
|
||||
OPENVPN_CONF_OPTS = \
|
||||
--disable-plugin-auth-pam \
|
||||
--enable-iproute2 \
|
||||
--with-crypto-library=openssl \
|
||||
$(if $(BR2_STATIC_LIBS),--disable-plugins)
|
||||
@@ -38,6 +37,34 @@ 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_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
|
||||
|
||||
Reference in New Issue
Block a user