summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-05-05 10:12:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-05-05 10:12:49 +0000
commit632ba15a56a979990e12ade5adac62112c3ebe7b (patch)
treef45a7fa167002436d2f2b6c53b4a237767fab2f3
parent5533a67e3add712aff8a21448ba9e0b6ebb11df1 (diff)
downloadmaster-31e0f0ae-632ba15a56a979990e12ade5adac62112c3ebe7b.tar.gz
master-31e0f0ae-632ba15a56a979990e12ade5adac62112c3ebe7b.tar.bz2
master-31e0f0ae-632ba15a56a979990e12ade5adac62112c3ebe7b.zip
curl: replace polarssl run-time version check with a compile-time one
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45609
-rw-r--r--package/network/utils/curl/patches/310-polarssl-disable-runtime-version-check.patch11
1 files changed, 11 insertions, 0 deletions
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);
+ }