comparison src/curl.mk @ 4370:56a84121d674

curl: update to 7.53.1 * src/curl.mk: update version, checksum, requires libidn2
author John D
date Thu, 23 Mar 2017 07:46:41 -0400
parents 485c6d42ee42
children a5cb50beaa80
comparison
equal deleted inserted replaced
4369:50f0a26d1599 4370:56a84121d674
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := curl 4 PKG := curl
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 7.52.1 6 $(PKG)_VERSION := 7.53.1
7 $(PKG)_CHECKSUM := d8a6f58eafb3ca83eab58009eb4e13831aeb8156 7 $(PKG)_CHECKSUM := fb57f4a94482a98c8d6aaae5dd7bc7dd9e9e28bf
8 $(PKG)_SUBDIR := curl-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := curl-$($(PKG)_VERSION)
9 $(PKG)_FILE := curl-$($(PKG)_VERSION).tar.lzma 9 $(PKG)_FILE := curl-$($(PKG)_VERSION).tar.lzma
10 $(PKG)_URL := http://curl.haxx.se/download/$($(PKG)_FILE) 10 $(PKG)_URL := http://curl.haxx.se/download/$($(PKG)_FILE)
11 $(PKG)_DEPS := gnutls libidn libssh2 11 $(PKG)_DEPS := gnutls libidn2 libssh2
12 12
13 $(PKG)_CONFIGURE_OPTS := 13 $(PKG)_CONFIGURE_OPTS :=
14 ifeq ($(MXE_WINDOWS_BUILD),yes) 14 ifeq ($(MXE_WINDOWS_BUILD),yes)
15 $(PKG)_CONFIGURE_OPTS := "--with-winssl" 15 $(PKG)_CONFIGURE_OPTS := "--with-winssl"
16 endif 16 endif
28 $(ENABLE_SHARED_OR_STATIC) \ 28 $(ENABLE_SHARED_OR_STATIC) \
29 --prefix='$(HOST_PREFIX)' \ 29 --prefix='$(HOST_PREFIX)' \
30 $($(PKG)_CONFIGURE_OPTS) \ 30 $($(PKG)_CONFIGURE_OPTS) \
31 --without-ssl \ 31 --without-ssl \
32 --with-gnutls \ 32 --with-gnutls \
33 --with-libidn \ 33 --with-libidn2 \
34 --enable-sspi \ 34 --enable-sspi \
35 --enable-ipv6 \ 35 --enable-ipv6 \
36 --with-libssh2 && $(CONFIGURE_POST_HOOK) 36 --with-libssh2 && $(CONFIGURE_POST_HOOK)
37 $(MAKE) -C '$(1)' -j '$(JOBS)' DESTDIR='$(3)' $(MXE_DISABLE_DOCS) install 37 $(MAKE) -C '$(1)' -j '$(JOBS)' DESTDIR='$(3)' $(MXE_DISABLE_DOCS) install
38 endef 38 endef