From 7730e8ea1e028246af8df2284ed5e556bdddef6e Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Fri, 19 May 2023 15:42:22 +0800 Subject: gnutls: fix build with zabbix Zabbix verifies the version of gnutls by search in the header gnutls.h. This is done with 'cat' and 'egrep'. The problem here is now that the preprocess definition did changed in gnutls.h, so the regex does not match anymore. The following error message acourse in the log: > configure: error: GnuTLS library version requirement not met (>= 3.1.18) To fix this backport an upstream patch to let the regex work again. Signed-off-by: Tianling Shen --- libs/gnutls/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/gnutls/Makefile') diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index ec7f72d64..a02d9e08f 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gnutls PKG_VERSION:=3.8.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_BUILD_FLAGS:=no-mips16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -- cgit v1.2.3