update curl

Curl 7.55.1 configures threaded resolver backend by default, which
introduces pthreads dependency.

https://github.com/curl/curl/pull/1647/commits
This commit is contained in:
Mark Brand 2017-08-14 21:12:41 +02:00
parent a008e046c6
commit 35ea9a89ba
1 changed files with 5 additions and 4 deletions

View File

@ -4,12 +4,12 @@ PKG := curl
$(PKG)_WEBSITE := https://curl.haxx.se/libcurl/
$(PKG)_DESCR := cURL
$(PKG)_IGNORE :=
$(PKG)_VERSION := 7.55.0
$(PKG)_CHECKSUM := cdd58522f8607fd4e871df79d73acb3155075e2134641e5adab12a0962df059d
$(PKG)_VERSION := 7.55.1
$(PKG)_CHECKSUM := 3eafca6e84ecb4af5f35795dee84e643d5428287e88c041122bb8dac18676bb7
$(PKG)_SUBDIR := curl-$($(PKG)_VERSION)
$(PKG)_FILE := curl-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := https://curl.haxx.se/download/$($(PKG)_FILE)
$(PKG)_DEPS := gcc gnutls libidn2 libssh2
$(PKG)_DEPS := gcc gnutls libidn2 libssh2 pthreads
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://curl.haxx.se/download/?C=M;O=D' | \
@ -25,7 +25,8 @@ define $(PKG)_BUILD
--with-libidn2 \
--enable-sspi \
--enable-ipv6 \
--with-libssh2
--with-libssh2 \
LIBS=`'$(TARGET)-pkg-config' pthreads --libs`
$(MAKE) -C '$(1)' -j '$(JOBS)' install $(MXE_DISABLE_DOCS)
ln -sf '$(PREFIX)/$(TARGET)/bin/curl-config' '$(PREFIX)/bin/$(TARGET)-curl-config'