* [ptxdist] [PATCH] libcurl: version bump 7.38.0 -> 7.43.0
@ 2015-07-13 11:22 Bruno Thomsen
2015-07-17 8:25 ` Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Bruno Thomsen @ 2015-07-13 11:22 UTC (permalink / raw)
To: ptxdist; +Cc: bth
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>
---
rules/libcurl.make | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/rules/libcurl.make b/rules/libcurl.make
index 822c584..2a2f7f9 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 \
--
2.1.4
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [PATCH] libcurl: version bump 7.38.0 -> 7.43.0
2015-07-13 11:22 [ptxdist] [PATCH] libcurl: version bump 7.38.0 -> 7.43.0 Bruno Thomsen
@ 2015-07-17 8:25 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2015-07-17 8:25 UTC (permalink / raw)
To: ptxdist
On Mon, Jul 13, 2015 at 01:22:08PM +0200, Bruno Thomsen wrote:
> 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.
>
Thanks, applied.
Michael
> Signed-off-by: Bruno Thomsen <bth@kamstrup.com>
> ---
> rules/libcurl.make | 22 ++++++++++++++++++----
> 1 file changed, 18 insertions(+), 4 deletions(-)
>
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index 822c584..2a2f7f9 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 \
> --
> 2.1.4
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-07-17 6:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-13 11:22 [ptxdist] [PATCH] libcurl: version bump 7.38.0 -> 7.43.0 Bruno Thomsen
2015-07-17 8:25 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox