From e5c1b4a61c1e71b4719e56a5b4bf87b8fd26f327 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 5 May 2015 10:12:49 +0000 Subject: [PATCH] curl: replace polarssl run-time version check with a compile-time one Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45609 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches/310-polarssl-disable-runtime-version-check.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch diff --git a/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch b/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch new file mode 100644 index 0000000000..d008227509 --- /dev/null +++ b/package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch @@ -0,0 +1,11 @@ +--- a/lib/vtls/polarssl.c ++++ b/lib/vtls/polarssl.c +@@ -591,7 +591,7 @@ void Curl_polarssl_session_free(void *pt + + size_t Curl_polarssl_version(char *buffer, size_t size) + { +- unsigned int version = version_get_number(); ++ unsigned int version = POLARSSL_VERSION_NUMBER; + return snprintf(buffer, size, "PolarSSL/%d.%d.%d", version>>24, + (version>>16)&0xff, (version>>8)&0xff); + } -- 2.11.0