From cec0b9a91aa7fddd3f4067705071eec6cfe90e5e Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 12 Apr 2018 07:18:48 -0400 Subject: [PATCH] Update openssl and curl --- dep/Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dep/Makefile b/dep/Makefile index c1feaa26..68d04d94 100755 --- a/dep/Makefile +++ b/dep/Makefile @@ -85,22 +85,22 @@ $(libspeexdsp): $(MAKE) -C speexdsp-SpeexDSP-1.2rc3 install $(openssl): - $(WGET) "https://www.openssl.org/source/openssl-1.1.0g.tar.gz" - $(UNTAR) openssl-1.1.0g.tar.gz + $(WGET) "https://www.openssl.org/source/openssl-1.1.0h.tar.gz" + $(UNTAR) openssl-1.1.0h.tar.gz # ./config ignores CFLAGS, so hack it in with CC - cd openssl-1.1.0g && CC="$(CC) $(CFLAGS)" ./config --prefix="$(realpath $(DEP_LOCAL))" - $(MAKE) -C openssl-1.1.0g - $(MAKE) -C openssl-1.1.0g install_sw + cd openssl-1.1.0h && CC="$(CC) $(CFLAGS)" ./config --prefix="$(realpath $(DEP_LOCAL))" + $(MAKE) -C openssl-1.1.0h + $(MAKE) -C openssl-1.1.0h install_sw $(libcurl): $(openssl) - $(WGET) "https://github.com/curl/curl/releases/download/curl-7_56_0/curl-7.56.0.tar.gz" - $(UNTAR) curl-7.56.0.tar.gz - cd curl-7.56.0 && $(CONFIGURE) \ + $(WGET) "https://curl.haxx.se/download/curl-7.59.0.tar.gz" + $(UNTAR) curl-7.59.0.tar.gz + cd curl-7.59.0 && $(CONFIGURE) \ --disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-proxy --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-manual \ --without-zlib --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2 \ --without-ca-bundle --with-ca-fallback --with-ssl="$(realpath $(DEP_LOCAL))" - $(MAKE) -C curl-7.56.0 - $(MAKE) -C curl-7.56.0 install + $(MAKE) -C curl-7.59.0 + $(MAKE) -C curl-7.59.0 install $(libzip): $(zlib) $(WGET) "https://nih.at/libzip/libzip-1.2.0.tar.gz"