|
|
@@ -119,6 +119,11 @@ $(openssl): |
|
|
|
cd openssl-1.1.0g && ./config --prefix="$(LOCAL)" |
|
|
|
$(MAKE) -C openssl-1.1.0g |
|
|
|
$(MAKE) -C openssl-1.1.0g install |
|
|
|
ifeq ($(ARCH),mac) |
|
|
|
otool -L lib/libssl.1.1.dylib |
|
|
|
install_name_tool -change $(PWD)/lib/libcrypto.1.1.dylib @loader_path/libcrypto.1.1.dylib lib/libssl.1.1.dylib |
|
|
|
otool -L lib/libssl.1.1.dylib |
|
|
|
endif |
|
|
|
|
|
|
|
$(libcurl): $(openssl) |
|
|
|
$(WGET) https://github.com/curl/curl/releases/download/curl-7_56_0/curl-7.56.0.tar.gz |
|
|
@@ -128,6 +133,12 @@ $(libcurl): $(openssl) |
|
|
|
--without-zlib --without-ca-bundle --without-ca-fallback --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2 --with-ssl="$(LOCAL)" |
|
|
|
$(MAKE) -C curl-7.56.0 |
|
|
|
$(MAKE) -C curl-7.56.0 install |
|
|
|
ifeq ($(ARCH),mac) |
|
|
|
otool -L lib/libcurl.4.dylib |
|
|
|
install_name_tool -change $(PWD)/lib/libssl.1.1.dylib @loader_path/libssl.1.1.dylib lib/libcurl.4.dylib |
|
|
|
install_name_tool -change $(PWD)/lib/libcrypto.1.1.dylib @loader_path/libcrypto.1.1.dylib lib/libcurl.4.dylib |
|
|
|
otool -L lib/libcurl.4.dylib |
|
|
|
endif |
|
|
|
|
|
|
|
$(libzip): |
|
|
|
$(WGET) https://nih.at/libzip/libzip-1.2.0.tar.gz |
|
|
|