From 9d3b7cec5270b2aebf62e80ccaa564aab93fcb37 Mon Sep 17 00:00:00 2001 From: Steffan Karger Date: Mon, 23 Nov 2015 11:26:24 +0100 Subject: [PATCH] polarssl: require >= 1.3.8 Since commit 67a67e39, we use API calls that were introduced in polarssl 1.3.8. Update the configure check to reflect that. Signed-off-by: Steffan Karger Acked-by: Gert Doering Message-Id: <1448274384-22953-1-git-send-email-steffan.karger@fox-it.com> URL: http://article.gmane.org/gmane.network.openvpn.devel/10563 Signed-off-by: Gert Doering --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 342458433..d3cacc88a 100644 --- a/configure.ac +++ b/configure.ac @@ -871,13 +871,13 @@ if test "${with_crypto_library}" = "polarssl" ; then #include ]], [[ -#if POLARSSL_VERSION_NUMBER < 0x01030300 || POLARSSL_VERSION_NUMBER >= 0x01040000 +#if POLARSSL_VERSION_NUMBER < 0x01030800 || POLARSSL_VERSION_NUMBER >= 0x01040000 #error invalid version #endif ]] )], [AC_MSG_RESULT([ok])], - [AC_MSG_ERROR([PolarSSL 1.3.x required and must be 1.3.3 or later])] + [AC_MSG_ERROR([PolarSSL 1.3.x required and must be 1.3.8 or later])] ) polarssl_with_pkcs11="no" -- 2.47.2