summaryrefslogtreecommitdiffstats
path: root/rules/libcurl.make
diff options
context:
space:
mode:
authorBruno Thomsen <bth@kamstrup.com>2015-07-13 13:22:08 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-07-16 13:12:22 +0200
commit369bbfeb9bea868cc717c96c00eb1411b071b57c (patch)
tree9d51d0456dd840ddb490991f69760fc89fa92ff2 /rules/libcurl.make
parent194b1604b9a48a13499627cbc92d490da80f0120 (diff)
downloadptxdist-369bbfeb9bea868cc717c96c00eb1411b071b57c.tar.gz
ptxdist-369bbfeb9bea868cc717c96c00eb1411b071b57c.tar.xz
libcurl: version bump 7.38.0 -> 7.43.0
Changed archive type from tar.gz to tar.bz2. Changed download URL from http to https (official release @ github). Added missing configure options. Disabled: rtsp, pop3, imap, smb, smtp, gopher, ntlm-wb, proxy. Without: winssl, darwinssl, winidn, polarssl, librtmp. http2 support is disabled but kconfig option should be added when required nghttp2 lib is added as package. Signed-off-by: Bruno Thomsen <bth@kamstrup.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/libcurl.make')
-rw-r--r--rules/libcurl.make22
1 files changed, 18 insertions, 4 deletions
diff --git a/rules/libcurl.make b/rules/libcurl.make
index 822c58436..2a2f7f9b0 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -17,11 +17,11 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
#
# Paths and names
#
-LIBCURL_VERSION := 7.38.0
-LIBCURL_MD5 := b6e3ea55bb718f2270489581efa50a8a
+LIBCURL_VERSION := 7.43.0
+LIBCURL_MD5 := 11bddbb452a8b766b932f859aaeeed39
LIBCURL := curl-$(LIBCURL_VERSION)
-LIBCURL_SUFFIX := tar.gz
-LIBCURL_URL := http://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
+LIBCURL_SUFFIX := tar.bz2
+LIBCURL_URL := https://github.com/bagder/curl/releases/download/curl-7_43_0/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
LIBCURL_LICENSE := MIT
@@ -44,29 +44,43 @@ LIBCURL_AUTOCONF := \
\
--disable-ldap \
--disable-ldaps \
+ --disable-rtsp \
--disable-dict \
--disable-telnet \
+ --disable-pop3 \
+ --disable-imap \
+ --disable-smb \
+ --disable-smtp \
+ --disable-gopher \
--disable-manual \
\
--disable-ares \
--disable-sspi \
+ --disable-ntlm-wb \
--disable-debug \
--disable-verbose \
\
--enable-thread \
--enable-nonblocking\
--enable-hidden-symbols \
+ --enable-proxy \
\
--without-krb4 \
--without-spnego \
--without-gssapi \
+ --without-winssl \
+ --without-darwinssl \
--without-gnutls \
--without-nss \
+ --without-winidn \
--without-libidn \
--without-axtls \
+ --without-polarssl \
--without-cyassl \
+ --without-librtmp \
\
--$(call ptx/endis, PTXCONF_LIBCURL_HTTP)-http \
+ --disable-nghttp2 \
--$(call ptx/endis, PTXCONF_LIBCURL_COOKIES)-cookies \
--$(call ptx/endis, PTXCONF_LIBCURL_FTP)-ftp \
--$(call ptx/endis, PTXCONF_LIBCURL_TFTP)-tftp \