From: Steffan Karger Date: Mon, 23 Nov 2015 10:26:24 +0000 (+0100) Subject: polarssl: require >= 1.3.8 X-Git-Tag: v2.4_alpha1~195 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d3b7cec;p=thirdparty%2Fopenvpn.git 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 --- 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"