mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
From 0fed64a91d894b46105bf7e8b16edea4d90ab70c Mon Sep 17 00:00:00 2001
|
||||
From: Antonio Quartulli <a@unstable.cc>
|
||||
Date: Thu, 21 Apr 2022 15:19:09 +0200
|
||||
Subject: [PATCH] auth-pam.c: add missing include limits.h
|
||||
|
||||
On most systems limits.h is pulled in by some other header and thus no
|
||||
error is ever triggered, but it's possible to find the right environment
|
||||
which lackis this and prevents compiling auth-pam.c (possibly when using
|
||||
LibreSSL).
|
||||
|
||||
Include the header explicitly as it includes the definition of PATH_MAX.
|
||||
|
||||
(note that this bug is fixed in Gentoo since 2020 by including a custom
|
||||
patch, but apparently the issue was never reported upstream)
|
||||
|
||||
Reported-by: Michelangelo Scopelliti <kernelpanic@gmx.com>
|
||||
Signed-off-by: Antonio Quartulli <a@unstable.cc>
|
||||
Acked-by: Gert Doering <gert@greenie.muc.de>
|
||||
Message-Id: <20220421131909.32053-1-a@unstable.cc>
|
||||
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg24136.html
|
||||
Signed-off-by: Gert Doering <gert@greenie.muc.de>
|
||||
|
||||
[Retrieved from:
|
||||
https://github.com/OpenVPN/openvpn/commit/0fed64a91d894b46105bf7e8b16edea4d90ab70c]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
src/plugins/auth-pam/auth-pam.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/plugins/auth-pam/auth-pam.c b/src/plugins/auth-pam/auth-pam.c
|
||||
index f893b51fe3..7033944568 100644
|
||||
--- a/src/plugins/auth-pam/auth-pam.c
|
||||
+++ b/src/plugins/auth-pam/auth-pam.c
|
||||
@@ -47,6 +47,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <signal.h>
|
||||
#include <syslog.h>
|
||||
+#include <limits.h>
|
||||
#include "utils.h"
|
||||
|
||||
#include <openvpn-plugin.h>
|
||||
@@ -1,7 +1,8 @@
|
||||
config BR2_PACKAGE_OPENVPN
|
||||
bool "openvpn"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
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
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally calculated after checking signature
|
||||
sha256 641f3add8694b2ccc39fd4fd92554e4f089ad16a8db6d2b473ec284839a5ebe2 openvpn-2.4.9.tar.xz
|
||||
sha256 1fcb78d7e478bb8a9408010bdc91b36e213b1facfad093df3f7ce7e28af19043 COPYRIGHT.GPL
|
||||
sha256 333a7ef3d5b317968aca2c77bdc29aa7c6d6bb3316eb3f79743b59c53242ad3d openvpn-2.5.6.tar.gz
|
||||
sha256 1fcb78d7e478bb8a9408010bdc91b36e213b1facfad093df3f7ce7e28af19043 COPYRIGHT.GPL
|
||||
|
||||
@@ -4,20 +4,17 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
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_VERSION = 2.5.6
|
||||
OPENVPN_SITE = https://swupdate.openvpn.net/community/releases
|
||||
OPENVPN_DEPENDENCIES = host-pkgconf
|
||||
OPENVPN_LICENSE = GPL-2.0
|
||||
OPENVPN_LICENSE_FILES = COPYRIGHT.GPL
|
||||
OPENVPN_CPE_ID_VENDOR = openvpn
|
||||
OPENVPN_SELINUX_MODULES = openvpn
|
||||
OPENVPN_CONF_OPTS = \
|
||||
--enable-iproute2 \
|
||||
--with-crypto-library=openssl \
|
||||
--disable-unit-tests \
|
||||
$(if $(BR2_STATIC_LIBS),--disable-plugins)
|
||||
OPENVPN_CONF_ENV = IFCONFIG=/sbin/ifconfig \
|
||||
NETSTAT=/bin/netstat \
|
||||
ROUTE=/sbin/route \
|
||||
IPROUTE=/sbin/ip
|
||||
OPENVPN_CONF_ENV = NETSTAT=/bin/netstat
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENVPN_SMALL),y)
|
||||
OPENVPN_CONF_OPTS += \
|
||||
@@ -51,6 +48,14 @@ 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
|
||||
@@ -65,11 +70,6 @@ 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
|
||||
|
||||
Reference in New Issue
Block a user