Skip to content

Commit b1f48d4

Browse files
committed
upgrade curl to 7.39 and fix armv7s,x86_64 build erorr for openssl
1 parent c288bc8 commit b1f48d4

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

contrib/src/curl/SHA512SUMS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
751eefa59dc068eb85a017399bfb482a58fa6e791017a1d9e4bce89f9b744e18be0134696df6fff64ae4498121281d5433cf7af5e8c7fa211c094c21ec6759a9 curl-7.26.0.tar.gz
1+
251fb2063b7414fd54d139c032a25599f9016cd95c534835450a5a5e4bc20c81042f692d8fc18648a4c972fc3c9629e6b7b405d750a7fa29599da123a6b12aa7 curl-7.39.0.tar.gz

contrib/src/curl/rules.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# curl
22

3-
CURL_VERSION := 7.26.0
3+
CURL_VERSION := 7.39.0
44
CURL_URL := http://curl.haxx.se/download/curl-$(CURL_VERSION).tar.gz
55

66
$(TARBALLS)/curl-$(CURL_VERSION).tar.gz:

contrib/src/openssl/rules.mak

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ endif
4747
ifeq ($(MY_TARGET_ARCH),arm64)
4848
OPENSSL_CONFIG_VARS="BSD-generic64"
4949
endif
50+
ifeq ($(MY_TARGET_ARCH),armv7s)
51+
OPENSSL_CONFIG_VARS="BSD-generic32"
52+
endif
53+
ifeq ($(MY_TARGET_ARCH),x86_64)
54+
OPENSSL_CONFIG_VARS="darwin64-x86_64-cc"
55+
endif
5056
endif
5157

5258
$(TARBALLS)/openssl-$(OPENSSL_VERSION).tar.gz:

0 commit comments

Comments
 (0)