include $(TOPDIR)/rules.mk
PKG_NAME:=curl
-PKG_VERSION:=7.35.0
+PKG_VERSION:=7.36.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
ftp://ftp.planetmirror.com/pub/curl/ \
http://www.mirrormonster.com/curl/download/ \
http://curl.mirrors.cyberservers.net/download/
-PKG_MD5SUM:=c18fbdd031adb0529ae09fce399f2d10
+PKG_MD5SUM:=e6d1f9d1b59da5062109ffe14e0569a4
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=COPYING
+++ /dev/null
---- a/lib/urldata.h
-+++ b/lib/urldata.h
-@@ -117,6 +117,9 @@
- #include <polarssl/entropy.h>
- #include <polarssl/ctr_drbg.h>
- #endif /* POLARSSL_VERSION_NUMBER<0x01010000 */
-+#if POLARSSL_VERSION_NUMBER>=0x01030000
-+#include <polarssl/compat-1.2.h>
-+#endif
- #endif /* USE_POLARSSL */
-
- #ifdef USE_CYASSL
---- a/lib/vtls/polarssl.c
-+++ b/lib/vtls/polarssl.c
-@@ -37,6 +37,10 @@
- #include <polarssl/x509.h>
- #include <polarssl/version.h>
-
-+#if POLARSSL_VERSION_NUMBER >= 0x01030000
-+#include <polarssl/compat-1.2.h>
-+#endif
-+
- #if POLARSSL_VERSION_NUMBER >= 0x01000000
- #include <polarssl/error.h>
- #endif /* POLARSSL_VERSION_NUMBER >= 0x01000000 */
-@@ -311,8 +315,8 @@ polarssl_connect_step1(struct connectdat
- &connssl->crl,
- conn->host.name);
-
-- ssl_set_own_cert(&connssl->ssl,
-- &connssl->clicert, &connssl->rsa);
-+ ssl_set_own_cert_rsa(&connssl->ssl,
-+ &connssl->clicert, &connssl->rsa);
-
- if(!Curl_inet_pton(AF_INET, conn->host.name, &addr) &&
- #ifdef ENABLE_IPV6
--- /dev/null
+--- a/src/tool_hugehelp.h
++++ b/src/tool_hugehelp.h
+@@ -23,6 +23,10 @@
+ ***************************************************************************/
+ #include "tool_setup.h"
+
++#ifdef USE_MANUAL
+ void hugehelp(void);
++#else
++#define hugehelp() Curl_nop_stmt
++#endif
+
+ #endif /* HEADER_CURL_TOOL_HUGEHELP_H */