From 1fd161469cce89f66b61d0e8c7c870eddc6c31c0 Mon Sep 17 00:00:00 2001 From: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> Date: Fri, 1 May 2015 13:25:48 -0400 Subject: [PATCH] contrib: force minimal version of gnutls to 3.3.0 3.2 and below are 2.8 ABI, not compatible anymore with our requirements. Refs #72156 Change-Id: I9bc5ca418b28885318032493d66230d2f6baa5b6 --- contrib/src/gnutls/rules.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/gnutls/rules.mak b/contrib/src/gnutls/rules.mak index 382a977882..1cb56a75d7 100644 --- a/contrib/src/gnutls/rules.mak +++ b/contrib/src/gnutls/rules.mak @@ -4,7 +4,7 @@ GNUTLS_VERSION := 3.4.0 GNUTLS_URL := ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/gnutls-$(GNUTLS_VERSION).tar.xz PKGS += gnutls -ifeq ($(call need_pkg,"gnutls >= 3.0.20"),) +ifeq ($(call need_pkg,"gnutls >= 3.3.0"),) PKGS_FOUND += gnutls endif -- GitLab